diff --git a/public/kcl-samples/screenshots/axial-fan.png b/public/kcl-samples/screenshots/axial-fan.png index 7eaf1479d..ec1fbbe40 100644 Binary files a/public/kcl-samples/screenshots/axial-fan.png and b/public/kcl-samples/screenshots/axial-fan.png differ diff --git a/public/kcl-samples/screenshots/car-wheel-assembly.png b/public/kcl-samples/screenshots/car-wheel-assembly.png index 995ec1479..60ae8b98c 100644 Binary files a/public/kcl-samples/screenshots/car-wheel-assembly.png and b/public/kcl-samples/screenshots/car-wheel-assembly.png differ diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 0284e7d50..c7fda68ad 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -318,7 +318,7 @@ dependencies = [ "getrandom 0.2.15", "getrandom 0.3.1", "hex", - "indexmap 2.8.0", + "indexmap 2.9.0", "js-sys", "once_cell", "rand 0.9.0", @@ -1663,12 +1663,13 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.8.0" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058" +checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" dependencies = [ "equivalent", "hashbrown 0.15.2", + "rayon", "serde", ] @@ -1910,7 +1911,7 @@ dependencies = [ "handlebars", "http 1.3.1", "image", - "indexmap 2.8.0", + "indexmap 2.9.0", "insta", "instant", "itertools 0.13.0", @@ -1990,7 +1991,7 @@ version = "0.1.64" dependencies = [ "anyhow", "async-trait", - "indexmap 2.8.0", + "indexmap 2.9.0", "kcl-lib", "kittycad", "kittycad-modeling-cmds", @@ -3336,7 +3337,7 @@ dependencies = [ "chrono", "dyn-clone", "indexmap 1.9.3", - "indexmap 2.8.0", + "indexmap 2.9.0", "schemars_derive", "serde", "serde_json", @@ -3437,7 +3438,7 @@ version = "1.0.140" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" dependencies = [ - "indexmap 2.8.0", + "indexmap 2.9.0", "itoa", "memchr", "ryu", @@ -4086,7 +4087,7 @@ version = "0.22.24" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474" dependencies = [ - "indexmap 2.8.0", + "indexmap 2.9.0", "serde", "serde_spanned", "toml_datetime", @@ -4265,7 +4266,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e640d9b0964e9d39df633548591090ab92f7a4567bc31d3891af23471a3365c6" dependencies = [ "chrono", - "indexmap 2.8.0", + "indexmap 2.9.0", "lazy_static", "serde_json", "thiserror 2.0.12", @@ -5093,7 +5094,7 @@ dependencies = [ "flate2", "getrandom 0.3.1", "hmac", - "indexmap 2.8.0", + "indexmap 2.9.0", "lzma-rs", "memchr", "pbkdf2", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index f972d0794..cff411851 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -34,7 +34,7 @@ clap = { version = "4.5.36", features = ["derive"] } console_error_panic_hook = "0.1.7" dashmap = { version = "6.1.0" } http = "1" -indexmap = "2.7.0" +indexmap = "2.9.0" kittycad = { version = "0.3.36", default-features = false, features = ["js", "requests"] } kittycad-modeling-cmds = { version = "0.2.114", features = ["ts-rs", "websocket"] } lazy_static = "1.5.0" diff --git a/rust/kcl-lib/Cargo.toml b/rust/kcl-lib/Cargo.toml index c10590776..e1797f682 100644 --- a/rust/kcl-lib/Cargo.toml +++ b/rust/kcl-lib/Cargo.toml @@ -40,7 +40,7 @@ git_rev = "0.1.0" gltf-json = "1.4.1" http = { workspace = true } image = { version = "0.25.6", default-features = false, features = ["png"] } -indexmap = { workspace = true, features = ["serde"] } +indexmap = { workspace = true, features = ["serde", "rayon"] } itertools = "0.13.0" kcl-derive-docs = { version = "0.1", path = "../kcl-derive-docs" } kittycad = { workspace = true } diff --git a/rust/kcl-lib/src/execution/artifact.rs b/rust/kcl-lib/src/execution/artifact.rs index 39eadb3a6..3928b2129 100644 --- a/rust/kcl-lib/src/execution/artifact.rs +++ b/rust/kcl-lib/src/execution/artifact.rs @@ -38,7 +38,27 @@ pub struct ArtifactCommand { pub command: ModelingCmd, } -#[derive(Debug, Clone, Copy, Deserialize, Serialize, PartialEq, Eq, Hash, ts_rs::TS, JsonSchema)] +impl PartialOrd for ArtifactCommand { + fn partial_cmp(&self, other: &Self) -> Option { + // Order by the source range. + let range = self.range.cmp(&other.range); + if range != std::cmp::Ordering::Equal { + return Some(range); + } + #[cfg(test)] + { + // If the ranges are equal, order by the serde variant. + Some( + crate::variant_name::variant_name(&self.command) + .cmp(&crate::variant_name::variant_name(&other.command)), + ) + } + #[cfg(not(test))] + self.cmd_id.partial_cmp(&other.cmd_id) + } +} + +#[derive(Debug, Clone, Copy, Deserialize, Serialize, PartialEq, Eq, Ord, PartialOrd, Hash, ts_rs::TS, JsonSchema)] #[ts(export_to = "Artifact.ts")] pub struct ArtifactId(Uuid); @@ -194,7 +214,7 @@ pub struct Sweep { pub code_ref: CodeRef, } -#[derive(Debug, Clone, Copy, Deserialize, Serialize, PartialEq, Eq, ts_rs::TS)] +#[derive(Debug, Clone, Copy, Deserialize, Serialize, PartialEq, Eq, PartialOrd, Ord, ts_rs::TS)] #[ts(export_to = "Artifact.ts")] #[serde(rename_all = "camelCase")] pub enum SweepSubType { @@ -245,6 +265,8 @@ pub struct Wall { /// This is for the sketch-on-face plane, not for the wall itself. Traverse /// to the extrude and/or segment to get the wall's code_ref. pub face_code_ref: CodeRef, + /// The command ID that got the data for this wall. + pub cmd_id: uuid::Uuid, } #[derive(Debug, Clone, Deserialize, Serialize, PartialEq, ts_rs::TS)] @@ -263,7 +285,7 @@ pub struct Cap { pub face_code_ref: CodeRef, } -#[derive(Debug, Clone, Copy, Deserialize, Serialize, PartialEq, Eq, ts_rs::TS)] +#[derive(Debug, Clone, Copy, Deserialize, Serialize, PartialEq, Ord, PartialOrd, Eq, ts_rs::TS)] #[ts(export_to = "Artifact.ts")] #[serde(rename_all = "camelCase")] pub enum CapSubType { @@ -278,12 +300,13 @@ pub struct SweepEdge { pub id: ArtifactId, pub sub_type: SweepEdgeSubType, pub seg_id: ArtifactId, + pub cmd_id: uuid::Uuid, pub sweep_id: ArtifactId, #[serde(default, skip_serializing_if = "Vec::is_empty")] pub common_surface_ids: Vec, } -#[derive(Debug, Clone, Copy, Deserialize, Serialize, PartialEq, Eq, ts_rs::TS)] +#[derive(Debug, Clone, Copy, Deserialize, Serialize, PartialEq, Ord, PartialOrd, Eq, ts_rs::TS)] #[ts(export_to = "Artifact.ts")] #[serde(rename_all = "camelCase")] pub enum SweepEdgeSubType { @@ -305,7 +328,7 @@ pub struct EdgeCut { pub code_ref: CodeRef, } -#[derive(Debug, Clone, Copy, Deserialize, Serialize, PartialEq, Eq, ts_rs::TS)] +#[derive(Debug, Clone, Copy, Deserialize, Serialize, PartialEq, PartialOrd, Ord, Eq, ts_rs::TS)] #[ts(export_to = "Artifact.ts")] #[serde(rename_all = "camelCase")] pub enum EdgeCutSubType { @@ -362,6 +385,122 @@ pub enum Artifact { Helix(Helix), } +impl Artifact { + pub(crate) fn rank(&self) -> u8 { + match self { + Artifact::Plane(_) => 0, + Artifact::StartSketchOnPlane(_) => 1, + Artifact::StartSketchOnFace(_) => 2, + Artifact::Path(_) => 3, + Artifact::Segment(_) => 4, + Artifact::Solid2d(_) => 5, + Artifact::Sweep(_) => 6, + Artifact::CompositeSolid(_) => 7, + Artifact::Wall(_) => 8, + Artifact::Cap(Cap { sub_type, .. }) if *sub_type == CapSubType::Start => 9, + Artifact::Cap(Cap { sub_type, .. }) if *sub_type == CapSubType::Start => 10, + Artifact::Cap(_) => 11, + Artifact::SweepEdge(SweepEdge { sub_type, .. }) if *sub_type == SweepEdgeSubType::Adjacent => 12, + Artifact::SweepEdge(SweepEdge { sub_type, .. }) if *sub_type == SweepEdgeSubType::Opposite => 13, + Artifact::SweepEdge(_) => 14, + Artifact::EdgeCut(_) => 15, + Artifact::EdgeCutEdge(_) => 16, + Artifact::Helix(_) => 17, + } + } +} + +impl PartialOrd for Artifact { + fn partial_cmp(&self, other: &Self) -> Option { + // The only thing we want to sort is if we have two sweep edges, we want + // to sort them by the sub_type. + match (self, other) { + (Artifact::SweepEdge(a), Artifact::SweepEdge(b)) => { + if a.sub_type != b.sub_type { + return Some(a.sub_type.cmp(&b.sub_type)); + } + if a.sweep_id != b.sweep_id { + return Some(a.sweep_id.cmp(&b.sweep_id)); + } + if a.cmd_id != b.cmd_id { + return Some(a.cmd_id.cmp(&b.cmd_id)); + } + Some(a.id.cmp(&b.id)) + } + (Artifact::Sweep(a), Artifact::Sweep(b)) => { + if a.code_ref.range != b.code_ref.range { + return Some(a.code_ref.range.cmp(&b.code_ref.range)); + } + Some(a.id.cmp(&b.id)) + } + // Sort the planes by their code_ref range. + (Artifact::Plane(a), Artifact::Plane(b)) => { + if a.code_ref.range != b.code_ref.range { + return Some(a.code_ref.range.cmp(&b.code_ref.range)); + } + Some(a.id.cmp(&b.id)) + } + // Sort the paths by their code_ref range. + (Artifact::Path(a), Artifact::Path(b)) => { + if a.code_ref.range != b.code_ref.range { + return Some(a.code_ref.range.cmp(&b.code_ref.range)); + } + Some(a.id.cmp(&b.id)) + } + // Sort the segments by their code_ref range. + (Artifact::Segment(a), Artifact::Segment(b)) => { + if a.code_ref.range != b.code_ref.range { + return Some(a.code_ref.range.cmp(&b.code_ref.range)); + } + Some(a.id.cmp(&b.id)) + } + // Sort the solid2d by their id. + (Artifact::Solid2d(a), Artifact::Solid2d(b)) => { + if a.path_id != b.path_id { + return Some(a.path_id.cmp(&b.path_id)); + } + Some(a.id.cmp(&b.id)) + } + // Sort the walls by their code_ref range. + (Artifact::Wall(a), Artifact::Wall(b)) => { + if a.sweep_id != b.sweep_id { + return Some(a.sweep_id.cmp(&b.sweep_id)); + } + if a.cmd_id != b.cmd_id { + return Some(a.cmd_id.cmp(&b.cmd_id)); + } + if a.face_code_ref.range != b.face_code_ref.range { + return Some(a.face_code_ref.range.cmp(&b.face_code_ref.range)); + } + if a.seg_id != b.seg_id { + return Some(a.seg_id.cmp(&b.seg_id)); + } + Some(a.id.cmp(&b.id)) + } + // Sort the caps by their code_ref range. + (Artifact::Cap(a), Artifact::Cap(b)) => { + if a.sub_type != b.sub_type { + return Some(a.sub_type.cmp(&b.sub_type)); + } + if a.sweep_id != b.sweep_id { + return Some(a.sweep_id.cmp(&b.sweep_id)); + } + if a.face_code_ref.range != b.face_code_ref.range { + return Some(a.face_code_ref.range.cmp(&b.face_code_ref.range)); + } + Some(a.id.cmp(&b.id)) + } + (Artifact::CompositeSolid(a), Artifact::CompositeSolid(b)) => Some(a.id.cmp(&b.id)), + (Artifact::StartSketchOnFace(a), Artifact::StartSketchOnFace(b)) => Some(a.id.cmp(&b.id)), + (Artifact::StartSketchOnPlane(a), Artifact::StartSketchOnPlane(b)) => Some(a.id.cmp(&b.id)), + // Planes are first, then paths, then segments, then solids2ds, then sweeps, then + // walls, then caps, then sweep edges, then edge cuts, then edge cut edges, then + // helixes. + _ => Some(self.rank().cmp(&other.rank())), + } + } +} + impl Artifact { pub(crate) fn id(&self) -> ArtifactId { match self { @@ -533,6 +672,13 @@ impl ArtifactGraph { pub fn len(&self) -> usize { self.map.len() } + + /// Used to make the mermaid tests deterministic. + #[cfg(test)] + pub(crate) fn sort(&mut self) { + self.map + .sort_by(|_ak, av, _bk, bv| av.partial_cmp(bv).unwrap_or(std::cmp::Ordering::Equal)); + } } pub(super) fn build_artifact_graph( @@ -709,6 +855,7 @@ fn artifacts_to_update( sweep_id: wall.sweep_id, path_ids: wall.path_ids.clone(), face_code_ref: wall.face_code_ref.clone(), + cmd_id: artifact_command.cmd_id, })]); } Some(Artifact::Cap(cap)) => { @@ -769,6 +916,7 @@ fn artifacts_to_update( sweep_id: wall.sweep_id, path_ids: vec![id], face_code_ref: wall.face_code_ref.clone(), + cmd_id: artifact_command.cmd_id, })); } if let Some(Artifact::Cap(cap)) = plane { @@ -933,6 +1081,7 @@ fn artifacts_to_update( range: sketch_on_face_source_range, path_to_node: Vec::new(), }, + cmd_id: artifact_command.cmd_id, })); let mut new_seg = seg.clone(); new_seg.surface_id = Some(face_id); @@ -1044,6 +1193,7 @@ fn artifacts_to_update( id: response_edge_id, sub_type, seg_id: edge_id, + cmd_id: artifact_command.cmd_id, sweep_id: sweep.id, common_surface_ids: Vec::new(), })); diff --git a/rust/kcl-lib/src/execution/artifact/mermaid_tests.rs b/rust/kcl-lib/src/execution/artifact/mermaid_tests.rs index ed87f347f..a2af89d71 100644 --- a/rust/kcl-lib/src/execution/artifact/mermaid_tests.rs +++ b/rust/kcl-lib/src/execution/artifact/mermaid_tests.rs @@ -194,6 +194,7 @@ impl ArtifactGraph { let mut next_id = 1_u32; let mut stable_id_map = FnvHashMap::default(); + for id in self.map.keys() { stable_id_map.insert(*id, next_id); next_id = next_id.checked_add(1).unwrap(); @@ -452,6 +453,7 @@ impl ArtifactGraph { } // Output the edges. + edges.par_sort_by(|ak, _, bk, _| (if ak.0 == bk.0 { ak.1.cmp(&bk.1) } else { ak.0.cmp(&bk.0) })); for ((source_id, target_id), edge) in edges { let extra = match edge.kind { // Extra length. This is needed to make the graph layout more diff --git a/rust/kcl-lib/src/execution/cad_op.rs b/rust/kcl-lib/src/execution/cad_op.rs index 152f3cda6..891240e77 100644 --- a/rust/kcl-lib/src/execution/cad_op.rs +++ b/rust/kcl-lib/src/execution/cad_op.rs @@ -49,6 +49,33 @@ pub enum Operation { GroupEnd, } +/// A way for sorting the operations in the timeline. This is used to sort +/// operations in the timeline and to determine the order of operations. +/// We use this for the multi-threaded snapshotting, so that we can have deterministic +/// output. +impl PartialOrd for Operation { + fn partial_cmp(&self, other: &Self) -> Option { + Some(match (self, other) { + (Self::StdLibCall { source_range: a, .. }, Self::StdLibCall { source_range: b, .. }) => a.cmp(b), + (Self::StdLibCall { source_range: a, .. }, Self::KclStdLibCall { source_range: b, .. }) => a.cmp(b), + (Self::StdLibCall { source_range: a, .. }, Self::GroupBegin { source_range: b, .. }) => a.cmp(b), + (Self::StdLibCall { .. }, Self::GroupEnd) => std::cmp::Ordering::Less, + (Self::KclStdLibCall { source_range: a, .. }, Self::KclStdLibCall { source_range: b, .. }) => a.cmp(b), + (Self::KclStdLibCall { source_range: a, .. }, Self::StdLibCall { source_range: b, .. }) => a.cmp(b), + (Self::KclStdLibCall { source_range: a, .. }, Self::GroupBegin { source_range: b, .. }) => a.cmp(b), + (Self::KclStdLibCall { .. }, Self::GroupEnd) => std::cmp::Ordering::Less, + (Self::GroupBegin { source_range: a, .. }, Self::GroupBegin { source_range: b, .. }) => a.cmp(b), + (Self::GroupBegin { source_range: a, .. }, Self::StdLibCall { source_range: b, .. }) => a.cmp(b), + (Self::GroupBegin { source_range: a, .. }, Self::KclStdLibCall { source_range: b, .. }) => a.cmp(b), + (Self::GroupBegin { .. }, Self::GroupEnd) => std::cmp::Ordering::Less, + (Self::GroupEnd, Self::StdLibCall { .. }) => std::cmp::Ordering::Greater, + (Self::GroupEnd, Self::KclStdLibCall { .. }) => std::cmp::Ordering::Greater, + (Self::GroupEnd, Self::GroupBegin { .. }) => std::cmp::Ordering::Greater, + (Self::GroupEnd, Self::GroupEnd) => std::cmp::Ordering::Equal, + }) + } +} + impl Operation { /// If the variant is `StdLibCall`, set the `is_error` field. pub(crate) fn set_std_lib_call_is_error(&mut self, is_err: bool) { diff --git a/rust/kcl-lib/src/execution/mod.rs b/rust/kcl-lib/src/execution/mod.rs index e860a3cd7..f24aba496 100644 --- a/rust/kcl-lib/src/execution/mod.rs +++ b/rust/kcl-lib/src/execution/mod.rs @@ -717,37 +717,9 @@ impl ExecutorContext { self.run_concurrent(program, exec_state, false).await } - /// Perform the execution of a program. - /// - /// You can optionally pass in some initialization memory for partial - /// execution. - /// - /// To access non-fatal errors and warnings, extract them from the `ExecState`. - pub async fn run_single_threaded( - &self, - program: &crate::Program, - exec_state: &mut ExecState, - ) -> Result<(EnvironmentRef, Option), KclErrorWithOutputs> { - exec_state.add_root_module_contents(program); - - #[cfg(test)] - { - exec_state.single_threaded = true; - } - - self.eval_prelude(exec_state, SourceRange::synthetic()) - .await - .map_err(KclErrorWithOutputs::no_outputs)?; - - self.inner_run(program, exec_state, false).await - } - - /// Perform the execution of a program using an (experimental!) concurrent + /// Perform the execution of a program using a concurrent /// execution model. This has the same signature as [Self::run]. /// - /// For now -- do not use this unless you're willing to accept some - /// breakage. - /// /// You can optionally pass in some initialization memory for partial /// execution. /// diff --git a/rust/kcl-lib/src/execution/state.rs b/rust/kcl-lib/src/execution/state.rs index 79c9b4bc2..47ab53ce7 100644 --- a/rust/kcl-lib/src/execution/state.rs +++ b/rust/kcl-lib/src/execution/state.rs @@ -32,9 +32,6 @@ pub struct ExecState { pub(super) global: GlobalState, pub(super) mod_local: ModuleState, pub(super) exec_context: Option, - /// If we should not parallelize execution. - #[cfg(test)] - pub single_threaded: bool, } pub type ModuleInfoMap = IndexMap; @@ -96,8 +93,6 @@ impl ExecState { global: GlobalState::new(&exec_context.settings), mod_local: ModuleState::new(None, ProgramMemory::new(), Default::default()), exec_context: Some(exec_context.clone()), - #[cfg(test)] - single_threaded: false, } } @@ -108,8 +103,6 @@ impl ExecState { global, mod_local: ModuleState::new(None, ProgramMemory::new(), Default::default()), exec_context: Some(exec_context.clone()), - #[cfg(test)] - single_threaded: false, }; } diff --git a/rust/kcl-lib/src/lib.rs b/rust/kcl-lib/src/lib.rs index 6da08af44..b801ff322 100644 --- a/rust/kcl-lib/src/lib.rs +++ b/rust/kcl-lib/src/lib.rs @@ -76,6 +76,8 @@ pub mod std; pub mod test_server; mod thread; mod unparser; +#[cfg(test)] +mod variant_name; pub mod walk; #[cfg(target_arch = "wasm32")] mod wasm; diff --git a/rust/kcl-lib/src/modules.rs b/rust/kcl-lib/src/modules.rs index 069c99f7e..70f7f777d 100644 --- a/rust/kcl-lib/src/modules.rs +++ b/rust/kcl-lib/src/modules.rs @@ -14,7 +14,9 @@ use crate::{ }; /// Identifier of a source file. Uses a u32 to keep the size small. -#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, Hash, Deserialize, Serialize, ts_rs::TS, JsonSchema)] +#[derive( + Debug, Default, Ord, PartialOrd, Eq, PartialEq, Clone, Copy, Hash, Deserialize, Serialize, ts_rs::TS, JsonSchema, +)] #[ts(export)] pub struct ModuleId(u32); diff --git a/rust/kcl-lib/src/simulation_tests.rs b/rust/kcl-lib/src/simulation_tests.rs index 023d6f791..056088cd6 100644 --- a/rust/kcl-lib/src/simulation_tests.rs +++ b/rust/kcl-lib/src/simulation_tests.rs @@ -1,5 +1,3 @@ -#[cfg(feature = "artifact-graph")] -use std::collections::HashMap; use std::{ panic::{catch_unwind, AssertUnwindSafe}, path::{Path, PathBuf}, @@ -53,8 +51,11 @@ where settings.set_snapshot_path(Path::new("..").join(&test.output_dir)); settings.set_prepend_module_to_snapshot(false); settings.set_description(format!("{operation} {}.kcl", &test.name)); - // Sorting maps makes them easier to diff. - settings.set_sort_maps(true); + // We don't do it on the flowchart + if operation != "Artifact graph flowchart" { + // Sorting maps makes them easier to diff. + settings.set_sort_maps(true); + } // Replace UUIDs with the string "[uuid]", because otherwise the tests would constantly // be changing the UUID. This is a stopgap measure until we make the engine more deterministic. settings.add_filter( @@ -157,12 +158,9 @@ async fn execute_test(test: &Test, render_to_png: bool, export_step: bool) { let ast = crate::Program::parse_no_errs(&input).unwrap(); // Run the program. - let exec_res = crate::test_server::execute_and_snapshot_ast_single_threaded( - ast, - Some(test.input_dir.join(&test.entry_point)), - export_step, - ) - .await; + let exec_res = + crate::test_server::execute_and_snapshot_ast(ast, Some(test.input_dir.join(&test.entry_point)), export_step) + .await; match exec_res { Ok((exec_state, env_ref, png, step)) => { let fail_path = test.output_dir.join("execution_error.snap"); @@ -259,35 +257,23 @@ fn assert_common_snapshots( artifact_commands: Vec, artifact_graph: ArtifactGraph, ) { + let operations = { + // Make the operations deterministic by sorting them by their module ID, + // then by their range. + let mut operations = operations.clone(); + operations.sort_by(|a, b| a.partial_cmp(b).unwrap_or(std::cmp::Ordering::Equal)); + operations + }; let artifact_commands = { // Due to our newfound concurrency, we're going to mess with the // artifact_commands a bit -- we're going to maintain the order, // but only for a given module ID. This means the artifact_commands // is no longer meaningful, but it is deterministic and will hopefully // catch meaningful changes in behavior. + // We sort by the source range, like we do for the operations. - let mut artifact_commands_map = artifact_commands - .into_iter() - .map(|v| (v.range.module_id().as_usize(), v)) - .fold( - HashMap::>::new(), - |mut map, (module_id, el)| { - let mut v = map.remove(&module_id).unwrap_or_default(); - v.push(el); - map.insert(module_id, v); - map - }, - ); - - let mut artifact_commands_keys = artifact_commands_map.keys().cloned().collect::>(); - artifact_commands_keys.sort(); - - let artifact_commands: Vec = artifact_commands_keys - .iter() - .flat_map(|idx| artifact_commands_map.remove(idx).unwrap()) - .collect(); - - assert_eq!(0, artifact_commands_map.len()); + let mut artifact_commands = artifact_commands.clone(); + artifact_commands.sort_by(|a, b| a.partial_cmp(b).unwrap_or(std::cmp::Ordering::Equal)); artifact_commands }; @@ -316,6 +302,10 @@ fn assert_common_snapshots( })); let result3 = catch_unwind(AssertUnwindSafe(|| { assert_snapshot(test, "Artifact graph flowchart", || { + let mut artifact_graph = artifact_graph.clone(); + // Sort the map by artifact where we can. + artifact_graph.sort(); + let flowchart = artifact_graph .to_mermaid_flowchart() .unwrap_or_else(|e| format!("Failed to convert artifact graph to flowchart: {e}")); diff --git a/rust/kcl-lib/src/source_range.rs b/rust/kcl-lib/src/source_range.rs index 4491536ac..f554655c0 100644 --- a/rust/kcl-lib/src/source_range.rs +++ b/rust/kcl-lib/src/source_range.rs @@ -21,6 +21,27 @@ impl From<[usize; 3]> for SourceRange { } } +impl Ord for SourceRange { + fn cmp(&self, other: &Self) -> std::cmp::Ordering { + // Sort by module id first, then by start and end. + let module_id_cmp = self.module_id().cmp(&other.module_id()); + if module_id_cmp != std::cmp::Ordering::Equal { + return module_id_cmp; + } + let start_cmp = self.start().cmp(&other.start()); + if start_cmp != std::cmp::Ordering::Equal { + return start_cmp; + } + self.end().cmp(&other.end()) + } +} + +impl PartialOrd for SourceRange { + fn partial_cmp(&self, other: &Self) -> Option { + Some(self.cmp(other)) + } +} + impl From<&SourceRange> for miette::SourceSpan { fn from(source_range: &SourceRange) -> Self { let length = source_range.end() - source_range.start(); diff --git a/rust/kcl-lib/src/std/extrude.rs b/rust/kcl-lib/src/std/extrude.rs index 046e36a8a..9a41ecff7 100644 --- a/rust/kcl-lib/src/std/extrude.rs +++ b/rust/kcl-lib/src/std/extrude.rs @@ -337,14 +337,18 @@ pub(crate) async fn do_post_extrude<'a>( let next_adjacent_edge_uuid = exec_state.next_uuid(); let get_all_edge_faces_opposite_uuid = exec_state.next_uuid(); let get_all_edge_faces_next_uuid = exec_state.next_uuid(); - #[cfg(test)] - let single_threaded = exec_state.single_threaded; - #[cfg(all(not(test), not(target_arch = "wasm32")))] + #[cfg(any(not(test), not(feature = "artifact-graph"), not(target_arch = "wasm32")))] + #[allow(unused_variables)] let single_threaded = false; // When running in vitest, we need to run this in a single thread. // Because their workers are complete shit. - #[cfg(all(target_arch = "wasm32", not(test)))] + #[cfg(target_arch = "wasm32")] let single_threaded = crate::wasm::vitest::running_in_vitest(); + // If we are running in a test, for the arifact graph to be deterministic and not fail + // after say a fillet runs concurrently, we need to make sure that the + // async tasks are done before we return. + #[cfg(all(test, feature = "artifact-graph", not(target_arch = "wasm32")))] + let single_threaded = true; // Get faces for original edge // Since this one is batched we can just run it. diff --git a/rust/kcl-lib/src/test_server.rs b/rust/kcl-lib/src/test_server.rs index 6d2e850ee..daef71db8 100644 --- a/rust/kcl-lib/src/test_server.rs +++ b/rust/kcl-lib/src/test_server.rs @@ -21,7 +21,7 @@ pub struct RequestBody { pub async fn execute_and_snapshot(code: &str, current_file: Option) -> Result { let ctx = new_context(true, current_file).await?; let program = Program::parse_no_errs(code).map_err(KclErrorWithOutputs::no_outputs)?; - let res = do_execute_and_snapshot(&ctx, program, false) + let res = do_execute_and_snapshot(&ctx, program) .await .map(|(_, _, snap)| snap) .map_err(|err| err.error); @@ -32,13 +32,13 @@ pub async fn execute_and_snapshot(code: &str, current_file: Option) -> /// Executes a kcl program and takes a snapshot of the result. /// This returns the bytes of the snapshot. #[cfg(test)] -pub async fn execute_and_snapshot_ast_single_threaded( +pub async fn execute_and_snapshot_ast( ast: Program, current_file: Option, with_export_step: bool, ) -> Result<(ExecState, EnvironmentRef, image::DynamicImage, Option>), ExecErrorWithState> { let ctx = new_context(true, current_file).await?; - let (exec_state, env, img) = match do_execute_and_snapshot(&ctx, ast, true).await { + let (exec_state, env, img) = match do_execute_and_snapshot(&ctx, ast).await { Ok((exec_state, env_ref, img)) => (exec_state, env_ref, img), Err(err) => { // If there was an error executing the program, return it. @@ -73,7 +73,7 @@ pub async fn execute_and_snapshot_no_auth( ) -> Result<(image::DynamicImage, EnvironmentRef), ExecError> { let ctx = new_context(false, current_file).await?; let program = Program::parse_no_errs(code).map_err(KclErrorWithOutputs::no_outputs)?; - let res = do_execute_and_snapshot(&ctx, program, false) + let res = do_execute_and_snapshot(&ctx, program) .await .map(|(_, env_ref, snap)| (snap, env_ref)) .map_err(|err| err.error); @@ -84,15 +84,12 @@ pub async fn execute_and_snapshot_no_auth( async fn do_execute_and_snapshot( ctx: &ExecutorContext, program: Program, - single_threaded: bool, ) -> Result<(ExecState, EnvironmentRef, image::DynamicImage), ExecErrorWithState> { let mut exec_state = ExecState::new(ctx); - let result = if single_threaded { - ctx.run_single_threaded(&program, &mut exec_state).await - } else { - ctx.run(&program, &mut exec_state).await - } - .map_err(|err| ExecErrorWithState::new(err.into(), exec_state.clone()))?; + let result = ctx + .run(&program, &mut exec_state) + .await + .map_err(|err| ExecErrorWithState::new(err.into(), exec_state.clone()))?; for e in exec_state.errors() { if e.severity.is_err() { return Err(ExecErrorWithState::new( diff --git a/rust/kcl-lib/src/variant_name.rs b/rust/kcl-lib/src/variant_name.rs new file mode 100644 index 000000000..bf257d894 --- /dev/null +++ b/rust/kcl-lib/src/variant_name.rs @@ -0,0 +1,15 @@ +use serde::Serialize; +use serde_json::Value; + +/// Extract the variant tag of any enum that uses Serde. +#[allow(dead_code)] +pub fn variant_name(v: &T) -> String { + // 1. Serialize to JSON Value. + match serde_json::to_value(v).unwrap() { + // internally-tagged: {"type": "Foo", ...} + Value::Object(ref map) if map.get("type").is_some() => map["type"].as_str().unwrap().to_string(), + // externally-tagged: {"Foo": {...}} + Value::Object(map) => map.keys().next().unwrap().as_str().to_string(), + _ => panic!("untagged enum or unsupported representation"), + } +} diff --git a/rust/kcl-lib/tests/add_lots/ops.snap b/rust/kcl-lib/tests/add_lots/ops.snap index 7479a18d6..66e81bf49 100644 --- a/rust/kcl-lib/tests/add_lots/ops.snap +++ b/rust/kcl-lib/tests/add_lots/ops.snap @@ -15,7 +15,653 @@ description: Operations executed add_lots.kcl "sourceRange": [] }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "f", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "type": "GroupBegin", @@ -32,828 +678,182 @@ description: Operations executed add_lots.kcl "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "type": "GroupEnd" }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "f", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/angled_line/artifact_commands.snap b/rust/kcl-lib/tests/angled_line/artifact_commands.snap index 2c36d97ea..bdd9f5c53 100644 --- a/rust/kcl-lib/tests/angled_line/artifact_commands.snap +++ b/rust/kcl-lib/tests/angled_line/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands angled_line.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands angled_line.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -217,6 +217,14 @@ description: Artifact commands angled_line.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -228,8 +236,162 @@ description: Artifact commands angled_line.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -245,30 +407,12 @@ description: Artifact commands angled_line.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -283,39 +427,12 @@ description: Artifact commands angled_line.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -330,39 +447,12 @@ description: Artifact commands angled_line.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -377,18 +467,10 @@ description: Artifact commands angled_line.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -405,39 +487,12 @@ description: Artifact commands angled_line.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -448,43 +503,6 @@ description: Artifact commands angled_line.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -499,28 +517,10 @@ description: Artifact commands angled_line.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/angled_line/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/angled_line/artifact_graph_flowchart.snap.md index d619608c2..540cabc06 100644 --- a/rust/kcl-lib/tests/angled_line/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/angled_line/artifact_graph_flowchart.snap.md @@ -21,16 +21,16 @@ flowchart LR 17["Cap Start"] 18["Cap End"] 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] + 20["SweepEdge Opposite"] 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] + 22["SweepEdge Opposite"] 23["SweepEdge Opposite"] - 24["SweepEdge Adjacent"] - 25["SweepEdge Opposite"] + 24["SweepEdge Opposite"] + 25["SweepEdge Adjacent"] 26["SweepEdge Adjacent"] - 27["SweepEdge Opposite"] + 27["SweepEdge Adjacent"] 28["SweepEdge Adjacent"] - 29["SweepEdge Opposite"] + 29["SweepEdge Adjacent"] 30["SweepEdge Adjacent"] 1 --- 2 2 --- 3 @@ -39,32 +39,32 @@ flowchart LR 2 --- 6 2 --- 7 2 --- 8 - 2 ---- 10 2 --- 9 + 2 ---- 10 3 --- 16 - 3 --- 29 - 3 --- 30 3 x--> 17 - 4 --- 15 - 4 --- 27 - 4 --- 28 + 3 --- 23 + 3 --- 25 + 4 --- 14 4 x--> 17 - 5 --- 14 - 5 --- 25 - 5 --- 26 + 4 --- 21 + 4 --- 27 + 5 --- 13 5 x--> 17 - 6 --- 13 - 6 --- 23 - 6 --- 24 + 5 --- 19 + 5 --- 29 + 6 --- 15 6 x--> 17 + 6 --- 22 + 6 --- 26 7 --- 12 - 7 --- 21 - 7 --- 22 7 x--> 17 + 7 --- 20 + 7 --- 30 8 --- 11 - 8 --- 19 - 8 --- 20 8 x--> 17 + 8 --- 24 + 8 --- 28 10 --- 11 10 --- 12 10 --- 13 @@ -85,28 +85,28 @@ flowchart LR 10 --- 28 10 --- 29 10 --- 30 - 19 <--x 11 - 19 <--x 18 - 20 <--x 11 - 20 <--x 16 - 21 <--x 12 - 21 <--x 18 - 22 <--x 11 - 22 <--x 12 - 23 <--x 13 - 23 <--x 18 - 24 <--x 12 - 24 <--x 13 + 24 <--x 11 + 28 <--x 11 + 30 <--x 11 + 20 <--x 12 + 26 <--x 12 + 30 <--x 12 + 19 <--x 13 + 27 <--x 13 + 29 <--x 13 + 21 <--x 14 25 <--x 14 - 25 <--x 18 - 26 <--x 13 - 26 <--x 14 - 27 <--x 15 - 27 <--x 18 - 28 <--x 14 - 28 <--x 15 - 29 <--x 16 - 29 <--x 18 - 30 <--x 15 - 30 <--x 16 + 27 <--x 14 + 22 <--x 15 + 26 <--x 15 + 29 <--x 15 + 23 <--x 16 + 25 <--x 16 + 28 <--x 16 + 19 <--x 18 + 20 <--x 18 + 21 <--x 18 + 22 <--x 18 + 23 <--x 18 + 24 <--x 18 ``` diff --git a/rust/kcl-lib/tests/artifact_graph_example_code1/artifact_commands.snap b/rust/kcl-lib/tests/artifact_graph_example_code1/artifact_commands.snap index 8b085ce75..840e543a9 100644 --- a/rust/kcl-lib/tests/artifact_graph_example_code1/artifact_commands.snap +++ b/rust/kcl-lib/tests/artifact_graph_example_code1/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands artifact_graph_example_code1.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands artifact_graph_example_code1.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -200,6 +200,14 @@ description: Artifact commands artifact_graph_example_code1.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -211,8 +219,108 @@ description: Artifact commands artifact_graph_example_code1.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -228,30 +336,12 @@ description: Artifact commands artifact_graph_example_code1.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -266,39 +356,12 @@ description: Artifact commands artifact_graph_example_code1.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -313,18 +376,10 @@ description: Artifact commands artifact_graph_example_code1.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -337,43 +392,6 @@ description: Artifact commands artifact_graph_example_code1.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -388,30 +406,12 @@ description: Artifact commands artifact_graph_example_code1.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -436,13 +436,6 @@ description: Artifact commands artifact_graph_example_code1.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -463,6 +456,13 @@ description: Artifact commands artifact_graph_example_code1.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -545,6 +545,14 @@ description: Artifact commands artifact_graph_example_code1.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -556,8 +564,81 @@ description: Artifact commands artifact_graph_example_code1.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -573,30 +654,12 @@ description: Artifact commands artifact_graph_example_code1.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -611,18 +674,10 @@ description: Artifact commands artifact_graph_example_code1.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -635,43 +690,6 @@ description: Artifact commands artifact_graph_example_code1.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -686,28 +704,10 @@ description: Artifact commands artifact_graph_example_code1.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/artifact_graph_example_code1/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/artifact_graph_example_code1/artifact_graph_flowchart.snap.md index c74a1137d..c46873b70 100644 --- a/rust/kcl-lib/tests/artifact_graph_example_code1/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/artifact_graph_example_code1/artifact_graph_flowchart.snap.md @@ -1,146 +1,146 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[37, 64, 0]"] - 3["Segment
[70, 89, 0]"] - 4["Segment
[95, 131, 0]"] - 5["Segment
[137, 171, 0]"] - 6["Segment
[177, 233, 0]"] - 7["Segment
[239, 246, 0]"] - 8[Solid2d] + subgraph path3 [Path] + 3["Path
[37, 64, 0]"] + 5["Segment
[70, 89, 0]"] + 6["Segment
[95, 131, 0]"] + 7["Segment
[137, 171, 0]"] + 8["Segment
[177, 233, 0]"] + 9["Segment
[239, 246, 0]"] + 15[Solid2d] end - subgraph path25 [Path] - 25["Path
[390, 417, 0]"] - 26["Segment
[423, 441, 0]"] - 27["Segment
[447, 466, 0]"] - 28["Segment
[472, 528, 0]"] - 29["Segment
[534, 541, 0]"] - 30[Solid2d] + subgraph path4 [Path] + 4["Path
[390, 417, 0]"] + 10["Segment
[423, 441, 0]"] + 11["Segment
[447, 466, 0]"] + 12["Segment
[472, 528, 0]"] + 13["Segment
[534, 541, 0]"] + 14[Solid2d] end 1["Plane
[12, 31, 0]"] - 9["Sweep Extrusion
[260, 292, 0]"] - 10[Wall] - 11[Wall] - 12[Wall] - 13[Wall] - 14["Cap Start"] - 15["Cap End"] - 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] - 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 20["SweepEdge Opposite"] - 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] - 23["SweepEdge Adjacent"] - 24["EdgeCut Fillet
[298, 332, 0]"] - 31["Sweep Extrusion
[555, 585, 0]"] - 32[Wall] - 33[Wall] - 34[Wall] - 35["Cap End"] - 36["SweepEdge Opposite"] + 2["StartSketchOnFace
[345, 384, 0]"] + 16["Sweep Extrusion
[260, 292, 0]"] + 17["Sweep Extrusion
[555, 585, 0]"] + 18[Wall] + 19[Wall] + 20[Wall] + 21[Wall] + 22[Wall] + 23[Wall] + 24[Wall] + 25["Cap Start"] + 26["Cap End"] + 27["Cap End"] + 28["SweepEdge Opposite"] + 29["SweepEdge Opposite"] + 30["SweepEdge Opposite"] + 31["SweepEdge Opposite"] + 32["SweepEdge Opposite"] + 33["SweepEdge Opposite"] + 34["SweepEdge Opposite"] + 35["SweepEdge Adjacent"] + 36["SweepEdge Adjacent"] 37["SweepEdge Adjacent"] - 38["SweepEdge Opposite"] + 38["SweepEdge Adjacent"] 39["SweepEdge Adjacent"] - 40["SweepEdge Opposite"] + 40["SweepEdge Adjacent"] 41["SweepEdge Adjacent"] - 42["StartSketchOnFace
[345, 384, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 ---- 9 - 2 --- 8 - 3 --- 13 - 3 --- 22 - 3 --- 23 - 3 x--> 15 + 42["EdgeCut Fillet
[298, 332, 0]"] + 1 --- 3 + 21 x--> 2 + 3 --- 5 + 3 --- 6 + 3 --- 7 + 3 --- 8 + 3 --- 9 + 3 --- 15 + 3 ---- 16 + 4 --- 10 + 4 --- 11 4 --- 12 - 4 --- 20 - 4 --- 21 - 4 --- 24 - 4 x--> 15 - 5 --- 11 - 5 --- 18 - 5 --- 19 - 5 x--> 15 - 6 --- 10 - 6 --- 16 - 6 --- 17 - 6 x--> 15 - 9 --- 10 - 9 --- 11 - 9 --- 12 - 9 --- 13 - 9 --- 14 - 9 --- 15 - 9 --- 16 - 9 --- 17 - 9 --- 18 - 9 --- 19 - 9 --- 20 - 9 --- 21 - 9 --- 22 - 9 --- 23 - 11 --- 25 - 16 <--x 10 - 16 <--x 14 - 17 <--x 10 - 17 <--x 13 - 18 <--x 11 - 18 <--x 14 - 19 <--x 10 - 19 <--x 11 - 20 <--x 12 - 20 <--x 14 - 21 <--x 11 - 21 <--x 12 - 22 <--x 13 - 22 <--x 14 - 23 <--x 12 - 23 <--x 13 - 25 --- 26 - 25 --- 27 - 25 --- 28 - 25 --- 29 - 25 ---- 31 - 25 --- 30 - 26 --- 34 - 26 --- 40 - 26 --- 41 - 26 <--x 11 - 27 --- 33 - 27 --- 38 - 27 --- 39 - 27 <--x 11 - 28 --- 32 - 28 --- 36 - 28 --- 37 - 28 <--x 11 - 31 --- 32 - 31 --- 33 - 31 --- 34 - 31 --- 35 - 31 --- 36 - 31 --- 37 - 31 --- 38 - 31 --- 39 - 31 --- 40 - 31 --- 41 - 36 <--x 32 - 36 <--x 35 - 37 <--x 32 - 37 <--x 34 - 38 <--x 33 - 38 <--x 35 - 39 <--x 32 - 39 <--x 33 - 40 <--x 34 - 40 <--x 35 - 41 <--x 33 - 41 <--x 34 - 11 <--x 42 + 4 --- 13 + 4 --- 14 + 4 ---- 17 + 21 --- 4 + 5 --- 20 + 5 x--> 26 + 5 --- 29 + 5 --- 35 + 6 --- 18 + 6 x--> 26 + 6 --- 30 + 6 --- 37 + 6 --- 42 + 7 --- 21 + 7 x--> 26 + 7 --- 31 + 7 --- 36 + 8 --- 19 + 8 x--> 26 + 8 --- 28 + 8 --- 38 + 10 x--> 21 + 10 --- 23 + 10 --- 33 + 10 --- 39 + 11 x--> 21 + 11 --- 22 + 11 --- 32 + 11 --- 40 + 12 x--> 21 + 12 --- 24 + 12 --- 34 + 12 --- 41 + 16 --- 18 + 16 --- 19 + 16 --- 20 + 16 --- 21 + 16 --- 25 + 16 --- 26 + 16 --- 28 + 16 --- 29 + 16 --- 30 + 16 --- 31 + 16 --- 35 + 16 --- 36 + 16 --- 37 + 16 --- 38 + 17 --- 22 + 17 --- 23 + 17 --- 24 + 17 --- 27 + 17 --- 32 + 17 --- 33 + 17 --- 34 + 17 --- 39 + 17 --- 40 + 17 --- 41 + 30 <--x 18 + 35 <--x 18 + 37 <--x 18 + 28 <--x 19 + 36 <--x 19 + 38 <--x 19 + 29 <--x 20 + 35 <--x 20 + 38 <--x 20 + 31 <--x 21 + 36 <--x 21 + 37 <--x 21 + 32 <--x 22 + 39 <--x 22 + 40 <--x 22 + 33 <--x 23 + 39 <--x 23 + 41 <--x 23 + 34 <--x 24 + 40 <--x 24 + 41 <--x 24 + 28 <--x 25 + 29 <--x 25 + 30 <--x 25 + 31 <--x 25 + 32 <--x 27 + 33 <--x 27 + 34 <--x 27 ``` diff --git a/rust/kcl-lib/tests/artifact_graph_example_code_no_3d/artifact_commands.snap b/rust/kcl-lib/tests/artifact_graph_example_code_no_3d/artifact_commands.snap index 6e8148293..f80440ca5 100644 --- a/rust/kcl-lib/tests/artifact_graph_example_code_no_3d/artifact_commands.snap +++ b/rust/kcl-lib/tests/artifact_graph_example_code_no_3d/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands artifact_graph_example_code_no_3d.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands artifact_graph_example_code_no_3d.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -214,13 +214,6 @@ description: Artifact commands artifact_graph_example_code_no_3d.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -241,6 +234,13 @@ description: Artifact commands artifact_graph_example_code_no_3d.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], diff --git a/rust/kcl-lib/tests/artifact_graph_example_code_no_3d/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/artifact_graph_example_code_no_3d/artifact_graph_flowchart.snap.md index 6995f4f79..2a0a7bcb2 100644 --- a/rust/kcl-lib/tests/artifact_graph_example_code_no_3d/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/artifact_graph_example_code_no_3d/artifact_graph_flowchart.snap.md @@ -1,31 +1,31 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[37, 65, 0]"] - 3["Segment
[71, 139, 0]"] - 4["Segment
[145, 242, 0]"] - 5["Segment
[248, 365, 0]"] - 6["Segment
[371, 427, 0]"] - 7["Segment
[433, 440, 0]"] - 8[Solid2d] + subgraph path3 [Path] + 3["Path
[37, 65, 0]"] + 5["Segment
[71, 139, 0]"] + 6["Segment
[145, 242, 0]"] + 7["Segment
[248, 365, 0]"] + 8["Segment
[371, 427, 0]"] + 9["Segment
[433, 440, 0]"] + 13[Solid2d] end - subgraph path10 [Path] - 10["Path
[479, 508, 0]"] - 11["Segment
[514, 539, 0]"] - 12["Segment
[545, 580, 0]"] - 13["Segment
[586, 627, 0]"] + subgraph path4 [Path] + 4["Path
[479, 508, 0]"] + 10["Segment
[514, 539, 0]"] + 11["Segment
[545, 580, 0]"] + 12["Segment
[586, 627, 0]"] end 1["Plane
[12, 31, 0]"] - 9["Plane
[453, 473, 0]"] - 1 --- 2 - 2 --- 3 + 2["Plane
[453, 473, 0]"] + 1 --- 3 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 --- 8 - 9 --- 10 - 10 --- 11 - 10 --- 12 - 10 --- 13 + 3 --- 5 + 3 --- 6 + 3 --- 7 + 3 --- 8 + 3 --- 9 + 3 --- 13 + 4 --- 10 + 4 --- 11 + 4 --- 12 ``` diff --git a/rust/kcl-lib/tests/artifact_graph_example_code_offset_planes/artifact_commands.snap b/rust/kcl-lib/tests/artifact_graph_example_code_offset_planes/artifact_commands.snap index bef87cefc..fb6088437 100644 --- a/rust/kcl-lib/tests/artifact_graph_example_code_offset_planes/artifact_commands.snap +++ b/rust/kcl-lib/tests/artifact_graph_example_code_offset_planes/artifact_commands.snap @@ -162,13 +162,6 @@ description: Artifact commands artifact_graph_example_code_offset_planes.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -182,6 +175,15 @@ description: Artifact commands artifact_graph_example_code_offset_planes.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -189,6 +191,13 @@ description: Artifact commands artifact_graph_example_code_offset_planes.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -205,14 +214,5 @@ description: Artifact commands artifact_graph_example_code_offset_planes.kcl "relative": true } } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } } ] diff --git a/rust/kcl-lib/tests/artifact_graph_example_code_offset_planes/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/artifact_graph_example_code_offset_planes/artifact_graph_flowchart.snap.md index 9b41bed7f..a89fec630 100644 --- a/rust/kcl-lib/tests/artifact_graph_example_code_offset_planes/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/artifact_graph_example_code_offset_planes/artifact_graph_flowchart.snap.md @@ -1,14 +1,14 @@ ```mermaid flowchart LR - subgraph path4 [Path] - 4["Path
[193, 218, 0]"] - 5["Segment
[224, 249, 0]"] + subgraph path5 [Path] + 5["Path
[193, 218, 0]"] + 6["Segment
[224, 249, 0]"] end 1["Plane
[17, 47, 0]"] 2["Plane
[65, 96, 0]"] 3["Plane
[114, 144, 0]"] - 6["StartSketchOnPlane
[158, 187, 0]"] - 1 --- 4 - 4 --- 5 - 1 <--x 6 + 4["StartSketchOnPlane
[158, 187, 0]"] + 1 <--x 4 + 1 --- 5 + 5 --- 6 ``` diff --git a/rust/kcl-lib/tests/artifact_graph_sketch_on_face_etc/artifact_commands.snap b/rust/kcl-lib/tests/artifact_graph_sketch_on_face_etc/artifact_commands.snap index 77919fc07..15c7e6709 100644 --- a/rust/kcl-lib/tests/artifact_graph_sketch_on_face_etc/artifact_commands.snap +++ b/rust/kcl-lib/tests/artifact_graph_sketch_on_face_etc/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,81 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +292,12 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,18 +312,10 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -273,43 +328,6 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -324,30 +342,12 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -360,13 +360,6 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -387,6 +380,13 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -469,6 +469,14 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -480,8 +488,81 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -497,30 +578,12 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -535,18 +598,10 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -559,43 +614,6 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -610,30 +628,12 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -646,13 +646,6 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -673,6 +666,13 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -755,6 +755,14 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -766,8 +774,81 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -783,30 +864,12 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -821,18 +884,10 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -845,43 +900,6 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -896,30 +914,12 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -932,13 +932,6 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -959,6 +952,13 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1041,6 +1041,14 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1052,8 +1060,81 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1069,30 +1150,12 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1107,18 +1170,10 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1131,43 +1186,6 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1182,28 +1200,10 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/artifact_graph_sketch_on_face_etc/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/artifact_graph_sketch_on_face_etc/artifact_graph_flowchart.snap.md index dc5fa5b0e..74f48112f 100644 --- a/rust/kcl-lib/tests/artifact_graph_sketch_on_face_etc/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/artifact_graph_sketch_on_face_etc/artifact_graph_flowchart.snap.md @@ -1,252 +1,252 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[35, 60, 0]"] - 3["Segment
[66, 84, 0]"] - 4["Segment
[90, 123, 0]"] - 5["Segment
[129, 185, 0]"] - 6["Segment
[191, 198, 0]"] - 7[Solid2d] + subgraph path5 [Path] + 5["Path
[35, 60, 0]"] + 9["Segment
[66, 84, 0]"] + 10["Segment
[90, 123, 0]"] + 11["Segment
[129, 185, 0]"] + 12["Segment
[191, 198, 0]"] + 27[Solid2d] end - subgraph path20 [Path] - 20["Path
[300, 330, 0]"] - 21["Segment
[336, 354, 0]"] - 22["Segment
[360, 379, 0]"] - 23["Segment
[385, 441, 0]"] - 24["Segment
[447, 454, 0]"] + subgraph path6 [Path] + 6["Path
[300, 330, 0]"] + 13["Segment
[336, 354, 0]"] + 14["Segment
[360, 379, 0]"] + 15["Segment
[385, 441, 0]"] + 16["Segment
[447, 454, 0]"] 25[Solid2d] end - subgraph path37 [Path] - 37["Path
[556, 583, 0]"] - 38["Segment
[589, 623, 0]"] - 39["Segment
[629, 648, 0]"] - 40["Segment
[654, 710, 0]"] - 41["Segment
[716, 723, 0]"] - 42[Solid2d] + subgraph path7 [Path] + 7["Path
[556, 583, 0]"] + 17["Segment
[589, 623, 0]"] + 18["Segment
[629, 648, 0]"] + 19["Segment
[654, 710, 0]"] + 20["Segment
[716, 723, 0]"] + 28[Solid2d] end - subgraph path54 [Path] - 54["Path
[825, 852, 0]"] - 55["Segment
[858, 878, 0]"] - 56["Segment
[884, 905, 0]"] - 57["Segment
[911, 967, 0]"] - 58["Segment
[973, 980, 0]"] - 59[Solid2d] + subgraph path8 [Path] + 8["Path
[825, 852, 0]"] + 21["Segment
[858, 878, 0]"] + 22["Segment
[884, 905, 0]"] + 23["Segment
[911, 967, 0]"] + 24["Segment
[973, 980, 0]"] + 26[Solid2d] end 1["Plane
[12, 29, 0]"] - 8["Sweep Extrusion
[212, 242, 0]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12["Cap Start"] - 13["Cap End"] - 14["SweepEdge Opposite"] - 15["SweepEdge Adjacent"] - 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] - 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 26["Sweep Extrusion
[468, 498, 0]"] - 27[Wall] - 28[Wall] - 29[Wall] - 30["Cap End"] - 31["SweepEdge Opposite"] - 32["SweepEdge Adjacent"] - 33["SweepEdge Opposite"] - 34["SweepEdge Adjacent"] - 35["SweepEdge Opposite"] - 36["SweepEdge Adjacent"] - 43["Sweep Extrusion
[737, 767, 0]"] + 2["StartSketchOnFace
[255, 294, 0]"] + 3["StartSketchOnFace
[780, 819, 0]"] + 4["StartSketchOnFace
[511, 550, 0]"] + 29["Sweep Extrusion
[212, 242, 0]"] + 30["Sweep Extrusion
[468, 498, 0]"] + 31["Sweep Extrusion
[737, 767, 0]"] + 32["Sweep Extrusion
[994, 1024, 0]"] + 33[Wall] + 34[Wall] + 35[Wall] + 36[Wall] + 37[Wall] + 38[Wall] + 39[Wall] + 40[Wall] + 41[Wall] + 42[Wall] + 43[Wall] 44[Wall] - 45[Wall] - 46[Wall] + 45["Cap Start"] + 46["Cap End"] 47["Cap End"] - 48["SweepEdge Opposite"] - 49["SweepEdge Adjacent"] + 48["Cap End"] + 49["Cap End"] 50["SweepEdge Opposite"] - 51["SweepEdge Adjacent"] + 51["SweepEdge Opposite"] 52["SweepEdge Opposite"] - 53["SweepEdge Adjacent"] - 60["Sweep Extrusion
[994, 1024, 0]"] - 61[Wall] - 62[Wall] - 63[Wall] - 64["Cap End"] - 65["SweepEdge Opposite"] + 53["SweepEdge Opposite"] + 54["SweepEdge Opposite"] + 55["SweepEdge Opposite"] + 56["SweepEdge Opposite"] + 57["SweepEdge Opposite"] + 58["SweepEdge Opposite"] + 59["SweepEdge Opposite"] + 60["SweepEdge Opposite"] + 61["SweepEdge Opposite"] + 62["SweepEdge Adjacent"] + 63["SweepEdge Adjacent"] + 64["SweepEdge Adjacent"] + 65["SweepEdge Adjacent"] 66["SweepEdge Adjacent"] - 67["SweepEdge Opposite"] + 67["SweepEdge Adjacent"] 68["SweepEdge Adjacent"] - 69["SweepEdge Opposite"] + 69["SweepEdge Adjacent"] 70["SweepEdge Adjacent"] - 71["StartSketchOnFace
[255, 294, 0]"] - 72["StartSketchOnFace
[511, 550, 0]"] - 73["StartSketchOnFace
[780, 819, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 11 - 3 --- 18 - 3 --- 19 - 3 x--> 12 - 4 --- 10 - 4 --- 16 - 4 --- 17 - 4 x--> 12 + 71["SweepEdge Adjacent"] + 72["SweepEdge Adjacent"] + 73["SweepEdge Adjacent"] + 1 --- 5 + 41 x--> 2 + 44 x--> 3 + 47 x--> 4 5 --- 9 - 5 --- 14 - 5 --- 15 - 5 x--> 12 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 - 8 --- 16 - 8 --- 17 - 8 --- 18 - 8 --- 19 - 10 --- 20 - 14 <--x 9 - 14 <--x 13 - 15 <--x 9 - 15 <--x 11 - 16 <--x 10 - 16 <--x 13 - 17 <--x 9 - 17 <--x 10 - 18 <--x 11 - 18 <--x 13 - 19 <--x 10 - 19 <--x 11 - 20 --- 21 - 20 --- 22 - 20 --- 23 - 20 --- 24 - 20 ---- 26 - 20 --- 25 - 21 --- 29 - 21 --- 35 - 21 --- 36 - 21 <--x 10 - 22 --- 28 - 22 --- 33 - 22 --- 34 - 22 <--x 10 - 23 --- 27 - 23 --- 31 - 23 --- 32 - 23 <--x 10 - 26 --- 27 - 26 --- 28 - 26 --- 29 - 26 --- 30 - 26 --- 31 - 26 --- 32 - 26 --- 33 - 26 --- 34 - 26 --- 35 - 26 --- 36 + 5 --- 10 + 5 --- 11 + 5 --- 12 + 5 --- 27 + 5 ---- 29 + 6 --- 13 + 6 --- 14 + 6 --- 15 + 6 --- 16 + 6 --- 25 + 6 ---- 30 + 41 --- 6 + 7 --- 17 + 7 --- 18 + 7 --- 19 + 7 --- 20 + 7 --- 28 + 7 ---- 31 + 47 --- 7 + 8 --- 21 + 8 --- 22 + 8 --- 23 + 8 --- 24 + 8 --- 26 + 8 ---- 32 + 44 --- 8 + 9 --- 40 + 9 x--> 45 + 9 --- 58 + 9 --- 69 + 10 --- 41 + 10 x--> 45 + 10 --- 56 + 10 --- 70 + 11 --- 39 + 11 x--> 45 + 11 --- 57 + 11 --- 68 + 13 --- 38 + 13 x--> 41 + 13 --- 53 + 13 --- 66 + 14 --- 37 + 14 x--> 41 + 14 --- 54 + 14 --- 65 + 15 --- 36 + 15 x--> 41 + 15 --- 55 + 15 --- 67 + 17 --- 44 + 17 x--> 47 + 17 --- 60 + 17 --- 72 + 18 --- 42 + 18 x--> 47 + 18 --- 61 + 18 --- 71 + 19 --- 43 + 19 x--> 47 + 19 --- 59 + 19 --- 73 + 21 --- 33 + 21 x--> 44 + 21 --- 51 + 21 --- 64 + 22 --- 35 + 22 x--> 44 + 22 --- 50 + 22 --- 62 + 23 --- 34 + 23 x--> 44 + 23 --- 52 + 23 --- 63 + 29 --- 39 + 29 --- 40 + 29 --- 41 + 29 --- 45 + 29 --- 48 + 29 --- 56 + 29 --- 57 + 29 --- 58 + 29 --- 68 + 29 --- 69 + 29 --- 70 + 30 --- 36 30 --- 37 - 31 <--x 27 - 31 <--x 30 - 32 <--x 27 - 32 <--x 29 - 33 <--x 28 - 33 <--x 30 - 34 <--x 27 - 34 <--x 28 - 35 <--x 29 - 35 <--x 30 - 36 <--x 28 - 36 <--x 29 - 37 --- 38 - 37 --- 39 - 37 --- 40 - 37 --- 41 - 37 ---- 43 - 37 --- 42 - 38 --- 46 - 38 --- 52 - 38 --- 53 - 38 <--x 30 - 39 --- 45 - 39 --- 50 - 39 --- 51 - 39 <--x 30 - 40 --- 44 - 40 --- 48 - 40 --- 49 - 40 <--x 30 - 43 --- 44 - 43 --- 45 - 43 --- 46 - 43 --- 47 - 43 --- 48 - 43 --- 49 - 43 --- 50 - 43 --- 51 - 43 --- 52 - 43 --- 53 - 46 --- 54 - 48 <--x 44 - 48 <--x 47 - 49 <--x 44 - 49 <--x 46 - 50 <--x 45 - 50 <--x 47 - 51 <--x 44 - 51 <--x 45 + 30 --- 38 + 30 --- 47 + 30 --- 53 + 30 --- 54 + 30 --- 55 + 30 --- 65 + 30 --- 66 + 30 --- 67 + 31 --- 42 + 31 --- 43 + 31 --- 44 + 31 --- 49 + 31 --- 59 + 31 --- 60 + 31 --- 61 + 31 --- 71 + 31 --- 72 + 31 --- 73 + 32 --- 33 + 32 --- 34 + 32 --- 35 + 32 --- 46 + 32 --- 50 + 32 --- 51 + 32 --- 52 + 32 --- 62 + 32 --- 63 + 32 --- 64 + 51 <--x 33 + 63 <--x 33 + 64 <--x 33 + 52 <--x 34 + 62 <--x 34 + 63 <--x 34 + 50 <--x 35 + 62 <--x 35 + 64 <--x 35 + 55 <--x 36 + 65 <--x 36 + 67 <--x 36 + 54 <--x 37 + 65 <--x 37 + 66 <--x 37 + 53 <--x 38 + 66 <--x 38 + 67 <--x 38 + 57 <--x 39 + 68 <--x 39 + 70 <--x 39 + 58 <--x 40 + 68 <--x 40 + 69 <--x 40 + 56 <--x 41 + 69 <--x 41 + 70 <--x 41 + 61 <--x 42 + 71 <--x 42 + 72 <--x 42 + 59 <--x 43 + 71 <--x 43 + 73 <--x 43 + 60 <--x 44 + 72 <--x 44 + 73 <--x 44 + 50 <--x 46 + 51 <--x 46 52 <--x 46 - 52 <--x 47 - 53 <--x 45 - 53 <--x 46 - 54 --- 55 - 54 --- 56 - 54 --- 57 - 54 --- 58 - 54 ---- 60 - 54 --- 59 - 55 --- 63 - 55 --- 69 - 55 --- 70 - 55 <--x 46 - 56 --- 62 - 56 --- 67 - 56 --- 68 - 56 <--x 46 - 57 --- 61 - 57 --- 65 - 57 --- 66 - 57 <--x 46 - 60 --- 61 - 60 --- 62 - 60 --- 63 - 60 --- 64 - 60 --- 65 - 60 --- 66 - 60 --- 67 - 60 --- 68 - 60 --- 69 - 60 --- 70 - 65 <--x 61 - 65 <--x 64 - 66 <--x 61 - 66 <--x 63 - 67 <--x 62 - 67 <--x 64 - 68 <--x 61 - 68 <--x 62 - 69 <--x 63 - 69 <--x 64 - 70 <--x 62 - 70 <--x 63 - 10 <--x 71 - 30 <--x 72 - 46 <--x 73 + 53 <--x 47 + 54 <--x 47 + 55 <--x 47 + 56 <--x 48 + 57 <--x 48 + 58 <--x 48 + 59 <--x 49 + 60 <--x 49 + 61 <--x 49 ``` diff --git a/rust/kcl-lib/tests/assembly_mixed_units_cubes/artifact_commands.snap b/rust/kcl-lib/tests/assembly_mixed_units_cubes/artifact_commands.snap index b5d1a38a4..e7768db0c 100644 --- a/rust/kcl-lib/tests/assembly_mixed_units_cubes/artifact_commands.snap +++ b/rust/kcl-lib/tests/assembly_mixed_units_cubes/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands assembly_mixed_units_cubes.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands assembly_mixed_units_cubes.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -200,6 +200,14 @@ description: Artifact commands assembly_mixed_units_cubes.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -211,8 +219,108 @@ description: Artifact commands assembly_mixed_units_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -228,30 +336,12 @@ description: Artifact commands assembly_mixed_units_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -266,39 +356,12 @@ description: Artifact commands assembly_mixed_units_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -313,18 +376,10 @@ description: Artifact commands assembly_mixed_units_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -337,43 +392,6 @@ description: Artifact commands assembly_mixed_units_cubes.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -388,30 +406,12 @@ description: Artifact commands assembly_mixed_units_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -453,13 +453,6 @@ description: Artifact commands assembly_mixed_units_cubes.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -480,6 +473,13 @@ description: Artifact commands assembly_mixed_units_cubes.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -583,6 +583,14 @@ description: Artifact commands assembly_mixed_units_cubes.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -594,8 +602,108 @@ description: Artifact commands assembly_mixed_units_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -611,30 +719,12 @@ description: Artifact commands assembly_mixed_units_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -649,39 +739,12 @@ description: Artifact commands assembly_mixed_units_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -696,18 +759,10 @@ description: Artifact commands assembly_mixed_units_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -720,43 +775,6 @@ description: Artifact commands assembly_mixed_units_cubes.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -771,28 +789,10 @@ description: Artifact commands assembly_mixed_units_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/assembly_mixed_units_cubes/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/assembly_mixed_units_cubes/artifact_graph_flowchart.snap.md index d72dfc8ad..6d657e0b1 100644 --- a/rust/kcl-lib/tests/assembly_mixed_units_cubes/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/assembly_mixed_units_cubes/artifact_graph_flowchart.snap.md @@ -1,161 +1,161 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[76, 116, 8]"] - 3["Segment
[122, 139, 8]"] - 4["Segment
[145, 163, 8]"] - 5["Segment
[169, 187, 8]"] - 6["Segment
[193, 249, 8]"] - 7["Segment
[255, 262, 8]"] - 8[Solid2d] + subgraph path3 [Path] + 3["Path
[76, 116, 8]"] + 5["Segment
[122, 139, 8]"] + 6["Segment
[145, 163, 8]"] + 7["Segment
[169, 187, 8]"] + 8["Segment
[193, 249, 8]"] + 9["Segment
[255, 262, 8]"] + 15[Solid2d] end - subgraph path25 [Path] - 25["Path
[76, 114, 9]"] - 26["Segment
[120, 137, 9]"] - 27["Segment
[143, 161, 9]"] - 28["Segment
[167, 185, 9]"] - 29["Segment
[191, 247, 9]"] - 30["Segment
[253, 260, 9]"] - 31[Solid2d] + subgraph path4 [Path] + 4["Path
[76, 114, 9]"] + 10["Segment
[120, 137, 9]"] + 11["Segment
[143, 161, 9]"] + 12["Segment
[167, 185, 9]"] + 13["Segment
[191, 247, 9]"] + 14["Segment
[253, 260, 9]"] + 16[Solid2d] end 1["Plane
[47, 66, 8]"] - 9["Sweep Extrusion
[268, 290, 8]"] - 10[Wall] - 11[Wall] - 12[Wall] - 13[Wall] - 14["Cap Start"] - 15["Cap End"] - 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] - 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 20["SweepEdge Opposite"] - 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] - 23["SweepEdge Adjacent"] - 24["Plane
[47, 66, 9]"] - 32["Sweep Extrusion
[266, 288, 9]"] - 33[Wall] - 34[Wall] - 35[Wall] - 36[Wall] - 37["Cap Start"] - 38["Cap End"] - 39["SweepEdge Opposite"] + 2["Plane
[47, 66, 9]"] + 17["Sweep Extrusion
[268, 290, 8]"] + 18["Sweep Extrusion
[266, 288, 9]"] + 19[Wall] + 20[Wall] + 21[Wall] + 22[Wall] + 23[Wall] + 24[Wall] + 25[Wall] + 26[Wall] + 27["Cap Start"] + 28["Cap Start"] + 29["Cap End"] + 30["Cap End"] + 31["SweepEdge Opposite"] + 32["SweepEdge Opposite"] + 33["SweepEdge Opposite"] + 34["SweepEdge Opposite"] + 35["SweepEdge Opposite"] + 36["SweepEdge Opposite"] + 37["SweepEdge Opposite"] + 38["SweepEdge Opposite"] + 39["SweepEdge Adjacent"] 40["SweepEdge Adjacent"] - 41["SweepEdge Opposite"] + 41["SweepEdge Adjacent"] 42["SweepEdge Adjacent"] - 43["SweepEdge Opposite"] + 43["SweepEdge Adjacent"] 44["SweepEdge Adjacent"] - 45["SweepEdge Opposite"] + 45["SweepEdge Adjacent"] 46["SweepEdge Adjacent"] - 1 --- 2 - 2 --- 3 + 1 --- 3 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 ---- 9 - 2 --- 8 - 3 --- 13 - 3 --- 22 - 3 --- 23 - 3 x--> 14 + 3 --- 5 + 3 --- 6 + 3 --- 7 + 3 --- 8 + 3 --- 9 + 3 --- 15 + 3 ---- 17 + 4 --- 10 + 4 --- 11 4 --- 12 - 4 --- 20 - 4 --- 21 - 4 x--> 14 - 5 --- 11 - 5 --- 18 - 5 --- 19 - 5 x--> 14 - 6 --- 10 - 6 --- 16 - 6 --- 17 - 6 x--> 14 - 9 --- 10 - 9 --- 11 - 9 --- 12 - 9 --- 13 - 9 --- 14 - 9 --- 15 - 9 --- 16 - 9 --- 17 - 9 --- 18 - 9 --- 19 - 9 --- 20 - 9 --- 21 - 9 --- 22 - 9 --- 23 - 16 <--x 10 - 16 <--x 15 - 17 <--x 10 - 17 <--x 13 - 18 <--x 11 - 18 <--x 15 - 19 <--x 10 - 19 <--x 11 - 20 <--x 12 - 20 <--x 15 - 21 <--x 11 - 21 <--x 12 - 22 <--x 13 - 22 <--x 15 - 23 <--x 12 - 23 <--x 13 - 24 --- 25 - 25 --- 26 - 25 --- 27 - 25 --- 28 - 25 --- 29 - 25 --- 30 - 25 ---- 32 - 25 --- 31 - 26 --- 36 - 26 --- 45 - 26 --- 46 - 26 x--> 37 - 27 --- 35 - 27 --- 43 - 27 --- 44 - 27 x--> 37 - 28 --- 34 - 28 --- 41 - 28 --- 42 - 28 x--> 37 - 29 --- 33 - 29 --- 39 - 29 --- 40 - 29 x--> 37 - 32 --- 33 - 32 --- 34 - 32 --- 35 - 32 --- 36 - 32 --- 37 - 32 --- 38 - 32 --- 39 - 32 --- 40 - 32 --- 41 - 32 --- 42 - 32 --- 43 - 32 --- 44 - 32 --- 45 - 32 --- 46 - 39 <--x 33 - 39 <--x 38 - 40 <--x 33 - 40 <--x 36 - 41 <--x 34 - 41 <--x 38 - 42 <--x 33 - 42 <--x 34 - 43 <--x 35 - 43 <--x 38 - 44 <--x 34 - 44 <--x 35 - 45 <--x 36 - 45 <--x 38 - 46 <--x 35 - 46 <--x 36 + 4 --- 13 + 4 --- 14 + 4 --- 16 + 4 ---- 18 + 5 --- 24 + 5 x--> 28 + 5 --- 37 + 5 --- 46 + 6 --- 25 + 6 x--> 28 + 6 --- 35 + 6 --- 45 + 7 --- 26 + 7 x--> 28 + 7 --- 36 + 7 --- 44 + 8 --- 23 + 8 x--> 28 + 8 --- 38 + 8 --- 43 + 10 --- 19 + 10 x--> 27 + 10 --- 31 + 10 --- 39 + 11 --- 22 + 11 x--> 27 + 11 --- 34 + 11 --- 41 + 12 --- 21 + 12 x--> 27 + 12 --- 32 + 12 --- 42 + 13 --- 20 + 13 x--> 27 + 13 --- 33 + 13 --- 40 + 17 --- 23 + 17 --- 24 + 17 --- 25 + 17 --- 26 + 17 --- 28 + 17 --- 30 + 17 --- 35 + 17 --- 36 + 17 --- 37 + 17 --- 38 + 17 --- 43 + 17 --- 44 + 17 --- 45 + 17 --- 46 + 18 --- 19 + 18 --- 20 + 18 --- 21 + 18 --- 22 + 18 --- 27 + 18 --- 29 + 18 --- 31 + 18 --- 32 + 18 --- 33 + 18 --- 34 + 18 --- 39 + 18 --- 40 + 18 --- 41 + 18 --- 42 + 31 <--x 19 + 39 <--x 19 + 40 <--x 19 + 33 <--x 20 + 40 <--x 20 + 42 <--x 20 + 32 <--x 21 + 41 <--x 21 + 42 <--x 21 + 34 <--x 22 + 39 <--x 22 + 41 <--x 22 + 38 <--x 23 + 43 <--x 23 + 44 <--x 23 + 37 <--x 24 + 43 <--x 24 + 46 <--x 24 + 35 <--x 25 + 45 <--x 25 + 46 <--x 25 + 36 <--x 26 + 44 <--x 26 + 45 <--x 26 + 31 <--x 29 + 32 <--x 29 + 33 <--x 29 + 34 <--x 29 + 35 <--x 30 + 36 <--x 30 + 37 <--x 30 + 38 <--x 30 ``` diff --git a/rust/kcl-lib/tests/assembly_mixed_units_cubes/ops.snap b/rust/kcl-lib/tests/assembly_mixed_units_cubes/ops.snap index 80c3c8aab..636b72b43 100644 --- a/rust/kcl-lib/tests/assembly_mixed_units_cubes/ops.snap +++ b/rust/kcl-lib/tests/assembly_mixed_units_cubes/ops.snap @@ -12,56 +12,6 @@ description: Operations executed assembly_mixed_units_cubes.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "String", - "value": "XY" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 5.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -72,51 +22,7 @@ description: Operations executed assembly_mixed_units_cubes.kcl "sourceRange": [] }, { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "String", - "value": "XY" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 5.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" }, { "type": "GroupEnd" diff --git a/rust/kcl-lib/tests/assembly_non_default_units/artifact_commands.snap b/rust/kcl-lib/tests/assembly_non_default_units/artifact_commands.snap index 8dd1b601d..7eae64562 100644 --- a/rust/kcl-lib/tests/assembly_non_default_units/artifact_commands.snap +++ b/rust/kcl-lib/tests/assembly_non_default_units/artifact_commands.snap @@ -54,6 +54,14 @@ description: Artifact commands assembly_non_default_units.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -70,33 +78,6 @@ description: Artifact commands assembly_non_default_units.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 25.4, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -126,8 +107,27 @@ description: Artifact commands assembly_non_default_units.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 25.4, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -155,6 +155,14 @@ description: Artifact commands assembly_non_default_units.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -171,33 +179,6 @@ description: Artifact commands assembly_non_default_units.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 25.4, - "y": 50.8, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -227,8 +208,27 @@ description: Artifact commands assembly_non_default_units.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 25.4, + "y": 50.8, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } } ] diff --git a/rust/kcl-lib/tests/assembly_non_default_units/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/assembly_non_default_units/artifact_graph_flowchart.snap.md index 108bc113c..8f8ba7497 100644 --- a/rust/kcl-lib/tests/assembly_non_default_units/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/assembly_non_default_units/artifact_graph_flowchart.snap.md @@ -1,21 +1,21 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[197, 232, 8]"] - 3["Segment
[197, 232, 8]"] - 4[Solid2d] + subgraph path3 [Path] + 3["Path
[197, 232, 8]"] + 5["Segment
[197, 232, 8]"] + 7[Solid2d] end - subgraph path6 [Path] - 6["Path
[113, 148, 9]"] - 7["Segment
[113, 148, 9]"] + subgraph path4 [Path] + 4["Path
[113, 148, 10]"] + 6["Segment
[113, 148, 10]"] 8[Solid2d] end 1["Plane
[172, 191, 8]"] - 5["Plane
[88, 107, 9]"] - 1 --- 2 - 2 --- 3 + 2["Plane
[88, 107, 10]"] + 1 --- 3 2 --- 4 - 5 --- 6 - 6 --- 7 - 6 --- 8 + 3 --- 5 + 3 --- 7 + 4 --- 6 + 4 --- 8 ``` diff --git a/rust/kcl-lib/tests/assembly_non_default_units/ops.snap b/rust/kcl-lib/tests/assembly_non_default_units/ops.snap index bd28b334f..c6ed84b84 100644 --- a/rust/kcl-lib/tests/assembly_non_default_units/ops.snap +++ b/rust/kcl-lib/tests/assembly_non_default_units/ops.snap @@ -12,24 +12,6 @@ description: Operations executed assembly_non_default_units.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "String", - "value": "XZ" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -40,19 +22,7 @@ description: Operations executed assembly_non_default_units.kcl "sourceRange": [] }, { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "String", - "value": "XZ" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" }, { "type": "GroupEnd" diff --git a/rust/kcl-lib/tests/assembly_non_default_units/program_memory.snap b/rust/kcl-lib/tests/assembly_non_default_units/program_memory.snap index 55b45c4ca..1280da52b 100644 --- a/rust/kcl-lib/tests/assembly_non_default_units/program_memory.snap +++ b/rust/kcl-lib/tests/assembly_non_default_units/program_memory.snap @@ -9,6 +9,6 @@ description: Variables in memory after executing assembly_non_default_units.kcl }, "other2": { "type": "Module", - "value": 9 + "value": 10 } } diff --git a/rust/kcl-lib/tests/basic_fillet_cube_close_opposite/artifact_commands.snap b/rust/kcl-lib/tests/basic_fillet_cube_close_opposite/artifact_commands.snap index 26b9aad27..738dc4695 100644 --- a/rust/kcl-lib/tests/basic_fillet_cube_close_opposite/artifact_commands.snap +++ b/rust/kcl-lib/tests/basic_fillet_cube_close_opposite/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands basic_fillet_cube_close_opposite.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands basic_fillet_cube_close_opposite.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands basic_fillet_cube_close_opposite.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands basic_fillet_cube_close_opposite.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands basic_fillet_cube_close_opposite.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands basic_fillet_cube_close_opposite.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands basic_fillet_cube_close_opposite.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +375,6 @@ description: Artifact commands basic_fillet_cube_close_opposite.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -367,34 +385,6 @@ description: Artifact commands basic_fillet_cube_close_opposite.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -428,5 +418,15 @@ description: Artifact commands basic_fillet_cube_close_opposite.kcl "tolerance": 0.0000001, "cut_type": "fillet" } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } } ] diff --git a/rust/kcl-lib/tests/basic_fillet_cube_close_opposite/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/basic_fillet_cube_close_opposite/artifact_graph_flowchart.snap.md index a1dce0cd6..4c2214bff 100644 --- a/rust/kcl-lib/tests/basic_fillet_cube_close_opposite/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/basic_fillet_cube_close_opposite/artifact_graph_flowchart.snap.md @@ -17,12 +17,12 @@ flowchart LR 13["Cap Start"] 14["Cap End"] 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] + 16["SweepEdge Opposite"] 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] + 18["SweepEdge Opposite"] + 19["SweepEdge Adjacent"] 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] + 21["SweepEdge Adjacent"] 22["SweepEdge Adjacent"] 23["EdgeCut Fillet
[223, 283, 0]"] 24["EdgeCut Fillet
[223, 283, 0]"] @@ -31,25 +31,25 @@ flowchart LR 2 --- 4 2 --- 5 2 --- 6 - 2 ---- 8 2 --- 7 + 2 ---- 8 3 --- 12 - 3 --- 21 - 3 --- 22 3 x--> 13 - 4 --- 11 - 4 --- 19 - 4 --- 20 + 3 --- 16 + 3 --- 20 + 4 --- 10 4 x--> 13 - 5 --- 10 - 5 --- 17 - 5 --- 18 + 4 --- 17 + 4 --- 21 + 5 --- 9 5 x--> 13 - 6 --- 9 - 6 --- 15 - 6 --- 16 - 6 --- 23 + 5 --- 15 + 5 --- 22 + 6 --- 11 6 x--> 13 + 6 --- 18 + 6 --- 19 + 6 --- 23 8 --- 9 8 --- 10 8 --- 11 @@ -64,19 +64,19 @@ flowchart LR 8 --- 20 8 --- 21 8 --- 22 - 16 <--x 9 - 16 <--x 12 + 15 <--x 9 + 21 <--x 9 + 22 <--x 9 17 <--x 10 - 17 <--x 14 - 18 <--x 9 - 18 <--x 10 - 19 <--x 11 - 19 <--x 14 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 14 + 21 <--x 10 + 19 <--x 11 22 <--x 11 - 22 <--x 12 - 15 <--x 24 + 16 <--x 12 + 19 <--x 12 + 20 <--x 12 + 15 <--x 14 + 16 <--x 14 + 17 <--x 14 + 18 <--x 24 ``` diff --git a/rust/kcl-lib/tests/basic_fillet_cube_end/artifact_commands.snap b/rust/kcl-lib/tests/basic_fillet_cube_end/artifact_commands.snap index c91ef5fc4..7ae5264a9 100644 --- a/rust/kcl-lib/tests/basic_fillet_cube_end/artifact_commands.snap +++ b/rust/kcl-lib/tests/basic_fillet_cube_end/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands basic_fillet_cube_end.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands basic_fillet_cube_end.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands basic_fillet_cube_end.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands basic_fillet_cube_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands basic_fillet_cube_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands basic_fillet_cube_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands basic_fillet_cube_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +375,6 @@ description: Artifact commands basic_fillet_cube_end.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -367,34 +385,6 @@ description: Artifact commands basic_fillet_cube_end.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -428,5 +418,15 @@ description: Artifact commands basic_fillet_cube_end.kcl "tolerance": 0.0000001, "cut_type": "fillet" } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } } ] diff --git a/rust/kcl-lib/tests/basic_fillet_cube_end/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/basic_fillet_cube_end/artifact_graph_flowchart.snap.md index c5ec5b572..33e6726ab 100644 --- a/rust/kcl-lib/tests/basic_fillet_cube_end/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/basic_fillet_cube_end/artifact_graph_flowchart.snap.md @@ -17,12 +17,12 @@ flowchart LR 13["Cap Start"] 14["Cap End"] 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] + 16["SweepEdge Opposite"] 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] + 18["SweepEdge Opposite"] + 19["SweepEdge Adjacent"] 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] + 21["SweepEdge Adjacent"] 22["SweepEdge Adjacent"] 23["EdgeCut Fillet
[211, 269, 0]"] 24["EdgeCut Fillet
[211, 269, 0]"] @@ -31,25 +31,25 @@ flowchart LR 2 --- 4 2 --- 5 2 --- 6 - 2 ---- 8 2 --- 7 + 2 ---- 8 3 --- 12 - 3 --- 21 - 3 --- 22 - 3 --- 23 3 x--> 13 - 4 --- 11 - 4 --- 19 - 4 --- 20 + 3 --- 18 + 3 --- 20 + 3 --- 23 + 4 --- 10 4 x--> 13 - 5 --- 10 - 5 --- 17 - 5 --- 18 + 4 --- 17 + 4 --- 21 + 5 --- 9 5 x--> 13 - 6 --- 9 - 6 --- 15 - 6 --- 16 + 5 --- 15 + 5 --- 22 + 6 --- 11 6 x--> 13 + 6 --- 16 + 6 --- 19 8 --- 9 8 --- 10 8 --- 11 @@ -65,18 +65,18 @@ flowchart LR 8 --- 21 8 --- 22 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 12 + 21 <--x 9 + 22 <--x 9 17 <--x 10 - 17 <--x 14 - 18 <--x 9 - 18 <--x 10 - 19 <--x 11 - 19 <--x 14 20 <--x 10 - 20 <--x 11 + 21 <--x 10 + 16 <--x 11 + 19 <--x 11 22 <--x 11 - 22 <--x 12 - 21 <--x 24 + 19 <--x 12 + 20 <--x 12 + 15 <--x 14 + 16 <--x 14 + 17 <--x 14 + 18 <--x 24 ``` diff --git a/rust/kcl-lib/tests/basic_fillet_cube_next_adjacent/artifact_commands.snap b/rust/kcl-lib/tests/basic_fillet_cube_next_adjacent/artifact_commands.snap index bb102397f..062a2bcfa 100644 --- a/rust/kcl-lib/tests/basic_fillet_cube_next_adjacent/artifact_commands.snap +++ b/rust/kcl-lib/tests/basic_fillet_cube_next_adjacent/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands basic_fillet_cube_next_adjacent.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands basic_fillet_cube_next_adjacent.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands basic_fillet_cube_next_adjacent.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands basic_fillet_cube_next_adjacent.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,9 +319,40 @@ description: Artifact commands basic_fillet_cube_next_adjacent.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -230,39 +369,12 @@ description: Artifact commands basic_fillet_cube_next_adjacent.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -273,43 +385,6 @@ description: Artifact commands basic_fillet_cube_next_adjacent.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -320,91 +395,6 @@ description: Artifact commands basic_fillet_cube_next_adjacent.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -416,5 +406,15 @@ description: Artifact commands basic_fillet_cube_next_adjacent.kcl "tolerance": 0.0000001, "cut_type": "fillet" } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } } ] diff --git a/rust/kcl-lib/tests/basic_fillet_cube_next_adjacent/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/basic_fillet_cube_next_adjacent/artifact_graph_flowchart.snap.md index ade823fb0..32c367359 100644 --- a/rust/kcl-lib/tests/basic_fillet_cube_next_adjacent/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/basic_fillet_cube_next_adjacent/artifact_graph_flowchart.snap.md @@ -17,12 +17,12 @@ flowchart LR 13["Cap Start"] 14["Cap End"] 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] + 16["SweepEdge Opposite"] 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] + 18["SweepEdge Opposite"] + 19["SweepEdge Adjacent"] 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] + 21["SweepEdge Adjacent"] 22["SweepEdge Adjacent"] 23["EdgeCut Fillet
[238, 294, 0]"] 1 --- 2 @@ -30,24 +30,24 @@ flowchart LR 2 --- 4 2 --- 5 2 --- 6 - 2 ---- 8 2 --- 7 + 2 ---- 8 3 --- 12 - 3 --- 21 - 3 --- 22 3 x--> 13 - 4 --- 11 - 4 --- 19 - 4 --- 20 + 3 --- 17 + 3 --- 19 + 4 --- 10 4 x--> 13 - 5 --- 10 - 5 --- 17 - 5 --- 18 + 4 --- 18 + 4 --- 20 + 5 --- 9 5 x--> 13 - 6 --- 9 - 6 --- 15 - 6 --- 16 + 5 --- 15 + 5 --- 22 + 6 --- 11 6 x--> 13 + 6 --- 16 + 6 --- 21 8 --- 9 8 --- 10 8 --- 11 @@ -63,18 +63,18 @@ flowchart LR 8 --- 21 8 --- 22 15 <--x 9 - 15 <--x 14 - 17 <--x 10 - 17 <--x 14 - 18 <--x 9 + 20 <--x 9 + 22 <--x 9 18 <--x 10 - 19 <--x 11 - 19 <--x 14 + 19 <--x 10 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 14 + 16 <--x 11 22 <--x 11 - 22 <--x 12 - 16 <--x 23 + 17 <--x 12 + 19 <--x 12 + 15 <--x 14 + 16 <--x 14 + 17 <--x 14 + 18 <--x 14 + 21 <--x 23 ``` diff --git a/rust/kcl-lib/tests/basic_fillet_cube_previous_adjacent/artifact_commands.snap b/rust/kcl-lib/tests/basic_fillet_cube_previous_adjacent/artifact_commands.snap index a9e573da8..b085c5531 100644 --- a/rust/kcl-lib/tests/basic_fillet_cube_previous_adjacent/artifact_commands.snap +++ b/rust/kcl-lib/tests/basic_fillet_cube_previous_adjacent/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands basic_fillet_cube_previous_adjacent.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands basic_fillet_cube_previous_adjacent.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands basic_fillet_cube_previous_adjacent.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands basic_fillet_cube_previous_adjacent.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands basic_fillet_cube_previous_adjacent.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands basic_fillet_cube_previous_adjacent.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands basic_fillet_cube_previous_adjacent.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +375,6 @@ description: Artifact commands basic_fillet_cube_previous_adjacent.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,35 +389,7 @@ description: Artifact commands basic_fillet_cube_previous_adjacent.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_prev_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -416,5 +406,15 @@ description: Artifact commands basic_fillet_cube_previous_adjacent.kcl "tolerance": 0.0000001, "cut_type": "fillet" } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_prev_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } } ] diff --git a/rust/kcl-lib/tests/basic_fillet_cube_previous_adjacent/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/basic_fillet_cube_previous_adjacent/artifact_graph_flowchart.snap.md index 2724f1bcf..b440196db 100644 --- a/rust/kcl-lib/tests/basic_fillet_cube_previous_adjacent/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/basic_fillet_cube_previous_adjacent/artifact_graph_flowchart.snap.md @@ -17,12 +17,12 @@ flowchart LR 13["Cap Start"] 14["Cap End"] 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] + 16["SweepEdge Opposite"] 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] + 18["SweepEdge Opposite"] + 19["SweepEdge Adjacent"] 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] + 21["SweepEdge Adjacent"] 22["SweepEdge Adjacent"] 23["EdgeCut Fillet
[238, 298, 0]"] 1 --- 2 @@ -30,24 +30,24 @@ flowchart LR 2 --- 4 2 --- 5 2 --- 6 - 2 ---- 8 2 --- 7 + 2 ---- 8 3 --- 12 - 3 --- 21 - 3 --- 22 3 x--> 13 - 4 --- 11 - 4 --- 19 - 4 --- 20 + 3 --- 17 + 3 --- 20 + 4 --- 10 4 x--> 13 - 5 --- 10 - 5 --- 17 - 5 --- 18 + 4 --- 18 + 4 --- 21 + 5 --- 9 5 x--> 13 - 6 --- 9 - 6 --- 15 - 6 --- 16 + 5 --- 15 + 5 --- 22 + 6 --- 11 6 x--> 13 + 6 --- 16 + 6 --- 19 8 --- 9 8 --- 10 8 --- 11 @@ -63,20 +63,20 @@ flowchart LR 8 --- 21 8 --- 22 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 12 - 17 <--x 10 - 17 <--x 14 - 18 <--x 9 + 21 <--x 9 + 22 <--x 9 18 <--x 10 - 19 <--x 11 - 19 <--x 14 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 14 + 21 <--x 10 + 16 <--x 11 + 19 <--x 11 22 <--x 11 - 22 <--x 12 - 18 <--x 23 + 17 <--x 12 + 19 <--x 12 + 20 <--x 12 + 15 <--x 14 + 16 <--x 14 + 17 <--x 14 + 18 <--x 14 + 22 <--x 23 ``` diff --git a/rust/kcl-lib/tests/basic_fillet_cube_start/artifact_commands.snap b/rust/kcl-lib/tests/basic_fillet_cube_start/artifact_commands.snap index 6367d036d..8e7548cf3 100644 --- a/rust/kcl-lib/tests/basic_fillet_cube_start/artifact_commands.snap +++ b/rust/kcl-lib/tests/basic_fillet_cube_start/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands basic_fillet_cube_start.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands basic_fillet_cube_start.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands basic_fillet_cube_start.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands basic_fillet_cube_start.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands basic_fillet_cube_start.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands basic_fillet_cube_start.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands basic_fillet_cube_start.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +375,6 @@ description: Artifact commands basic_fillet_cube_start.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,30 +389,12 @@ description: Artifact commands basic_fillet_cube_start.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], diff --git a/rust/kcl-lib/tests/basic_fillet_cube_start/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/basic_fillet_cube_start/artifact_graph_flowchart.snap.md index a2171021e..f3da93c5b 100644 --- a/rust/kcl-lib/tests/basic_fillet_cube_start/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/basic_fillet_cube_start/artifact_graph_flowchart.snap.md @@ -17,12 +17,12 @@ flowchart LR 13["Cap Start"] 14["Cap End"] 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] + 16["SweepEdge Opposite"] 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] + 18["SweepEdge Opposite"] + 19["SweepEdge Adjacent"] 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] + 21["SweepEdge Adjacent"] 22["SweepEdge Adjacent"] 23["EdgeCut Fillet
[211, 253, 0]"] 24["EdgeCut Fillet
[211, 253, 0]"] @@ -31,26 +31,26 @@ flowchart LR 2 --- 4 2 --- 5 2 --- 6 - 2 ---- 8 2 --- 7 + 2 ---- 8 3 --- 12 - 3 --- 21 - 3 --- 22 - 3 --- 23 3 x--> 13 - 4 --- 11 - 4 --- 19 - 4 --- 20 + 3 --- 17 + 3 --- 20 + 3 --- 23 + 4 --- 10 4 x--> 13 - 5 --- 10 - 5 --- 17 - 5 --- 18 - 5 --- 24 + 4 --- 18 + 4 --- 21 + 5 --- 9 5 x--> 13 - 6 --- 9 - 6 --- 15 - 6 --- 16 + 5 --- 15 + 5 --- 22 + 5 --- 24 + 6 --- 11 6 x--> 13 + 6 --- 16 + 6 --- 19 8 --- 9 8 --- 10 8 --- 11 @@ -66,19 +66,19 @@ flowchart LR 8 --- 21 8 --- 22 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 12 - 17 <--x 10 - 17 <--x 14 - 18 <--x 9 + 21 <--x 9 + 22 <--x 9 18 <--x 10 - 19 <--x 11 - 19 <--x 14 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 14 + 21 <--x 10 + 16 <--x 11 + 19 <--x 11 22 <--x 11 - 22 <--x 12 + 17 <--x 12 + 19 <--x 12 + 20 <--x 12 + 15 <--x 14 + 16 <--x 14 + 17 <--x 14 + 18 <--x 14 ``` diff --git a/rust/kcl-lib/tests/circle_three_point/artifact_commands.snap b/rust/kcl-lib/tests/circle_three_point/artifact_commands.snap index a90a1e473..f597fbc9f 100644 --- a/rust/kcl-lib/tests/circle_three_point/artifact_commands.snap +++ b/rust/kcl-lib/tests/circle_three_point/artifact_commands.snap @@ -54,6 +54,14 @@ description: Artifact commands circle_three_point.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -70,33 +78,6 @@ description: Artifact commands circle_three_point.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 30.00594901040716, - "y": 19.75, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -126,8 +107,27 @@ description: Artifact commands circle_three_point.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 30.00594901040716, + "y": 19.75, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -157,13 +157,6 @@ description: Artifact commands circle_three_point.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -172,6 +165,40 @@ description: Artifact commands circle_three_point.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -181,34 +208,6 @@ description: Artifact commands circle_three_point.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -223,9 +222,10 @@ description: Artifact commands circle_three_point.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } } ] diff --git a/rust/kcl-lib/tests/circle_three_point/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/circle_three_point/artifact_graph_flowchart.snap.md index c536f7f71..ee77f5a3f 100644 --- a/rust/kcl-lib/tests/circle_three_point/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/circle_three_point/artifact_graph_flowchart.snap.md @@ -14,18 +14,18 @@ flowchart LR 10["SweepEdge Adjacent"] 1 --- 2 2 --- 3 - 2 ---- 5 2 --- 4 + 2 ---- 5 3 --- 6 + 3 x--> 7 3 --- 9 3 --- 10 - 3 x--> 7 5 --- 6 5 --- 7 5 --- 8 5 --- 9 5 --- 10 9 <--x 6 - 9 <--x 8 10 <--x 6 + 9 <--x 8 ``` diff --git a/rust/kcl-lib/tests/circular_pattern3d_a_pattern/artifact_commands.snap b/rust/kcl-lib/tests/circular_pattern3d_a_pattern/artifact_commands.snap index 57fb015d8..7b2b65bc5 100644 --- a/rust/kcl-lib/tests/circular_pattern3d_a_pattern/artifact_commands.snap +++ b/rust/kcl-lib/tests/circular_pattern3d_a_pattern/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands circular_pattern3d_a_pattern.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands circular_pattern3d_a_pattern.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands circular_pattern3d_a_pattern.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands circular_pattern3d_a_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands circular_pattern3d_a_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands circular_pattern3d_a_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands circular_pattern3d_a_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +375,6 @@ description: Artifact commands circular_pattern3d_a_pattern.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,30 +389,12 @@ description: Artifact commands circular_pattern3d_a_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], diff --git a/rust/kcl-lib/tests/circular_pattern3d_a_pattern/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/circular_pattern3d_a_pattern/artifact_graph_flowchart.snap.md index 0811c849c..291e1c8d6 100644 --- a/rust/kcl-lib/tests/circular_pattern3d_a_pattern/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/circular_pattern3d_a_pattern/artifact_graph_flowchart.snap.md @@ -17,36 +17,36 @@ flowchart LR 13["Cap Start"] 14["Cap End"] 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] + 16["SweepEdge Opposite"] 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] + 18["SweepEdge Opposite"] + 19["SweepEdge Adjacent"] 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] + 21["SweepEdge Adjacent"] 22["SweepEdge Adjacent"] 1 --- 2 2 --- 3 2 --- 4 2 --- 5 2 --- 6 - 2 ---- 8 2 --- 7 + 2 ---- 8 3 --- 12 - 3 --- 21 - 3 --- 22 3 x--> 13 - 4 --- 11 - 4 --- 19 - 4 --- 20 + 3 --- 17 + 3 --- 20 + 4 --- 10 4 x--> 13 - 5 --- 10 - 5 --- 17 - 5 --- 18 + 4 --- 18 + 4 --- 21 + 5 --- 9 5 x--> 13 - 6 --- 9 - 6 --- 15 - 6 --- 16 + 5 --- 15 + 5 --- 22 + 6 --- 11 6 x--> 13 + 6 --- 16 + 6 --- 19 8 --- 9 8 --- 10 8 --- 11 @@ -62,19 +62,19 @@ flowchart LR 8 --- 21 8 --- 22 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 12 - 17 <--x 10 - 17 <--x 14 - 18 <--x 9 + 21 <--x 9 + 22 <--x 9 18 <--x 10 - 19 <--x 11 - 19 <--x 14 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 14 + 21 <--x 10 + 16 <--x 11 + 19 <--x 11 22 <--x 11 - 22 <--x 12 + 17 <--x 12 + 19 <--x 12 + 20 <--x 12 + 15 <--x 14 + 16 <--x 14 + 17 <--x 14 + 18 <--x 14 ``` diff --git a/rust/kcl-lib/tests/crazy_multi_profile/artifact_commands.snap b/rust/kcl-lib/tests/crazy_multi_profile/artifact_commands.snap index f5cb4791a..651d87c07 100644 --- a/rust/kcl-lib/tests/crazy_multi_profile/artifact_commands.snap +++ b/rust/kcl-lib/tests/crazy_multi_profile/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands crazy_multi_profile.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands crazy_multi_profile.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands crazy_multi_profile.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,81 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +292,12 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,18 +312,10 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -273,43 +328,6 @@ description: Artifact commands crazy_multi_profile.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -324,30 +342,12 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -360,13 +360,6 @@ description: Artifact commands crazy_multi_profile.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -387,6 +380,13 @@ description: Artifact commands crazy_multi_profile.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -433,13 +433,6 @@ description: Artifact commands crazy_multi_profile.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -460,6 +453,13 @@ description: Artifact commands crazy_multi_profile.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -548,13 +548,6 @@ description: Artifact commands crazy_multi_profile.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -575,6 +568,13 @@ description: Artifact commands crazy_multi_profile.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -634,6 +634,14 @@ description: Artifact commands crazy_multi_profile.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -646,33 +654,6 @@ description: Artifact commands crazy_multi_profile.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 6.8100000000000005, - "y": 4.34, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -702,8 +683,27 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 6.8100000000000005, + "y": 4.34, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -718,13 +718,6 @@ description: Artifact commands crazy_multi_profile.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -745,6 +738,13 @@ description: Artifact commands crazy_multi_profile.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -808,10 +808,8 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -833,8 +831,81 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -850,30 +921,12 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -888,18 +941,10 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -916,39 +961,12 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -959,15 +977,6 @@ description: Artifact commands crazy_multi_profile.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -978,15 +987,6 @@ description: Artifact commands crazy_multi_profile.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1010,6 +1010,14 @@ description: Artifact commands crazy_multi_profile.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1021,8 +1029,81 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1038,30 +1119,12 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1076,18 +1139,10 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1100,43 +1155,6 @@ description: Artifact commands crazy_multi_profile.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1151,30 +1169,12 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1216,13 +1216,6 @@ description: Artifact commands crazy_multi_profile.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1243,6 +1236,13 @@ description: Artifact commands crazy_multi_profile.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1293,13 +1293,6 @@ description: Artifact commands crazy_multi_profile.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1320,6 +1313,13 @@ description: Artifact commands crazy_multi_profile.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1395,13 +1395,6 @@ description: Artifact commands crazy_multi_profile.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1422,6 +1415,13 @@ description: Artifact commands crazy_multi_profile.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1481,6 +1481,14 @@ description: Artifact commands crazy_multi_profile.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1497,33 +1505,6 @@ description: Artifact commands crazy_multi_profile.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 9.85, - "y": -2.11, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1553,8 +1534,27 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 9.85, + "y": -2.11, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -1573,13 +1573,6 @@ description: Artifact commands crazy_multi_profile.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1600,6 +1593,13 @@ description: Artifact commands crazy_multi_profile.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1703,6 +1703,14 @@ description: Artifact commands crazy_multi_profile.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1714,8 +1722,108 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1731,30 +1839,12 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1769,39 +1859,12 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1816,18 +1879,10 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1844,39 +1899,12 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1891,28 +1919,8 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -1934,8 +1942,81 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1951,30 +2032,12 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1989,18 +2052,10 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2013,43 +2068,6 @@ description: Artifact commands crazy_multi_profile.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2064,28 +2082,10 @@ description: Artifact commands crazy_multi_profile.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/crazy_multi_profile/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/crazy_multi_profile/artifact_graph_flowchart.snap.md index 84f14f702..a395dac63 100644 --- a/rust/kcl-lib/tests/crazy_multi_profile/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/crazy_multi_profile/artifact_graph_flowchart.snap.md @@ -1,349 +1,349 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[43, 86, 0]"] - 3["Segment
[92, 130, 0]"] - 4["Segment
[136, 175, 0]"] - 5["Segment
[181, 237, 0]"] - 6["Segment
[243, 250, 0]"] - 7[Solid2d] + subgraph path4 [Path] + 4["Path
[43, 86, 0]"] + 15["Segment
[92, 130, 0]"] + 16["Segment
[136, 175, 0]"] + 17["Segment
[181, 237, 0]"] + 18["Segment
[243, 250, 0]"] + 55[Solid2d] end - subgraph path20 [Path] - 20["Path
[362, 405, 0]"] - 21["Segment
[411, 435, 0]"] - 22["Segment
[441, 466, 0]"] + subgraph path5 [Path] + 5["Path
[362, 405, 0]"] + 19["Segment
[411, 435, 0]"] + 20["Segment
[441, 466, 0]"] end - subgraph path23 [Path] - 23["Path
[480, 522, 0]"] - 24["Segment
[528, 593, 0]"] - 25["Segment
[599, 667, 0]"] - 26["Segment
[673, 761, 0]"] - 27["Segment
[767, 823, 0]"] - 28["Segment
[829, 836, 0]"] - 29[Solid2d] + subgraph path6 [Path] + 6["Path
[480, 522, 0]"] + 21["Segment
[528, 593, 0]"] + 22["Segment
[599, 667, 0]"] + 23["Segment
[673, 761, 0]"] + 24["Segment
[767, 823, 0]"] + 25["Segment
[829, 836, 0]"] + 56[Solid2d] end - subgraph path30 [Path] - 30["Path
[850, 892, 0]"] - 31["Segment
[898, 918, 0]"] - 32["Segment
[924, 950, 0]"] - 33["Segment
[956, 1012, 0]"] - 34["Segment
[1018, 1025, 0]"] - 35[Solid2d] + subgraph path7 [Path] + 7["Path
[850, 892, 0]"] + 26["Segment
[898, 918, 0]"] + 27["Segment
[924, 950, 0]"] + 28["Segment
[956, 1012, 0]"] + 29["Segment
[1018, 1025, 0]"] + 52[Solid2d] end - subgraph path36 [Path] - 36["Path
[1039, 1094, 0]"] - 37["Segment
[1039, 1094, 0]"] - 38[Solid2d] + subgraph path8 [Path] + 8["Path
[1039, 1094, 0]"] + 30["Segment
[1039, 1094, 0]"] + 57[Solid2d] end - subgraph path39 [Path] - 39["Path
[1108, 1150, 0]"] - 40["Segment
[1156, 1180, 0]"] - 41["Segment
[1186, 1211, 0]"] - 42["Segment
[1217, 1273, 0]"] - 43["Segment
[1279, 1286, 0]"] - 44[Solid2d] + subgraph path9 [Path] + 9["Path
[1108, 1150, 0]"] + 31["Segment
[1156, 1180, 0]"] + 32["Segment
[1186, 1211, 0]"] + 33["Segment
[1217, 1273, 0]"] + 34["Segment
[1279, 1286, 0]"] + 54[Solid2d] end - subgraph path59 [Path] - 59["Path
[1456, 1497, 0]"] - 60["Segment
[1503, 1527, 0]"] - 61["Segment
[1533, 1558, 0]"] + subgraph path10 [Path] + 10["Path
[1456, 1497, 0]"] + 35["Segment
[1503, 1527, 0]"] + 36["Segment
[1533, 1558, 0]"] end - subgraph path62 [Path] - 62["Path
[1572, 1614, 0]"] - 63["Segment
[1620, 1644, 0]"] - 64["Segment
[1650, 1675, 0]"] - 65["Segment
[1681, 1737, 0]"] - 66["Segment
[1743, 1750, 0]"] - 67[Solid2d] + subgraph path11 [Path] + 11["Path
[1572, 1614, 0]"] + 37["Segment
[1620, 1644, 0]"] + 38["Segment
[1650, 1675, 0]"] + 39["Segment
[1681, 1737, 0]"] + 40["Segment
[1743, 1750, 0]"] + 51[Solid2d] end - subgraph path68 [Path] - 68["Path
[1764, 1806, 0]"] - 69["Segment
[1812, 1835, 0]"] - 70["Segment
[1841, 1866, 0]"] - 71["Segment
[1872, 1928, 0]"] - 72["Segment
[1934, 1941, 0]"] - 73[Solid2d] + subgraph path12 [Path] + 12["Path
[1764, 1806, 0]"] + 41["Segment
[1812, 1835, 0]"] + 42["Segment
[1841, 1866, 0]"] + 43["Segment
[1872, 1928, 0]"] + 44["Segment
[1934, 1941, 0]"] + 53[Solid2d] end - subgraph path74 [Path] - 74["Path
[1955, 2011, 0]"] - 75["Segment
[1955, 2011, 0]"] - 76[Solid2d] + subgraph path13 [Path] + 13["Path
[1955, 2011, 0]"] + 45["Segment
[1955, 2011, 0]"] + 59[Solid2d] end - subgraph path77 [Path] - 77["Path
[2025, 2068, 0]"] - 78["Segment
[2074, 2139, 0]"] - 79["Segment
[2145, 2213, 0]"] - 80["Segment
[2219, 2307, 0]"] - 81["Segment
[2313, 2369, 0]"] - 82["Segment
[2375, 2382, 0]"] - 83[Solid2d] + subgraph path14 [Path] + 14["Path
[2025, 2068, 0]"] + 46["Segment
[2074, 2139, 0]"] + 47["Segment
[2145, 2213, 0]"] + 48["Segment
[2219, 2307, 0]"] + 49["Segment
[2313, 2369, 0]"] + 50["Segment
[2375, 2382, 0]"] + 58[Solid2d] end 1["Plane
[12, 29, 0]"] - 8["Sweep Extrusion
[264, 296, 0]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12["Cap Start"] - 13["Cap End"] - 14["SweepEdge Opposite"] - 15["SweepEdge Adjacent"] - 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] - 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 45["Sweep RevolveAboutEdge
[1300, 1366, 0]"] - 46["Sweep Extrusion
[1380, 1411, 0]"] - 47[Wall] - 48[Wall] - 49[Wall] - 50["Cap Start"] - 51["Cap End"] - 52["SweepEdge Opposite"] - 53["SweepEdge Adjacent"] - 54["SweepEdge Opposite"] - 55["SweepEdge Adjacent"] - 56["SweepEdge Opposite"] - 57["SweepEdge Adjacent"] - 58["Plane
[1424, 1442, 0]"] - 84["Sweep Extrusion
[2396, 2429, 0]"] - 85[Wall] - 86[Wall] - 87[Wall] - 88[Wall] - 89["Cap Start"] - 90["Cap End"] + 2["Plane
[1424, 1442, 0]"] + 3["StartSketchOnFace
[309, 348, 0]"] + 60["Sweep Extrusion
[264, 296, 0]"] + 61["Sweep RevolveAboutEdge
[1300, 1366, 0]"] + 62["Sweep Extrusion
[1380, 1411, 0]"] + 63["Sweep Extrusion
[2396, 2429, 0]"] + 64["Sweep RevolveAboutEdge
[2443, 2488, 0]"] + 65[Wall] + 66[Wall] + 67[Wall] + 68[Wall] + 69[Wall] + 70[Wall] + 71[Wall] + 72[Wall] + 73[Wall] + 74[Wall] + 75[Wall] + 76[Wall] + 77[Wall] + 78["Cap Start"] + 79["Cap Start"] + 80["Cap Start"] + 81["Cap Start"] + 82["Cap End"] + 83["Cap End"] + 84["Cap End"] + 85["Cap End"] + 86["SweepEdge Opposite"] + 87["SweepEdge Opposite"] + 88["SweepEdge Opposite"] + 89["SweepEdge Opposite"] + 90["SweepEdge Opposite"] 91["SweepEdge Opposite"] - 92["SweepEdge Adjacent"] + 92["SweepEdge Opposite"] 93["SweepEdge Opposite"] - 94["SweepEdge Adjacent"] + 94["SweepEdge Opposite"] 95["SweepEdge Opposite"] - 96["SweepEdge Adjacent"] + 96["SweepEdge Opposite"] 97["SweepEdge Opposite"] - 98["SweepEdge Adjacent"] - 99["Sweep RevolveAboutEdge
[2443, 2488, 0]"] - 100[Wall] - 101[Wall] - 102[Wall] - 103["Cap Start"] - 104["Cap End"] - 105["SweepEdge Opposite"] + 98["SweepEdge Opposite"] + 99["SweepEdge Adjacent"] + 100["SweepEdge Adjacent"] + 101["SweepEdge Adjacent"] + 102["SweepEdge Adjacent"] + 103["SweepEdge Adjacent"] + 104["SweepEdge Adjacent"] + 105["SweepEdge Adjacent"] 106["SweepEdge Adjacent"] - 107["SweepEdge Opposite"] + 107["SweepEdge Adjacent"] 108["SweepEdge Adjacent"] - 109["SweepEdge Opposite"] + 109["SweepEdge Adjacent"] 110["SweepEdge Adjacent"] - 111["StartSketchOnFace
[309, 348, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 11 - 3 --- 18 - 3 --- 19 - 3 x--> 12 - 4 --- 10 + 111["SweepEdge Adjacent"] + 1 --- 4 + 2 --- 10 + 2 --- 11 + 2 --- 12 + 2 --- 13 + 2 --- 14 + 70 x--> 3 + 4 --- 15 4 --- 16 4 --- 17 - 4 x--> 12 - 5 --- 9 - 5 --- 14 - 5 --- 15 - 5 x--> 12 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 - 8 --- 16 - 8 --- 17 - 8 --- 18 - 8 --- 19 - 10 --- 20 - 10 --- 23 - 10 --- 30 + 4 --- 18 + 4 --- 55 + 4 ---- 60 + 5 --- 19 + 5 --- 20 + 70 --- 5 + 6 --- 21 + 6 --- 22 + 6 --- 23 + 6 --- 24 + 6 --- 25 + 6 --- 56 + 70 --- 6 + 7 --- 26 + 7 --- 27 + 7 --- 28 + 7 --- 29 + 7 --- 52 + 7 ---- 61 + 70 --- 7 + 8 --- 30 + 8 --- 57 + 70 --- 8 + 9 --- 31 + 9 --- 32 + 9 --- 33 + 9 --- 34 + 9 --- 54 + 9 ---- 62 + 70 --- 9 + 10 --- 35 10 --- 36 - 10 --- 39 - 14 <--x 9 - 14 <--x 13 - 15 <--x 9 - 15 <--x 11 - 16 <--x 10 - 16 <--x 13 - 17 <--x 9 - 17 <--x 10 - 18 <--x 11 - 18 <--x 13 - 19 <--x 10 - 19 <--x 11 - 20 --- 21 - 20 --- 22 - 23 --- 24 - 23 --- 25 - 23 --- 26 - 23 --- 27 - 23 --- 28 - 23 --- 29 - 30 --- 31 - 30 --- 32 - 30 --- 33 - 30 --- 34 - 30 ---- 45 - 30 --- 35 - 36 --- 37 - 36 --- 38 - 39 --- 40 - 39 --- 41 - 39 --- 42 - 39 --- 43 - 39 ---- 46 - 39 --- 44 - 40 --- 49 - 40 --- 56 - 40 --- 57 - 40 x--> 50 - 41 --- 48 - 41 --- 54 - 41 --- 55 - 41 x--> 50 - 42 --- 47 - 42 --- 52 - 42 --- 53 - 42 x--> 50 - 46 --- 47 - 46 --- 48 - 46 --- 49 - 46 --- 50 - 46 --- 51 - 46 --- 52 - 46 --- 53 - 46 --- 54 - 46 --- 55 - 46 --- 56 - 46 --- 57 - 52 <--x 47 - 52 <--x 51 - 53 <--x 47 - 53 <--x 49 - 54 <--x 48 - 54 <--x 51 - 55 <--x 47 - 55 <--x 48 - 56 <--x 49 - 56 <--x 51 - 57 <--x 48 - 57 <--x 49 - 58 --- 59 - 58 --- 62 - 58 --- 68 - 58 --- 74 - 58 --- 77 - 59 --- 60 - 59 --- 61 - 62 --- 63 - 62 --- 64 + 11 --- 37 + 11 --- 38 + 11 --- 39 + 11 --- 40 + 11 --- 51 + 11 ---- 64 + 12 --- 41 + 12 --- 42 + 12 --- 43 + 12 --- 44 + 12 --- 53 + 13 --- 45 + 13 --- 59 + 14 --- 46 + 14 --- 47 + 14 --- 48 + 14 --- 49 + 14 --- 50 + 14 --- 58 + 14 ---- 63 + 15 --- 69 + 15 x--> 79 + 15 --- 89 + 15 --- 103 + 16 --- 70 + 16 x--> 79 + 16 --- 91 + 16 --- 104 + 17 --- 68 + 17 x--> 79 + 17 --- 90 + 17 --- 102 + 31 --- 65 + 31 x--> 78 + 31 --- 88 + 31 --- 100 + 32 --- 67 + 32 x--> 78 + 32 --- 86 + 32 --- 99 + 33 --- 66 + 33 x--> 78 + 33 --- 87 + 33 --- 101 + 37 --- 72 + 37 x--> 80 + 37 --- 94 + 37 --- 106 + 38 --- 73 + 38 x--> 80 + 38 --- 93 + 38 --- 107 + 39 --- 71 + 39 x--> 80 + 39 --- 92 + 39 --- 105 + 46 --- 75 + 46 x--> 81 + 46 --- 95 + 46 --- 108 + 47 --- 76 + 47 x--> 81 + 47 --- 97 + 47 --- 109 + 48 --- 74 + 48 x--> 81 + 48 --- 98 + 48 --- 111 + 49 --- 77 + 49 x--> 81 + 49 --- 96 + 49 --- 110 + 60 --- 68 + 60 --- 69 + 60 --- 70 + 60 --- 79 + 60 --- 83 + 60 --- 89 + 60 --- 90 + 60 --- 91 + 60 --- 102 + 60 --- 103 + 60 --- 104 62 --- 65 62 --- 66 - 62 ---- 99 62 --- 67 - 63 --- 100 - 63 --- 105 - 63 --- 106 - 63 x--> 103 - 64 --- 101 + 62 --- 78 + 62 --- 82 + 62 --- 86 + 62 --- 87 + 62 --- 88 + 62 --- 99 + 62 --- 100 + 62 --- 101 + 63 --- 74 + 63 --- 75 + 63 --- 76 + 63 --- 77 + 63 --- 81 + 63 --- 85 + 63 --- 95 + 63 --- 96 + 63 --- 97 + 63 --- 98 + 63 --- 108 + 63 --- 109 + 63 --- 110 + 63 --- 111 + 64 --- 71 + 64 --- 72 + 64 --- 73 + 64 --- 80 + 64 --- 84 + 64 --- 92 + 64 --- 93 + 64 --- 94 + 64 --- 105 + 64 --- 106 64 --- 107 - 64 --- 108 - 64 x--> 103 - 65 --- 102 - 65 --- 109 - 65 --- 110 - 65 x--> 103 - 68 --- 69 - 68 --- 70 - 68 --- 71 - 68 --- 72 - 68 --- 73 - 74 --- 75 - 74 --- 76 - 77 --- 78 - 77 --- 79 - 77 --- 80 - 77 --- 81 - 77 --- 82 - 77 ---- 84 - 77 --- 83 - 78 --- 88 - 78 --- 97 - 78 --- 98 - 78 x--> 89 - 79 --- 87 - 79 --- 95 - 79 --- 96 - 79 x--> 89 - 80 --- 86 - 80 --- 93 - 80 --- 94 - 80 x--> 89 - 81 --- 85 - 81 --- 91 - 81 --- 92 - 81 x--> 89 - 84 --- 85 - 84 --- 86 - 84 --- 87 - 84 --- 88 - 84 --- 89 - 84 --- 90 - 84 --- 91 - 84 --- 92 - 84 --- 93 - 84 --- 94 - 84 --- 95 - 84 --- 96 - 84 --- 97 - 84 --- 98 - 91 <--x 85 - 91 <--x 90 - 92 <--x 85 - 92 <--x 88 - 93 <--x 86 - 93 <--x 90 - 94 <--x 85 - 94 <--x 86 - 95 <--x 87 - 95 <--x 90 - 96 <--x 86 - 96 <--x 87 - 97 <--x 88 - 97 <--x 90 - 98 <--x 87 - 98 <--x 88 - 99 --- 100 - 99 --- 101 - 99 --- 102 - 99 --- 103 - 99 --- 104 - 99 --- 105 - 99 --- 106 - 99 --- 107 - 99 --- 108 - 99 --- 109 - 99 --- 110 - 105 <--x 100 - 105 <--x 104 - 106 <--x 100 - 106 <--x 101 - 107 <--x 101 - 107 <--x 104 - 108 <--x 101 - 108 <--x 102 - 109 <--x 102 - 109 <--x 104 - 110 <--x 102 - 110 <--x 100 - 10 <--x 111 + 88 <--x 65 + 100 <--x 65 + 101 <--x 65 + 87 <--x 66 + 99 <--x 66 + 101 <--x 66 + 86 <--x 67 + 99 <--x 67 + 100 <--x 67 + 90 <--x 68 + 102 <--x 68 + 104 <--x 68 + 89 <--x 69 + 102 <--x 69 + 103 <--x 69 + 91 <--x 70 + 103 <--x 70 + 104 <--x 70 + 92 <--x 71 + 105 <--x 71 + 107 <--x 71 + 94 <--x 72 + 105 <--x 72 + 106 <--x 72 + 93 <--x 73 + 106 <--x 73 + 107 <--x 73 + 98 <--x 74 + 109 <--x 74 + 111 <--x 74 + 95 <--x 75 + 108 <--x 75 + 110 <--x 75 + 97 <--x 76 + 108 <--x 76 + 109 <--x 76 + 96 <--x 77 + 110 <--x 77 + 111 <--x 77 + 86 <--x 82 + 87 <--x 82 + 88 <--x 82 + 89 <--x 83 + 90 <--x 83 + 91 <--x 83 + 92 <--x 84 + 93 <--x 84 + 94 <--x 84 + 95 <--x 85 + 96 <--x 85 + 97 <--x 85 + 98 <--x 85 ``` diff --git a/rust/kcl-lib/tests/cube/artifact_commands.snap b/rust/kcl-lib/tests/cube/artifact_commands.snap index b3a1f8290..1e4ddc8ea 100644 --- a/rust/kcl-lib/tests/cube/artifact_commands.snap +++ b/rust/kcl-lib/tests/cube/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands cube.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands cube.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -200,6 +200,14 @@ description: Artifact commands cube.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -211,8 +219,108 @@ description: Artifact commands cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -228,30 +336,12 @@ description: Artifact commands cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -266,39 +356,12 @@ description: Artifact commands cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -313,18 +376,10 @@ description: Artifact commands cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -337,43 +392,6 @@ description: Artifact commands cube.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -388,28 +406,10 @@ description: Artifact commands cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/cube/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/cube/artifact_graph_flowchart.snap.md index b6fb35b64..717b614b3 100644 --- a/rust/kcl-lib/tests/cube/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/cube/artifact_graph_flowchart.snap.md @@ -18,12 +18,12 @@ flowchart LR 14["Cap Start"] 15["Cap End"] 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] + 17["SweepEdge Opposite"] 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 20["SweepEdge Opposite"] + 19["SweepEdge Opposite"] + 20["SweepEdge Adjacent"] 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] + 22["SweepEdge Adjacent"] 23["SweepEdge Adjacent"] 1 --- 2 2 --- 3 @@ -31,24 +31,24 @@ flowchart LR 2 --- 5 2 --- 6 2 --- 7 - 2 ---- 9 2 --- 8 + 2 ---- 9 3 --- 13 - 3 --- 22 - 3 --- 23 3 x--> 14 - 4 --- 12 - 4 --- 20 - 4 --- 21 + 3 --- 17 + 3 --- 20 + 4 --- 11 4 x--> 14 - 5 --- 11 - 5 --- 18 - 5 --- 19 + 4 --- 18 + 4 --- 22 + 5 --- 10 5 x--> 14 - 6 --- 10 - 6 --- 16 - 6 --- 17 + 5 --- 19 + 5 --- 21 + 6 --- 12 6 x--> 14 + 6 --- 16 + 6 --- 23 9 --- 10 9 --- 11 9 --- 12 @@ -63,20 +63,20 @@ flowchart LR 9 --- 21 9 --- 22 9 --- 23 - 16 <--x 10 - 16 <--x 15 - 17 <--x 10 - 17 <--x 13 - 18 <--x 11 - 18 <--x 15 19 <--x 10 - 19 <--x 11 - 20 <--x 12 - 20 <--x 15 - 21 <--x 11 + 21 <--x 10 + 22 <--x 10 + 18 <--x 11 + 20 <--x 11 + 22 <--x 11 + 16 <--x 12 21 <--x 12 - 22 <--x 13 - 22 <--x 15 23 <--x 12 + 17 <--x 13 + 20 <--x 13 23 <--x 13 + 16 <--x 15 + 17 <--x 15 + 18 <--x 15 + 19 <--x 15 ``` diff --git a/rust/kcl-lib/tests/cube/ops.snap b/rust/kcl-lib/tests/cube/ops.snap index 52b73080b..92c526aae 100644 --- a/rust/kcl-lib/tests/cube/ops.snap +++ b/rust/kcl-lib/tests/cube/ops.snap @@ -3,6 +3,53 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed cube.kcl --- [ + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 40.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, { "type": "GroupBegin", "group": { @@ -65,53 +112,6 @@ description: Operations executed cube.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 40.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/cube_with_error/artifact_commands.snap b/rust/kcl-lib/tests/cube_with_error/artifact_commands.snap index 11377268c..5ed5d415e 100644 --- a/rust/kcl-lib/tests/cube_with_error/artifact_commands.snap +++ b/rust/kcl-lib/tests/cube_with_error/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands cube_with_error.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands cube_with_error.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -200,6 +200,14 @@ description: Artifact commands cube_with_error.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -211,8 +219,108 @@ description: Artifact commands cube_with_error.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -228,30 +336,12 @@ description: Artifact commands cube_with_error.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -266,39 +356,12 @@ description: Artifact commands cube_with_error.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -313,18 +376,10 @@ description: Artifact commands cube_with_error.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -337,43 +392,6 @@ description: Artifact commands cube_with_error.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -388,28 +406,10 @@ description: Artifact commands cube_with_error.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/cube_with_error/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/cube_with_error/artifact_graph_flowchart.snap.md index 46ce468fb..f8b9be4fc 100644 --- a/rust/kcl-lib/tests/cube_with_error/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/cube_with_error/artifact_graph_flowchart.snap.md @@ -18,12 +18,12 @@ flowchart LR 14["Cap Start"] 15["Cap End"] 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] + 17["SweepEdge Opposite"] 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 20["SweepEdge Opposite"] + 19["SweepEdge Opposite"] + 20["SweepEdge Adjacent"] 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] + 22["SweepEdge Adjacent"] 23["SweepEdge Adjacent"] 1 --- 2 2 --- 3 @@ -31,24 +31,24 @@ flowchart LR 2 --- 5 2 --- 6 2 --- 7 - 2 ---- 9 2 --- 8 + 2 ---- 9 3 --- 13 - 3 --- 22 - 3 --- 23 3 x--> 14 - 4 --- 12 - 4 --- 20 - 4 --- 21 + 3 --- 17 + 3 --- 20 + 4 --- 11 4 x--> 14 - 5 --- 11 - 5 --- 18 - 5 --- 19 + 4 --- 18 + 4 --- 22 + 5 --- 10 5 x--> 14 - 6 --- 10 - 6 --- 16 - 6 --- 17 + 5 --- 19 + 5 --- 21 + 6 --- 12 6 x--> 14 + 6 --- 16 + 6 --- 23 9 --- 10 9 --- 11 9 --- 12 @@ -63,20 +63,20 @@ flowchart LR 9 --- 21 9 --- 22 9 --- 23 - 16 <--x 10 - 16 <--x 15 - 17 <--x 10 - 17 <--x 13 - 18 <--x 11 - 18 <--x 15 19 <--x 10 - 19 <--x 11 - 20 <--x 12 - 20 <--x 15 - 21 <--x 11 + 21 <--x 10 + 22 <--x 10 + 18 <--x 11 + 20 <--x 11 + 22 <--x 11 + 16 <--x 12 21 <--x 12 - 22 <--x 13 - 22 <--x 15 23 <--x 12 + 17 <--x 13 + 20 <--x 13 23 <--x 13 + 16 <--x 15 + 17 <--x 15 + 18 <--x 15 + 19 <--x 15 ``` diff --git a/rust/kcl-lib/tests/cube_with_error/ops.snap b/rust/kcl-lib/tests/cube_with_error/ops.snap index cd63f1e75..756b2d2d3 100644 --- a/rust/kcl-lib/tests/cube_with_error/ops.snap +++ b/rust/kcl-lib/tests/cube_with_error/ops.snap @@ -3,17 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed cube_with_error.kcl --- [ - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cube", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -61,6 +50,17 @@ description: Operations executed cube_with_error.kcl "sourceRange": [] } }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/fillet-and-shell/artifact_commands.snap b/rust/kcl-lib/tests/fillet-and-shell/artifact_commands.snap index bd10c0719..7a24b4b06 100644 --- a/rust/kcl-lib/tests/fillet-and-shell/artifact_commands.snap +++ b/rust/kcl-lib/tests/fillet-and-shell/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands fillet-and-shell.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands fillet-and-shell.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -197,13 +197,6 @@ description: Artifact commands fillet-and-shell.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -224,6 +217,13 @@ description: Artifact commands fillet-and-shell.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -310,6 +310,14 @@ description: Artifact commands fillet-and-shell.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -321,8 +329,108 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -338,30 +446,12 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -376,39 +466,12 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -423,18 +486,10 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -451,39 +506,12 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -498,28 +526,48 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", "edge_id": "[uuid]", - "face_id": "[uuid]" + "radius": 1.0, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "radius": 1.0, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 1.0, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 1.0, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { @@ -587,6 +635,81 @@ description: Artifact commands fillet-and-shell.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -607,7 +730,87 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } } }, { @@ -630,6 +833,87 @@ description: Artifact commands fillet-and-shell.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -650,19 +934,15 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 10.0, - "y": 7.5, - "z": 0.0 + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 } } }, @@ -670,7 +950,32 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { @@ -698,364 +1003,6 @@ description: Artifact commands fillet-and-shell.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 8.75, - "y": 7.5, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 7.5, - "y": 7.5 - }, - "radius": 1.25, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 4.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 10.0, - "y": 65.5, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1081,57 +1028,6 @@ description: Artifact commands fillet-and-shell.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 8.75, - "y": 65.5, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1141,10 +1037,10 @@ description: Artifact commands fillet-and-shell.kcl "segment": { "type": "arc", "center": { - "x": 7.5, + "x": 30.5, "y": 65.5 }, - "radius": 1.25, + "radius": 2.5, "start": { "unit": "degrees", "value": 0.0 @@ -1161,221 +1057,27 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 30.5, + "y": 7.5 + }, + "radius": 2.5, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 4.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1383,8 +1085,8 @@ description: Artifact commands fillet-and-shell.kcl "type": "move_path_pen", "path": "[uuid]", "to": { - "x": 0.0, - "y": 0.0, + "x": 10.0, + "y": 7.5, "z": 0.0 } } @@ -1393,32 +1095,15 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 10.0, + "y": 65.5, + "z": 0.0 } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1432,376 +1117,6 @@ description: Artifact commands fillet-and-shell.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 30.5, - "y": 65.5 - }, - "radius": 2.5, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 31.75, - "y": 65.5, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 30.5, - "y": 65.5 - }, - "radius": 1.25, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 4.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1826,25 +1141,145 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 30.5, - "y": 7.5 - }, - "radius": 2.5, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -1875,19 +1310,15 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 31.75, - "y": 7.5, - "z": 0.0 + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 } } }, @@ -1895,7 +1326,107 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 7.5, + "y": 7.5 + }, + "radius": 1.25, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 7.5, + "y": 65.5 + }, + "radius": 1.25, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 30.5, + "y": 65.5 + }, + "radius": 1.25, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } } }, { @@ -1927,26 +1458,156 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 8.75, + "y": 7.5, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 8.75, + "y": 65.5, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 31.75, + "y": 65.5, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 31.75, + "y": 7.5, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { @@ -1980,7 +1641,33 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 4.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 4.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 4.0, + "faces": null, + "opposite": "None" } }, { @@ -1991,6 +1678,274 @@ description: Artifact commands fillet-and-shell.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2004,7 +1959,7 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2013,17 +1968,16 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2042,39 +1996,12 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2089,57 +2016,130 @@ description: Artifact commands fillet-and-shell.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_fillet_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", - "radius": 1.0, - "tolerance": 0.0000001, - "cut_type": "fillet" + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_fillet_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", - "radius": 1.0, - "tolerance": 0.0000001, - "cut_type": "fillet" + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_fillet_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", - "radius": 1.0, - "tolerance": 0.0000001, - "cut_type": "fillet" + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_fillet_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", - "radius": 1.0, - "tolerance": 0.0000001, - "cut_type": "fillet" + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { diff --git a/rust/kcl-lib/tests/fillet-and-shell/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/fillet-and-shell/artifact_graph_flowchart.snap.md index 525694077..a40e528fb 100644 --- a/rust/kcl-lib/tests/fillet-and-shell/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/fillet-and-shell/artifact_graph_flowchart.snap.md @@ -1,255 +1,255 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[396, 467, 0]"] - 3["Segment
[473, 564, 0]"] - 4["Segment
[570, 661, 0]"] - 5["Segment
[667, 760, 0]"] - 6["Segment
[766, 774, 0]"] - 7[Solid2d] + subgraph path7 [Path] + 7["Path
[396, 467, 0]"] + 21["Segment
[473, 564, 0]"] + 22["Segment
[570, 661, 0]"] + 23["Segment
[667, 760, 0]"] + 24["Segment
[766, 774, 0]"] + 40[Solid2d] + end + subgraph path8 [Path] + 8["Path
[808, 833, 0]"] + 25["Segment
[839, 887, 0]"] + 26["Segment
[893, 950, 0]"] + 27["Segment
[956, 1005, 0]"] + 28["Segment
[1011, 1030, 0]"] + 45[Solid2d] end subgraph path9 [Path] - 9["Path
[808, 833, 0]"] - 10["Segment
[839, 887, 0]"] - 11["Segment
[893, 950, 0]"] - 12["Segment
[956, 1005, 0]"] - 13["Segment
[1011, 1030, 0]"] - 14[Solid2d] + 9["Path
[1343, 1368, 0]"] end - subgraph path31 [Path] - 31["Path
[1343, 1368, 0]"] + subgraph path10 [Path] + 10["Path
[1343, 1368, 0]"] end - subgraph path32 [Path] - 32["Path
[1376, 1413, 0]"] - 33["Segment
[1376, 1413, 0]"] - 34[Solid2d] + subgraph path11 [Path] + 11["Path
[1343, 1368, 0]"] end - subgraph path35 [Path] - 35["Path
[1439, 1477, 0]"] - 36["Segment
[1439, 1477, 0]"] + subgraph path12 [Path] + 12["Path
[1343, 1368, 0]"] + end + subgraph path13 [Path] + 13["Path
[1376, 1413, 0]"] + 29["Segment
[1376, 1413, 0]"] + 38[Solid2d] + end + subgraph path14 [Path] + 14["Path
[1376, 1413, 0]"] + 31["Segment
[1376, 1413, 0]"] + 42[Solid2d] + end + subgraph path15 [Path] + 15["Path
[1376, 1413, 0]"] + 30["Segment
[1376, 1413, 0]"] + 44[Solid2d] + end + subgraph path16 [Path] + 16["Path
[1376, 1413, 0]"] + 32["Segment
[1376, 1413, 0]"] + 46[Solid2d] + end + subgraph path17 [Path] + 17["Path
[1439, 1477, 0]"] + 35["Segment
[1439, 1477, 0]"] 37[Solid2d] end - subgraph path45 [Path] - 45["Path
[1343, 1368, 0]"] + subgraph path18 [Path] + 18["Path
[1439, 1477, 0]"] + 34["Segment
[1439, 1477, 0]"] + 39[Solid2d] end - subgraph path46 [Path] - 46["Path
[1376, 1413, 0]"] - 47["Segment
[1376, 1413, 0]"] - 48[Solid2d] + subgraph path19 [Path] + 19["Path
[1439, 1477, 0]"] + 36["Segment
[1439, 1477, 0]"] + 41[Solid2d] end - subgraph path49 [Path] - 49["Path
[1439, 1477, 0]"] - 50["Segment
[1439, 1477, 0]"] - 51[Solid2d] - end - subgraph path59 [Path] - 59["Path
[1343, 1368, 0]"] - end - subgraph path60 [Path] - 60["Path
[1376, 1413, 0]"] - 61["Segment
[1376, 1413, 0]"] - 62[Solid2d] - end - subgraph path63 [Path] - 63["Path
[1439, 1477, 0]"] - 64["Segment
[1439, 1477, 0]"] - 65[Solid2d] - end - subgraph path73 [Path] - 73["Path
[1343, 1368, 0]"] - end - subgraph path74 [Path] - 74["Path
[1376, 1413, 0]"] - 75["Segment
[1376, 1413, 0]"] - 76[Solid2d] - end - subgraph path77 [Path] - 77["Path
[1439, 1477, 0]"] - 78["Segment
[1439, 1477, 0]"] - 79[Solid2d] + subgraph path20 [Path] + 20["Path
[1439, 1477, 0]"] + 33["Segment
[1439, 1477, 0]"] + 43[Solid2d] end 1["Plane
[373, 390, 0]"] - 8["Plane
[783, 802, 0]"] - 15["Sweep Extrusion
[1036, 1064, 0]"] - 16[Wall] - 17[Wall] - 18[Wall] - 19[Wall] - 20["Cap Start"] - 21["Cap End"] - 22["SweepEdge Opposite"] - 23["SweepEdge Adjacent"] - 24["SweepEdge Opposite"] - 25["SweepEdge Adjacent"] - 26["SweepEdge Opposite"] - 27["SweepEdge Adjacent"] - 28["SweepEdge Opposite"] - 29["SweepEdge Adjacent"] - 30["Plane
[1316, 1335, 0]"] - 38["Sweep Extrusion
[1486, 1510, 0]"] - 39[Wall] - 40["Cap Start"] - 41["Cap End"] - 42["SweepEdge Opposite"] - 43["SweepEdge Adjacent"] - 44["Plane
[1316, 1335, 0]"] - 52["Sweep Extrusion
[1486, 1510, 0]"] + 2["Plane
[783, 802, 0]"] + 3["Plane
[1316, 1335, 0]"] + 4["Plane
[1316, 1335, 0]"] + 5["Plane
[1316, 1335, 0]"] + 6["Plane
[1316, 1335, 0]"] + 47["Sweep Extrusion
[1036, 1064, 0]"] + 48["Sweep Extrusion
[1486, 1510, 0]"] + 49["Sweep Extrusion
[1486, 1510, 0]"] + 50["Sweep Extrusion
[1486, 1510, 0]"] + 51["Sweep Extrusion
[1486, 1510, 0]"] + 52[Wall] 53[Wall] - 54["Cap Start"] - 55["Cap End"] - 56["SweepEdge Opposite"] - 57["SweepEdge Adjacent"] - 58["Plane
[1316, 1335, 0]"] - 66["Sweep Extrusion
[1486, 1510, 0]"] - 67[Wall] - 68["Cap Start"] + 54[Wall] + 55[Wall] + 56[Wall] + 57[Wall] + 58[Wall] + 59[Wall] + 60["Cap Start"] + 61["Cap Start"] + 62["Cap Start"] + 63["Cap Start"] + 64["Cap Start"] + 65["Cap End"] + 66["Cap End"] + 67["Cap End"] + 68["Cap End"] 69["Cap End"] 70["SweepEdge Opposite"] - 71["SweepEdge Adjacent"] - 72["Plane
[1316, 1335, 0]"] - 80["Sweep Extrusion
[1486, 1510, 0]"] - 81[Wall] - 82["Cap Start"] - 83["Cap End"] - 84["SweepEdge Opposite"] + 71["SweepEdge Opposite"] + 72["SweepEdge Opposite"] + 73["SweepEdge Opposite"] + 74["SweepEdge Opposite"] + 75["SweepEdge Opposite"] + 76["SweepEdge Opposite"] + 77["SweepEdge Opposite"] + 78["SweepEdge Adjacent"] + 79["SweepEdge Adjacent"] + 80["SweepEdge Adjacent"] + 81["SweepEdge Adjacent"] + 82["SweepEdge Adjacent"] + 83["SweepEdge Adjacent"] + 84["SweepEdge Adjacent"] 85["SweepEdge Adjacent"] 86["EdgeCut Fillet
[1070, 1276, 0]"] 87["EdgeCut Fillet
[1070, 1276, 0]"] 88["EdgeCut Fillet
[1070, 1276, 0]"] 89["EdgeCut Fillet
[1070, 1276, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 8 --- 9 - 9 --- 10 - 9 --- 11 - 9 --- 12 - 9 --- 13 - 9 ---- 15 - 9 --- 14 - 10 --- 16 - 10 --- 22 - 10 --- 23 - 10 x--> 20 - 11 --- 17 - 11 --- 24 - 11 --- 25 - 11 x--> 20 - 12 --- 18 - 12 --- 26 - 12 --- 27 - 12 x--> 20 - 13 --- 19 - 13 --- 28 + 1 --- 7 + 2 --- 8 + 3 --- 9 + 3 --- 13 + 3 --- 18 + 4 --- 11 + 4 --- 14 + 4 --- 19 + 5 --- 12 + 5 --- 16 + 5 --- 17 + 6 --- 10 + 6 --- 15 + 6 --- 20 + 7 --- 21 + 7 --- 22 + 7 --- 23 + 7 --- 24 + 7 --- 40 + 8 --- 25 + 8 --- 26 + 8 --- 27 + 8 --- 28 + 8 --- 45 + 8 ---- 47 13 --- 29 - 13 x--> 20 - 15 --- 16 - 15 --- 17 - 15 --- 18 - 15 --- 19 - 15 --- 20 - 15 --- 21 - 15 --- 22 - 15 --- 23 - 15 --- 24 - 15 --- 25 - 15 --- 26 - 15 --- 27 - 15 --- 28 - 15 --- 29 - 22 <--x 16 - 22 <--x 21 - 24 <--x 17 - 24 <--x 21 - 26 <--x 18 - 26 <--x 21 - 28 <--x 19 - 28 <--x 21 - 30 --- 31 - 30 --- 32 - 30 --- 35 - 32 --- 33 - 32 ---- 38 - 32 --- 34 - 33 --- 39 - 33 --- 42 - 33 --- 43 - 33 x--> 40 - 35 --- 36 - 35 --- 37 - 38 --- 39 - 38 --- 40 - 38 --- 41 - 38 --- 42 - 38 --- 43 - 42 <--x 39 - 42 <--x 41 - 43 <--x 39 - 44 --- 45 - 44 --- 46 - 44 --- 49 - 46 --- 47 - 46 ---- 52 - 46 --- 48 - 47 --- 53 + 13 --- 38 + 13 ---- 51 + 14 --- 31 + 14 --- 42 + 14 ---- 48 + 15 --- 30 + 15 --- 44 + 15 ---- 49 + 16 --- 32 + 16 --- 46 + 16 ---- 50 + 17 --- 35 + 17 --- 37 + 18 --- 34 + 18 --- 39 + 19 --- 36 + 19 --- 41 + 20 --- 33 + 20 --- 43 + 25 --- 55 + 25 x--> 63 + 25 --- 74 + 25 --- 82 + 26 --- 56 + 26 x--> 63 + 26 --- 76 + 26 --- 83 + 27 --- 58 + 27 x--> 63 + 27 --- 73 + 27 --- 84 + 28 --- 57 + 28 x--> 63 + 28 --- 75 + 28 --- 81 + 29 --- 59 + 29 x--> 64 + 29 --- 77 + 29 --- 85 + 30 --- 53 + 30 x--> 61 + 30 --- 71 + 30 --- 79 + 31 --- 52 + 31 x--> 60 + 31 --- 70 + 31 --- 78 + 32 --- 54 + 32 x--> 62 + 32 --- 72 + 32 --- 80 + 47 --- 55 47 --- 56 47 --- 57 - 47 x--> 54 - 49 --- 50 - 49 --- 51 - 52 --- 53 - 52 --- 54 - 52 --- 55 - 52 --- 56 - 52 --- 57 - 56 <--x 53 - 56 <--x 55 - 57 <--x 53 - 58 --- 59 - 58 --- 60 - 58 --- 63 - 60 --- 61 - 60 ---- 66 - 60 --- 62 - 61 --- 67 - 61 --- 70 - 61 --- 71 - 61 x--> 68 - 63 --- 64 - 63 --- 65 - 66 --- 67 - 66 --- 68 - 66 --- 69 - 66 --- 70 - 66 --- 71 - 70 <--x 67 - 70 <--x 69 - 71 <--x 67 - 72 --- 73 - 72 --- 74 - 72 --- 77 - 74 --- 75 - 74 ---- 80 - 74 --- 76 - 75 --- 81 - 75 --- 84 - 75 --- 85 - 75 x--> 82 - 77 --- 78 - 77 --- 79 - 80 --- 81 - 80 --- 82 - 80 --- 83 - 80 --- 84 - 80 --- 85 - 84 <--x 81 - 84 <--x 83 - 85 <--x 81 - 23 <--x 86 - 25 <--x 87 - 27 <--x 88 - 29 <--x 89 + 47 --- 58 + 47 --- 63 + 47 --- 68 + 47 --- 73 + 47 --- 74 + 47 --- 75 + 47 --- 76 + 47 --- 81 + 47 --- 82 + 47 --- 83 + 47 --- 84 + 48 --- 52 + 48 --- 60 + 48 --- 65 + 48 --- 70 + 48 --- 78 + 49 --- 53 + 49 --- 61 + 49 --- 66 + 49 --- 71 + 49 --- 79 + 50 --- 54 + 50 --- 62 + 50 --- 67 + 50 --- 72 + 50 --- 80 + 51 --- 59 + 51 --- 64 + 51 --- 69 + 51 --- 77 + 51 --- 85 + 70 <--x 52 + 78 <--x 52 + 71 <--x 53 + 79 <--x 53 + 72 <--x 54 + 80 <--x 54 + 74 <--x 55 + 76 <--x 56 + 75 <--x 57 + 73 <--x 58 + 77 <--x 59 + 85 <--x 59 + 70 <--x 65 + 71 <--x 66 + 72 <--x 67 + 73 <--x 68 + 74 <--x 68 + 75 <--x 68 + 76 <--x 68 + 77 <--x 69 + 81 <--x 89 + 82 <--x 86 + 83 <--x 87 + 84 <--x 88 ``` diff --git a/rust/kcl-lib/tests/fillet-and-shell/ops.snap b/rust/kcl-lib/tests/fillet-and-shell/ops.snap index 21b308c6c..78cf4c99a 100644 --- a/rust/kcl-lib/tests/fillet-and-shell/ops.snap +++ b/rust/kcl-lib/tests/fillet-and-shell/ops.snap @@ -122,15 +122,19 @@ description: Operations executed fillet-and-shell.kcl "sourceRange": [] }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "m25Screw", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "String", + "value": "XY" + }, + "sourceRange": [] + } }, - "sourceRange": [] + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { "labeledArgs": { @@ -147,6 +151,111 @@ description: Operations executed fillet-and-shell.kcl "type": "StdLibCall", "unlabeledArg": null }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "String", + "value": "XY" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "String", + "value": "XY" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, { "labeledArgs": { "tool": { @@ -204,48 +313,26 @@ description: Operations executed fillet-and-shell.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "m25Screw", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { - "planeOrSolid": { + "length": { "value": { - "type": "String", - "value": "XY" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } } }, "sourceRange": [] } }, - "name": "subtract2d", + "name": "extrude", "sourceRange": [], "type": "StdLibCall", "unlabeledArg": { @@ -290,60 +377,6 @@ description: Operations executed fillet-and-shell.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "m25Screw", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "String", - "value": "XY" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "length": { @@ -377,7 +410,15 @@ description: Operations executed fillet-and-shell.kcl } }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "m25Screw", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "type": "GroupBegin", @@ -391,79 +432,26 @@ description: Operations executed fillet-and-shell.kcl "sourceRange": [] }, { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "String", - "value": "XY" - }, - "sourceRange": [] - } + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "m25Screw", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "sourceRange": [] }, { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "m25Screw", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" + "sourceRange": [] }, { "type": "KclStdLibCall", @@ -513,5 +501,17 @@ description: Operations executed fillet-and-shell.kcl } }, "sourceRange": [] + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/flush_batch_on_end/artifact_commands.snap b/rust/kcl-lib/tests/flush_batch_on_end/artifact_commands.snap index c4497feaf..84655c883 100644 --- a/rust/kcl-lib/tests/flush_batch_on_end/artifact_commands.snap +++ b/rust/kcl-lib/tests/flush_batch_on_end/artifact_commands.snap @@ -54,6 +54,14 @@ description: Artifact commands flush_batch_on_end.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -70,33 +78,6 @@ description: Artifact commands flush_batch_on_end.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 6.9453125, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -122,6 +103,33 @@ description: Artifact commands flush_batch_on_end.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 6.9453125, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -146,33 +154,6 @@ description: Artifact commands flush_batch_on_end.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 4.6228, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -202,17 +183,27 @@ description: Artifact commands flush_batch_on_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 4.6228, + "y": 0.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -224,6 +215,15 @@ description: Artifact commands flush_batch_on_end.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -251,6 +251,14 @@ description: Artifact commands flush_batch_on_end.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -262,8 +270,54 @@ description: Artifact commands flush_batch_on_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -279,30 +333,12 @@ description: Artifact commands flush_batch_on_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -313,24 +349,6 @@ description: Artifact commands flush_batch_on_end.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -345,28 +363,10 @@ description: Artifact commands flush_batch_on_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/flush_batch_on_end/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/flush_batch_on_end/artifact_graph_flowchart.snap.md index f591eae37..bd1ef30db 100644 --- a/rust/kcl-lib/tests/flush_batch_on_end/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/flush_batch_on_end/artifact_graph_flowchart.snap.md @@ -2,12 +2,12 @@ flowchart LR subgraph path2 [Path] 2["Path
[282, 374, 0]"] - 3["Segment
[282, 374, 0]"] - 4[Solid2d] + 4["Segment
[282, 374, 0]"] + 6[Solid2d] end - subgraph path5 [Path] - 5["Path
[437, 529, 0]"] - 6["Segment
[437, 529, 0]"] + subgraph path3 [Path] + 3["Path
[437, 529, 0]"] + 5["Segment
[437, 529, 0]"] 7[Solid2d] end 1["Plane
[199, 218, 0]"] @@ -18,22 +18,22 @@ flowchart LR 12["SweepEdge Opposite"] 13["SweepEdge Adjacent"] 1 --- 2 - 1 --- 5 - 2 --- 3 - 2 ---- 8 + 1 --- 3 2 --- 4 - 3 --- 9 - 3 --- 12 - 3 --- 13 - 3 x--> 10 - 5 --- 6 - 5 --- 7 + 2 --- 6 + 2 ---- 8 + 3 --- 5 + 3 --- 7 + 4 --- 9 + 4 x--> 10 + 4 --- 12 + 4 --- 13 8 --- 9 8 --- 10 8 --- 11 8 --- 12 8 --- 13 12 <--x 9 - 12 <--x 11 13 <--x 9 + 12 <--x 11 ``` diff --git a/rust/kcl-lib/tests/function_sketch/artifact_commands.snap b/rust/kcl-lib/tests/function_sketch/artifact_commands.snap index b4e1eb0c1..f3a8dd443 100644 --- a/rust/kcl-lib/tests/function_sketch/artifact_commands.snap +++ b/rust/kcl-lib/tests/function_sketch/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands function_sketch.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands function_sketch.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands function_sketch.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands function_sketch.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands function_sketch.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands function_sketch.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands function_sketch.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +375,6 @@ description: Artifact commands function_sketch.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,28 +389,10 @@ description: Artifact commands function_sketch.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/function_sketch/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/function_sketch/artifact_graph_flowchart.snap.md index cb73fc2f6..1b1c893af 100644 --- a/rust/kcl-lib/tests/function_sketch/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/function_sketch/artifact_graph_flowchart.snap.md @@ -17,36 +17,36 @@ flowchart LR 13["Cap Start"] 14["Cap End"] 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] + 16["SweepEdge Opposite"] 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] + 18["SweepEdge Opposite"] + 19["SweepEdge Adjacent"] 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] + 21["SweepEdge Adjacent"] 22["SweepEdge Adjacent"] 1 --- 2 2 --- 3 2 --- 4 2 --- 5 2 --- 6 - 2 ---- 8 2 --- 7 + 2 ---- 8 3 --- 12 - 3 --- 21 - 3 --- 22 3 x--> 13 - 4 --- 11 - 4 --- 19 - 4 --- 20 + 3 --- 17 + 3 --- 20 + 4 --- 10 4 x--> 13 - 5 --- 10 - 5 --- 17 - 5 --- 18 + 4 --- 18 + 4 --- 21 + 5 --- 9 5 x--> 13 - 6 --- 9 - 6 --- 15 - 6 --- 16 + 5 --- 15 + 5 --- 22 + 6 --- 11 6 x--> 13 + 6 --- 16 + 6 --- 19 8 --- 9 8 --- 10 8 --- 11 @@ -62,19 +62,19 @@ flowchart LR 8 --- 21 8 --- 22 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 12 - 17 <--x 10 - 17 <--x 14 - 18 <--x 9 + 21 <--x 9 + 22 <--x 9 18 <--x 10 - 19 <--x 11 - 19 <--x 14 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 14 + 21 <--x 10 + 16 <--x 11 + 19 <--x 11 22 <--x 11 - 22 <--x 12 + 17 <--x 12 + 19 <--x 12 + 20 <--x 12 + 15 <--x 14 + 16 <--x 14 + 17 <--x 14 + 18 <--x 14 ``` diff --git a/rust/kcl-lib/tests/function_sketch/ops.snap b/rust/kcl-lib/tests/function_sketch/ops.snap index c3e1a3284..fb4e1e4f2 100644 --- a/rust/kcl-lib/tests/function_sketch/ops.snap +++ b/rust/kcl-lib/tests/function_sketch/ops.snap @@ -3,17 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed function_sketch.kcl --- [ - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "box", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -61,6 +50,17 @@ description: Operations executed function_sketch.kcl "sourceRange": [] } }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "box", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/function_sketch_with_position/artifact_commands.snap b/rust/kcl-lib/tests/function_sketch_with_position/artifact_commands.snap index 88f802cf5..ea9891b65 100644 --- a/rust/kcl-lib/tests/function_sketch_with_position/artifact_commands.snap +++ b/rust/kcl-lib/tests/function_sketch_with_position/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands function_sketch_with_position.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands function_sketch_with_position.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands function_sketch_with_position.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands function_sketch_with_position.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands function_sketch_with_position.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands function_sketch_with_position.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands function_sketch_with_position.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +375,6 @@ description: Artifact commands function_sketch_with_position.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,28 +389,10 @@ description: Artifact commands function_sketch_with_position.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/function_sketch_with_position/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/function_sketch_with_position/artifact_graph_flowchart.snap.md index 7c293644d..5ca4c0dcf 100644 --- a/rust/kcl-lib/tests/function_sketch_with_position/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/function_sketch_with_position/artifact_graph_flowchart.snap.md @@ -17,36 +17,36 @@ flowchart LR 13["Cap Start"] 14["Cap End"] 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] + 16["SweepEdge Opposite"] 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] + 18["SweepEdge Opposite"] + 19["SweepEdge Adjacent"] 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] + 21["SweepEdge Adjacent"] 22["SweepEdge Adjacent"] 1 --- 2 2 --- 3 2 --- 4 2 --- 5 2 --- 6 - 2 ---- 8 2 --- 7 + 2 ---- 8 3 --- 12 - 3 --- 21 - 3 --- 22 3 x--> 13 - 4 --- 11 - 4 --- 19 - 4 --- 20 + 3 --- 17 + 3 --- 20 + 4 --- 10 4 x--> 13 - 5 --- 10 - 5 --- 17 - 5 --- 18 + 4 --- 18 + 4 --- 21 + 5 --- 9 5 x--> 13 - 6 --- 9 - 6 --- 15 - 6 --- 16 + 5 --- 15 + 5 --- 22 + 6 --- 11 6 x--> 13 + 6 --- 16 + 6 --- 19 8 --- 9 8 --- 10 8 --- 11 @@ -62,19 +62,19 @@ flowchart LR 8 --- 21 8 --- 22 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 12 - 17 <--x 10 - 17 <--x 14 - 18 <--x 9 + 21 <--x 9 + 22 <--x 9 18 <--x 10 - 19 <--x 11 - 19 <--x 14 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 14 + 21 <--x 10 + 16 <--x 11 + 19 <--x 11 22 <--x 11 - 22 <--x 12 + 17 <--x 12 + 19 <--x 12 + 20 <--x 12 + 15 <--x 14 + 16 <--x 14 + 17 <--x 14 + 18 <--x 14 ``` diff --git a/rust/kcl-lib/tests/function_sketch_with_position/ops.snap b/rust/kcl-lib/tests/function_sketch_with_position/ops.snap index 4745350dc..4c846389b 100644 --- a/rust/kcl-lib/tests/function_sketch_with_position/ops.snap +++ b/rust/kcl-lib/tests/function_sketch_with_position/ops.snap @@ -3,17 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed function_sketch_with_position.kcl --- [ - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "box", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -61,6 +50,17 @@ description: Operations executed function_sketch_with_position.kcl "sourceRange": [] } }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "box", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/helix_ccw/artifact_commands.snap b/rust/kcl-lib/tests/helix_ccw/artifact_commands.snap index a962792b1..dc4dafc14 100644 --- a/rust/kcl-lib/tests/helix_ccw/artifact_commands.snap +++ b/rust/kcl-lib/tests/helix_ccw/artifact_commands.snap @@ -54,6 +54,14 @@ description: Artifact commands helix_ccw.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -70,33 +78,6 @@ description: Artifact commands helix_ccw.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 15.0, - "y": 5.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -126,8 +107,27 @@ description: Artifact commands helix_ccw.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 15.0, + "y": 5.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -157,13 +157,6 @@ description: Artifact commands helix_ccw.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -172,6 +165,40 @@ description: Artifact commands helix_ccw.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -181,34 +208,6 @@ description: Artifact commands helix_ccw.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -223,9 +222,10 @@ description: Artifact commands helix_ccw.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { diff --git a/rust/kcl-lib/tests/helix_ccw/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/helix_ccw/artifact_graph_flowchart.snap.md index 3237c842a..d71196b8d 100644 --- a/rust/kcl-lib/tests/helix_ccw/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/helix_ccw/artifact_graph_flowchart.snap.md @@ -14,18 +14,18 @@ flowchart LR 10["SweepEdge Adjacent"] 1 --- 2 2 --- 3 - 2 ---- 5 2 --- 4 + 2 ---- 5 3 --- 6 + 3 x--> 7 3 --- 9 3 --- 10 - 3 x--> 7 5 --- 6 5 --- 7 5 --- 8 5 --- 9 5 --- 10 9 <--x 6 - 9 <--x 8 10 <--x 6 + 9 <--x 8 ``` diff --git a/rust/kcl-lib/tests/helix_simple/artifact_commands.snap b/rust/kcl-lib/tests/helix_simple/artifact_commands.snap index 2db09c2e7..a3fb6af99 100644 --- a/rust/kcl-lib/tests/helix_simple/artifact_commands.snap +++ b/rust/kcl-lib/tests/helix_simple/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands helix_simple.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands helix_simple.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], diff --git a/rust/kcl-lib/tests/i_shape/artifact_commands.snap b/rust/kcl-lib/tests/i_shape/artifact_commands.snap index cc882d8d2..c0bd6a680 100644 --- a/rust/kcl-lib/tests/i_shape/artifact_commands.snap +++ b/rust/kcl-lib/tests/i_shape/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands i_shape.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands i_shape.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -554,13 +554,6 @@ description: Artifact commands i_shape.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -581,6 +574,13 @@ description: Artifact commands i_shape.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -729,18 +729,18 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -770,6 +770,14 @@ description: Artifact commands i_shape.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -781,8 +789,864 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -798,30 +1662,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -836,39 +1682,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -883,39 +1702,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -930,39 +1722,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -977,39 +1742,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1024,39 +1762,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1071,39 +1782,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1118,39 +1802,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1165,39 +1822,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1212,39 +1842,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1259,39 +1862,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1306,39 +1882,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1353,39 +1902,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1400,39 +1922,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1447,39 +1942,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1494,39 +1962,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1541,18 +1982,10 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1569,39 +2002,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1616,39 +2022,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1663,39 +2042,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1710,39 +2062,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1757,39 +2082,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1804,39 +2102,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1851,39 +2122,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1898,39 +2142,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1945,39 +2162,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1992,39 +2182,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2039,39 +2202,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2086,39 +2222,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2133,39 +2242,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2180,39 +2262,12 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2223,43 +2278,6 @@ description: Artifact commands i_shape.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2274,28 +2292,10 @@ description: Artifact commands i_shape.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/i_shape/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/i_shape/artifact_graph_flowchart.snap.md index 22080f1a8..9d6e42bab 100644 --- a/rust/kcl-lib/tests/i_shape/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/i_shape/artifact_graph_flowchart.snap.md @@ -1,49 +1,49 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[422, 459, 0]"] - 3["Segment
[465, 505, 0]"] - 4["Segment
[511, 562, 0]"] - 5["Segment
[568, 604, 0]"] - 6["Segment
[610, 662, 0]"] - 7["Segment
[668, 733, 0]"] - 8["Segment
[739, 791, 0]"] - 9["Segment
[797, 855, 0]"] - 10["Segment
[861, 912, 0]"] - 11["Segment
[918, 960, 0]"] - 12["Segment
[966, 1017, 0]"] - 13["Segment
[1023, 1059, 0]"] - 14["Segment
[1065, 1117, 0]"] - 15["Segment
[1123, 1192, 0]"] - 16["Segment
[1198, 1251, 0]"] - 17["Segment
[1257, 1296, 0]"] - 18["Segment
[1302, 1354, 0]"] - 19["Segment
[1360, 1402, 0]"] - 20["Segment
[1408, 1460, 0]"] - 21["Segment
[1466, 1527, 0]"] - 22["Segment
[1533, 1586, 0]"] - 23["Segment
[1592, 1722, 0]"] - 24["Segment
[1728, 1781, 0]"] - 25["Segment
[1787, 1826, 0]"] - 26["Segment
[1832, 1884, 0]"] - 27["Segment
[1890, 1898, 0]"] - 28[Solid2d] + subgraph path3 [Path] + 3["Path
[422, 459, 0]"] + 5["Segment
[465, 505, 0]"] + 6["Segment
[511, 562, 0]"] + 7["Segment
[568, 604, 0]"] + 8["Segment
[610, 662, 0]"] + 9["Segment
[668, 733, 0]"] + 10["Segment
[739, 791, 0]"] + 11["Segment
[797, 855, 0]"] + 12["Segment
[861, 912, 0]"] + 13["Segment
[918, 960, 0]"] + 14["Segment
[966, 1017, 0]"] + 15["Segment
[1023, 1059, 0]"] + 16["Segment
[1065, 1117, 0]"] + 17["Segment
[1123, 1192, 0]"] + 18["Segment
[1198, 1251, 0]"] + 19["Segment
[1257, 1296, 0]"] + 20["Segment
[1302, 1354, 0]"] + 21["Segment
[1360, 1402, 0]"] + 22["Segment
[1408, 1460, 0]"] + 23["Segment
[1466, 1527, 0]"] + 24["Segment
[1533, 1586, 0]"] + 25["Segment
[1592, 1722, 0]"] + 26["Segment
[1728, 1781, 0]"] + 27["Segment
[1787, 1826, 0]"] + 28["Segment
[1832, 1884, 0]"] + 29["Segment
[1890, 1898, 0]"] + 39[Solid2d] end - subgraph path30 [Path] - 30["Path
[1931, 1956, 0]"] - 31["Segment
[1962, 1981, 0]"] - 32["Segment
[1987, 2038, 0]"] - 33["Segment
[2044, 2086, 0]"] - 34["Segment
[2092, 2144, 0]"] - 35["Segment
[2150, 2170, 0]"] - 36["Segment
[2176, 2229, 0]"] - 37["Segment
[2235, 2280, 0]"] - 38["Segment
[2286, 2338, 0]"] - 39["Segment
[2344, 2352, 0]"] + subgraph path4 [Path] + 4["Path
[1931, 1956, 0]"] + 30["Segment
[1962, 1981, 0]"] + 31["Segment
[1987, 2038, 0]"] + 32["Segment
[2044, 2086, 0]"] + 33["Segment
[2092, 2144, 0]"] + 34["Segment
[2150, 2170, 0]"] + 35["Segment
[2176, 2229, 0]"] + 36["Segment
[2235, 2280, 0]"] + 37["Segment
[2286, 2338, 0]"] + 38["Segment
[2344, 2352, 0]"] 40[Solid2d] end 1["Plane
[399, 416, 0]"] - 29["Plane
[1908, 1925, 0]"] + 2["Plane
[1908, 1925, 0]"] 41["Sweep Extrusion
[2408, 2429, 0]"] 42[Wall] 43[Wall] @@ -72,188 +72,188 @@ flowchart LR 66["Cap Start"] 67["Cap End"] 68["SweepEdge Opposite"] - 69["SweepEdge Adjacent"] + 69["SweepEdge Opposite"] 70["SweepEdge Opposite"] - 71["SweepEdge Adjacent"] + 71["SweepEdge Opposite"] 72["SweepEdge Opposite"] - 73["SweepEdge Adjacent"] + 73["SweepEdge Opposite"] 74["SweepEdge Opposite"] - 75["SweepEdge Adjacent"] + 75["SweepEdge Opposite"] 76["SweepEdge Opposite"] - 77["SweepEdge Adjacent"] + 77["SweepEdge Opposite"] 78["SweepEdge Opposite"] - 79["SweepEdge Adjacent"] + 79["SweepEdge Opposite"] 80["SweepEdge Opposite"] - 81["SweepEdge Adjacent"] + 81["SweepEdge Opposite"] 82["SweepEdge Opposite"] - 83["SweepEdge Adjacent"] + 83["SweepEdge Opposite"] 84["SweepEdge Opposite"] - 85["SweepEdge Adjacent"] + 85["SweepEdge Opposite"] 86["SweepEdge Opposite"] - 87["SweepEdge Adjacent"] + 87["SweepEdge Opposite"] 88["SweepEdge Opposite"] - 89["SweepEdge Adjacent"] + 89["SweepEdge Opposite"] 90["SweepEdge Opposite"] - 91["SweepEdge Adjacent"] - 92["SweepEdge Opposite"] + 91["SweepEdge Opposite"] + 92["SweepEdge Adjacent"] 93["SweepEdge Adjacent"] - 94["SweepEdge Opposite"] + 94["SweepEdge Adjacent"] 95["SweepEdge Adjacent"] - 96["SweepEdge Opposite"] + 96["SweepEdge Adjacent"] 97["SweepEdge Adjacent"] - 98["SweepEdge Opposite"] + 98["SweepEdge Adjacent"] 99["SweepEdge Adjacent"] - 100["SweepEdge Opposite"] + 100["SweepEdge Adjacent"] 101["SweepEdge Adjacent"] - 102["SweepEdge Opposite"] + 102["SweepEdge Adjacent"] 103["SweepEdge Adjacent"] - 104["SweepEdge Opposite"] + 104["SweepEdge Adjacent"] 105["SweepEdge Adjacent"] - 106["SweepEdge Opposite"] + 106["SweepEdge Adjacent"] 107["SweepEdge Adjacent"] - 108["SweepEdge Opposite"] + 108["SweepEdge Adjacent"] 109["SweepEdge Adjacent"] - 110["SweepEdge Opposite"] + 110["SweepEdge Adjacent"] 111["SweepEdge Adjacent"] - 112["SweepEdge Opposite"] + 112["SweepEdge Adjacent"] 113["SweepEdge Adjacent"] - 114["SweepEdge Opposite"] + 114["SweepEdge Adjacent"] 115["SweepEdge Adjacent"] - 1 --- 2 - 2 --- 3 + 1 --- 3 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 --- 8 - 2 --- 9 - 2 --- 10 - 2 --- 11 - 2 --- 12 - 2 --- 13 - 2 --- 14 - 2 --- 15 - 2 --- 16 - 2 --- 17 - 2 --- 18 - 2 --- 19 - 2 --- 20 - 2 --- 21 - 2 --- 22 - 2 --- 23 - 2 --- 24 - 2 --- 25 - 2 --- 26 - 2 --- 27 - 2 ---- 41 - 2 --- 28 - 3 --- 42 - 3 --- 68 - 3 --- 69 - 3 x--> 66 - 4 --- 43 - 4 --- 70 - 4 --- 71 - 4 x--> 66 - 5 --- 44 - 5 --- 72 - 5 --- 73 + 3 --- 5 + 3 --- 6 + 3 --- 7 + 3 --- 8 + 3 --- 9 + 3 --- 10 + 3 --- 11 + 3 --- 12 + 3 --- 13 + 3 --- 14 + 3 --- 15 + 3 --- 16 + 3 --- 17 + 3 --- 18 + 3 --- 19 + 3 --- 20 + 3 --- 21 + 3 --- 22 + 3 --- 23 + 3 --- 24 + 3 --- 25 + 3 --- 26 + 3 --- 27 + 3 --- 28 + 3 --- 29 + 3 --- 39 + 3 ---- 41 + 4 --- 30 + 4 --- 31 + 4 --- 32 + 4 --- 33 + 4 --- 34 + 4 --- 35 + 4 --- 36 + 4 --- 37 + 4 --- 38 + 4 --- 40 + 5 --- 61 5 x--> 66 - 6 --- 45 - 6 --- 74 - 6 --- 75 + 5 --- 84 + 5 --- 95 + 6 --- 53 6 x--> 66 - 7 --- 46 - 7 --- 76 - 7 --- 77 + 6 --- 80 + 6 --- 114 + 7 --- 52 7 x--> 66 - 8 --- 47 - 8 --- 78 - 8 --- 79 + 7 --- 76 + 7 --- 110 + 8 --- 57 8 x--> 66 + 8 --- 83 + 8 --- 113 9 --- 48 - 9 --- 80 - 9 --- 81 9 x--> 66 - 10 --- 49 - 10 --- 82 - 10 --- 83 + 9 --- 73 + 9 --- 93 + 10 --- 47 10 x--> 66 - 11 --- 50 - 11 --- 84 - 11 --- 85 + 10 --- 86 + 10 --- 115 + 11 --- 60 11 x--> 66 - 12 --- 51 - 12 --- 86 - 12 --- 87 + 11 --- 74 + 11 --- 101 + 12 --- 64 12 x--> 66 - 13 --- 52 - 13 --- 88 - 13 --- 89 + 12 --- 72 + 12 --- 104 + 13 --- 63 13 x--> 66 - 14 --- 53 - 14 --- 90 - 14 --- 91 + 13 --- 89 + 13 --- 102 + 14 --- 45 14 x--> 66 - 15 --- 54 - 15 --- 92 - 15 --- 93 + 14 --- 70 + 14 --- 96 + 15 --- 46 15 x--> 66 - 16 --- 55 - 16 --- 94 - 16 --- 95 + 15 --- 88 + 15 --- 107 + 16 --- 65 16 x--> 66 - 17 --- 56 - 17 --- 96 - 17 --- 97 + 16 --- 71 + 16 --- 103 + 17 --- 58 17 x--> 66 - 18 --- 57 - 18 --- 98 - 18 --- 99 + 17 --- 87 + 17 --- 109 + 18 --- 50 18 x--> 66 - 19 --- 58 - 19 --- 100 - 19 --- 101 + 18 --- 82 + 18 --- 108 + 19 --- 43 19 x--> 66 + 19 --- 90 + 19 --- 97 20 --- 59 - 20 --- 102 - 20 --- 103 20 x--> 66 - 21 --- 60 - 21 --- 104 - 21 --- 105 + 20 --- 69 + 20 --- 105 + 21 --- 44 21 x--> 66 - 22 --- 61 - 22 --- 106 - 22 --- 107 + 21 --- 79 + 21 --- 98 + 22 --- 62 22 x--> 66 - 23 --- 62 - 23 --- 108 - 23 --- 109 + 22 --- 81 + 22 --- 99 + 23 --- 42 23 x--> 66 - 24 --- 63 - 24 --- 110 - 24 --- 111 + 23 --- 91 + 23 --- 92 + 24 --- 55 24 x--> 66 - 25 --- 64 - 25 --- 112 - 25 --- 113 + 24 --- 77 + 24 --- 112 + 25 --- 56 25 x--> 66 - 26 --- 65 - 26 --- 114 - 26 --- 115 + 25 --- 75 + 25 --- 100 + 26 --- 51 26 x--> 66 - 29 --- 30 - 30 --- 31 - 30 --- 32 - 30 --- 33 - 30 --- 34 - 30 --- 35 - 30 --- 36 - 30 --- 37 - 30 --- 38 - 30 --- 39 - 30 --- 40 + 26 --- 78 + 26 --- 111 + 27 --- 54 + 27 x--> 66 + 27 --- 68 + 27 --- 106 + 28 --- 49 + 28 x--> 66 + 28 --- 85 + 28 --- 94 41 --- 42 41 --- 43 41 --- 44 @@ -328,100 +328,100 @@ flowchart LR 41 --- 113 41 --- 114 41 --- 115 - 68 <--x 42 + 91 <--x 42 + 92 <--x 42 + 99 <--x 42 + 90 <--x 43 + 97 <--x 43 + 108 <--x 43 + 79 <--x 44 + 98 <--x 44 + 105 <--x 44 + 70 <--x 45 + 96 <--x 45 + 102 <--x 45 + 88 <--x 46 + 96 <--x 46 + 107 <--x 46 + 86 <--x 47 + 93 <--x 47 + 115 <--x 47 + 73 <--x 48 + 93 <--x 48 + 113 <--x 48 + 85 <--x 49 + 94 <--x 49 + 106 <--x 49 + 82 <--x 50 + 108 <--x 50 + 109 <--x 50 + 78 <--x 51 + 100 <--x 51 + 111 <--x 51 + 76 <--x 52 + 110 <--x 52 + 114 <--x 52 + 80 <--x 53 + 95 <--x 53 + 114 <--x 53 + 68 <--x 54 + 106 <--x 54 + 111 <--x 54 + 77 <--x 55 + 92 <--x 55 + 112 <--x 55 + 75 <--x 56 + 100 <--x 56 + 112 <--x 56 + 83 <--x 57 + 110 <--x 57 + 113 <--x 57 + 87 <--x 58 + 103 <--x 58 + 109 <--x 58 + 69 <--x 59 + 97 <--x 59 + 105 <--x 59 + 74 <--x 60 + 101 <--x 60 + 115 <--x 60 + 84 <--x 61 + 94 <--x 61 + 95 <--x 61 + 81 <--x 62 + 98 <--x 62 + 99 <--x 62 + 89 <--x 63 + 102 <--x 63 + 104 <--x 63 + 72 <--x 64 + 101 <--x 64 + 104 <--x 64 + 71 <--x 65 + 103 <--x 65 + 107 <--x 65 68 <--x 67 - 69 <--x 42 - 69 <--x 43 - 70 <--x 43 + 69 <--x 67 70 <--x 67 - 71 <--x 43 - 71 <--x 44 - 72 <--x 44 + 71 <--x 67 72 <--x 67 - 73 <--x 44 - 73 <--x 45 - 74 <--x 45 + 73 <--x 67 74 <--x 67 - 75 <--x 45 - 75 <--x 46 - 76 <--x 46 + 75 <--x 67 76 <--x 67 - 77 <--x 46 - 77 <--x 47 - 78 <--x 47 + 77 <--x 67 78 <--x 67 - 79 <--x 47 - 79 <--x 48 - 80 <--x 48 + 79 <--x 67 80 <--x 67 - 81 <--x 48 - 81 <--x 49 - 82 <--x 49 + 81 <--x 67 82 <--x 67 - 83 <--x 49 - 83 <--x 50 - 84 <--x 50 + 83 <--x 67 84 <--x 67 - 85 <--x 50 - 85 <--x 51 - 86 <--x 51 + 85 <--x 67 86 <--x 67 - 87 <--x 51 - 87 <--x 52 - 88 <--x 52 + 87 <--x 67 88 <--x 67 - 89 <--x 52 - 89 <--x 53 - 90 <--x 53 + 89 <--x 67 90 <--x 67 - 91 <--x 53 - 91 <--x 54 - 92 <--x 54 - 92 <--x 67 - 93 <--x 54 - 93 <--x 55 - 94 <--x 55 - 94 <--x 67 - 95 <--x 55 - 95 <--x 56 - 96 <--x 56 - 96 <--x 67 - 97 <--x 56 - 97 <--x 57 - 98 <--x 57 - 98 <--x 67 - 99 <--x 57 - 99 <--x 58 - 100 <--x 58 - 100 <--x 67 - 101 <--x 58 - 101 <--x 59 - 102 <--x 59 - 102 <--x 67 - 103 <--x 59 - 103 <--x 60 - 104 <--x 60 - 104 <--x 67 - 105 <--x 60 - 105 <--x 61 - 106 <--x 61 - 106 <--x 67 - 107 <--x 61 - 107 <--x 62 - 108 <--x 62 - 108 <--x 67 - 109 <--x 62 - 109 <--x 63 - 110 <--x 63 - 110 <--x 67 - 111 <--x 63 - 111 <--x 64 - 112 <--x 64 - 112 <--x 67 - 113 <--x 64 - 113 <--x 65 - 114 <--x 65 - 114 <--x 67 - 115 <--x 42 - 115 <--x 65 + 91 <--x 67 ``` diff --git a/rust/kcl-lib/tests/import_async/artifact_commands.snap b/rust/kcl-lib/tests/import_async/artifact_commands.snap index e4c88b97b..58f385128 100644 --- a/rust/kcl-lib/tests/import_async/artifact_commands.snap +++ b/rust/kcl-lib/tests/import_async/artifact_commands.snap @@ -5571141,6 +5571141,14 @@ description: Artifact commands import_async.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5571157,33 +5571165,6 @@ description: Artifact commands import_async.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 4.933386259126019, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5571213,8 +5571194,27 @@ description: Artifact commands import_async.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 4.933386259126019, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -5571244,13 +5571244,6 @@ description: Artifact commands import_async.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5571259,6 +5571252,40 @@ description: Artifact commands import_async.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5571268,34 +5571295,6 @@ description: Artifact commands import_async.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5571310,77 +5571309,10 @@ description: Artifact commands import_async.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 5.7399134909054, - "y": 0.340430781396414, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5573100,31 +5573032,6 @@ description: Artifact commands import_async.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": -0.0, - "y": -0.0 - }, - "radius": 4.933386259126019, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 11.428571428571429 - }, - "relative": false - } - } - }, { "cmdId": "[uuid]", "range": [], @@ -5574842,6 +5574749,99 @@ description: Artifact commands import_async.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 5.7399134909054, + "y": 0.340430781396414, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": -0.0, + "y": -0.0 + }, + "radius": 4.933386259126019, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 11.428571428571429 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -5574881,15 +5574881,15 @@ description: Artifact commands import_async.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "sketch_mode_disable" } }, { @@ -5574934,13 +5574934,6 @@ description: Artifact commands import_async.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5574961,6 +5574954,13 @@ description: Artifact commands import_async.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5575093,6 +5575093,14 @@ description: Artifact commands import_async.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5575104,8 +5575112,108 @@ description: Artifact commands import_async.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -5575121,30 +5575229,12 @@ description: Artifact commands import_async.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5575159,39 +5575249,12 @@ description: Artifact commands import_async.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5575206,18 +5575269,10 @@ description: Artifact commands import_async.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5575230,43 +5575285,6 @@ description: Artifact commands import_async.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5575281,30 +5575299,12 @@ description: Artifact commands import_async.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], diff --git a/rust/kcl-lib/tests/import_async/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/import_async/artifact_graph_flowchart.snap.md index 66e748ee0..0e40d5c04 100644 --- a/rust/kcl-lib/tests/import_async/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/import_async/artifact_graph_flowchart.snap.md @@ -1,12 +1,17 @@ ```mermaid flowchart LR - subgraph path3 [Path] - 3["Path
[1109, 1159, 0]"] - 4["Segment
[1109, 1159, 0]"] - 5[Solid2d] + subgraph path5 [Path] + 5["Path
[1109, 1159, 0]"] + 8["Segment
[1109, 1159, 0]"] + 220[Solid2d] end - subgraph path13 [Path] - 13["Path
[1664, 1701, 0]"] + subgraph path6 [Path] + 6["Path
[1664, 1701, 0]"] + 9["Segment
[1324, 1362, 0]"] + 10["Segment
[1324, 1362, 0]"] + 11["Segment
[1324, 1362, 0]"] + 12["Segment
[1324, 1362, 0]"] + 13["Segment
[1324, 1362, 0]"] 14["Segment
[1324, 1362, 0]"] 15["Segment
[1324, 1362, 0]"] 16["Segment
[1324, 1362, 0]"] @@ -103,12 +108,12 @@ flowchart LR 107["Segment
[1324, 1362, 0]"] 108["Segment
[1324, 1362, 0]"] 109["Segment
[1324, 1362, 0]"] - 110["Segment
[1324, 1362, 0]"] - 111["Segment
[1324, 1362, 0]"] - 112["Segment
[1324, 1362, 0]"] - 113["Segment
[1324, 1362, 0]"] - 114["Segment
[1324, 1362, 0]"] - 115["Segment
[1767, 1865, 0]"] + 110["Segment
[1580, 1610, 0]"] + 111["Segment
[1580, 1610, 0]"] + 112["Segment
[1580, 1610, 0]"] + 113["Segment
[1580, 1610, 0]"] + 114["Segment
[1580, 1610, 0]"] + 115["Segment
[1580, 1610, 0]"] 116["Segment
[1580, 1610, 0]"] 117["Segment
[1580, 1610, 0]"] 118["Segment
[1580, 1610, 0]"] @@ -204,324 +209,319 @@ flowchart LR 208["Segment
[1580, 1610, 0]"] 209["Segment
[1580, 1610, 0]"] 210["Segment
[1580, 1610, 0]"] - 211["Segment
[1580, 1610, 0]"] - 212["Segment
[1580, 1610, 0]"] - 213["Segment
[1580, 1610, 0]"] - 214["Segment
[1580, 1610, 0]"] - 215["Segment
[1580, 1610, 0]"] - 216["Segment
[1580, 1610, 0]"] - 217["Segment
[1925, 1932, 0]"] - 218[Solid2d] + 211["Segment
[1767, 1865, 0]"] + 212["Segment
[1925, 1932, 0]"] + 219[Solid2d] end - subgraph path220 [Path] - 220["Path
[2413, 2492, 0]"] - 221["Segment
[2498, 2525, 0]"] - 222["Segment
[2531, 2559, 0]"] - 223["Segment
[2565, 2593, 0]"] - 224["Segment
[2599, 2722, 0]"] - 225["Segment
[2728, 2840, 0]"] - 226["Segment
[2846, 2853, 0]"] - 227[Solid2d] + subgraph path7 [Path] + 7["Path
[2413, 2492, 0]"] + 213["Segment
[2498, 2525, 0]"] + 214["Segment
[2531, 2559, 0]"] + 215["Segment
[2565, 2593, 0]"] + 216["Segment
[2599, 2722, 0]"] + 217["Segment
[2728, 2840, 0]"] + 218["Segment
[2846, 2853, 0]"] + 221[Solid2d] end 1["Plane
[168, 185, 0]"] 2["Plane
[1086, 1103, 0]"] - 6["Sweep Extrusion
[1165, 1193, 0]"] - 7[Wall] - 8["Cap Start"] - 9["Cap End"] - 10["SweepEdge Opposite"] - 11["SweepEdge Adjacent"] - 12["Plane
[1641, 1658, 0]"] - 219["Sweep Extrusion
[1938, 1966, 0]"] - 228["Sweep Extrusion
[2859, 2888, 0]"] + 3["Plane
[1641, 1658, 0]"] + 4["StartSketchOnFace
[2376, 2407, 0]"] + 222["Sweep Extrusion
[1165, 1193, 0]"] + 223["Sweep Extrusion
[1938, 1966, 0]"] + 224["Sweep Extrusion
[2859, 2888, 0]"] + 225[Wall] + 226[Wall] + 227[Wall] + 228[Wall] 229[Wall] - 230[Wall] - 231[Wall] - 232[Wall] + 230["Cap Start"] + 231["Cap End"] + 232["SweepEdge Opposite"] 233["SweepEdge Opposite"] - 234["SweepEdge Adjacent"] + 234["SweepEdge Opposite"] 235["SweepEdge Opposite"] - 236["SweepEdge Adjacent"] - 237["SweepEdge Opposite"] + 236["SweepEdge Opposite"] + 237["SweepEdge Adjacent"] 238["SweepEdge Adjacent"] - 239["SweepEdge Opposite"] + 239["SweepEdge Adjacent"] 240["SweepEdge Adjacent"] - 241["StartSketchOnFace
[2376, 2407, 0]"] - 2 --- 3 - 3 --- 4 - 3 ---- 6 - 3 --- 5 - 4 --- 7 - 4 --- 10 - 4 --- 11 - 4 x--> 8 - 6 --- 7 - 6 --- 8 + 241["SweepEdge Adjacent"] + 2 --- 5 + 3 --- 6 + 231 x--> 4 + 5 --- 8 + 5 --- 220 + 5 ---- 222 6 --- 9 6 --- 10 6 --- 11 - 9 --- 220 - 10 <--x 7 - 10 <--x 9 - 11 <--x 7 - 12 --- 13 - 13 --- 14 - 13 --- 15 - 13 --- 16 - 13 --- 17 - 13 --- 18 - 13 --- 19 - 13 --- 20 - 13 --- 21 - 13 --- 22 - 13 --- 23 - 13 --- 24 - 13 --- 25 - 13 --- 26 - 13 --- 27 - 13 --- 28 - 13 --- 29 - 13 --- 30 - 13 --- 31 - 13 --- 32 - 13 --- 33 - 13 --- 34 - 13 --- 35 - 13 --- 36 - 13 --- 37 - 13 --- 38 - 13 --- 39 - 13 --- 40 - 13 --- 41 - 13 --- 42 - 13 --- 43 - 13 --- 44 - 13 --- 45 - 13 --- 46 - 13 --- 47 - 13 --- 48 - 13 --- 49 - 13 --- 50 - 13 --- 51 - 13 --- 52 - 13 --- 53 - 13 --- 54 - 13 --- 55 - 13 --- 56 - 13 --- 57 - 13 --- 58 - 13 --- 59 - 13 --- 60 - 13 --- 61 - 13 --- 62 - 13 --- 63 - 13 --- 64 - 13 --- 65 - 13 --- 66 - 13 --- 67 - 13 --- 68 - 13 --- 69 - 13 --- 70 - 13 --- 71 - 13 --- 72 - 13 --- 73 - 13 --- 74 - 13 --- 75 - 13 --- 76 - 13 --- 77 - 13 --- 78 - 13 --- 79 - 13 --- 80 - 13 --- 81 - 13 --- 82 - 13 --- 83 - 13 --- 84 - 13 --- 85 - 13 --- 86 - 13 --- 87 - 13 --- 88 - 13 --- 89 - 13 --- 90 - 13 --- 91 - 13 --- 92 - 13 --- 93 - 13 --- 94 - 13 --- 95 - 13 --- 96 - 13 --- 97 - 13 --- 98 - 13 --- 99 - 13 --- 100 - 13 --- 101 - 13 --- 102 - 13 --- 103 - 13 --- 104 - 13 --- 105 - 13 --- 106 - 13 --- 107 - 13 --- 108 - 13 --- 109 - 13 --- 110 - 13 --- 111 - 13 --- 112 - 13 --- 113 - 13 --- 114 - 13 --- 115 - 13 --- 116 - 13 --- 117 - 13 --- 118 - 13 --- 119 - 13 --- 120 - 13 --- 121 - 13 --- 122 - 13 --- 123 - 13 --- 124 - 13 --- 125 - 13 --- 126 - 13 --- 127 - 13 --- 128 - 13 --- 129 - 13 --- 130 - 13 --- 131 - 13 --- 132 - 13 --- 133 - 13 --- 134 - 13 --- 135 - 13 --- 136 - 13 --- 137 - 13 --- 138 - 13 --- 139 - 13 --- 140 - 13 --- 141 - 13 --- 142 - 13 --- 143 - 13 --- 144 - 13 --- 145 - 13 --- 146 - 13 --- 147 - 13 --- 148 - 13 --- 149 - 13 --- 150 - 13 --- 151 - 13 --- 152 - 13 --- 153 - 13 --- 154 - 13 --- 155 - 13 --- 156 - 13 --- 157 - 13 --- 158 - 13 --- 159 - 13 --- 160 - 13 --- 161 - 13 --- 162 - 13 --- 163 - 13 --- 164 - 13 --- 165 - 13 --- 166 - 13 --- 167 - 13 --- 168 - 13 --- 169 - 13 --- 170 - 13 --- 171 - 13 --- 172 - 13 --- 173 - 13 --- 174 - 13 --- 175 - 13 --- 176 - 13 --- 177 - 13 --- 178 - 13 --- 179 - 13 --- 180 - 13 --- 181 - 13 --- 182 - 13 --- 183 - 13 --- 184 - 13 --- 185 - 13 --- 186 - 13 --- 187 - 13 --- 188 - 13 --- 189 - 13 --- 190 - 13 --- 191 - 13 --- 192 - 13 --- 193 - 13 --- 194 - 13 --- 195 - 13 --- 196 - 13 --- 197 - 13 --- 198 - 13 --- 199 - 13 --- 200 - 13 --- 201 - 13 --- 202 - 13 --- 203 - 13 --- 204 - 13 --- 205 - 13 --- 206 - 13 --- 207 - 13 --- 208 - 13 --- 209 - 13 --- 210 - 13 --- 211 - 13 --- 212 - 13 --- 213 - 13 --- 214 - 13 --- 215 - 13 --- 216 - 13 --- 217 - 13 ---- 219 - 13 --- 218 - 220 --- 221 - 220 --- 222 - 220 --- 223 - 220 --- 224 - 220 --- 225 - 220 --- 226 - 220 ---- 228 - 220 --- 227 - 221 --- 232 - 221 --- 239 - 221 --- 240 - 221 <--x 9 + 6 --- 12 + 6 --- 13 + 6 --- 14 + 6 --- 15 + 6 --- 16 + 6 --- 17 + 6 --- 18 + 6 --- 19 + 6 --- 20 + 6 --- 21 + 6 --- 22 + 6 --- 23 + 6 --- 24 + 6 --- 25 + 6 --- 26 + 6 --- 27 + 6 --- 28 + 6 --- 29 + 6 --- 30 + 6 --- 31 + 6 --- 32 + 6 --- 33 + 6 --- 34 + 6 --- 35 + 6 --- 36 + 6 --- 37 + 6 --- 38 + 6 --- 39 + 6 --- 40 + 6 --- 41 + 6 --- 42 + 6 --- 43 + 6 --- 44 + 6 --- 45 + 6 --- 46 + 6 --- 47 + 6 --- 48 + 6 --- 49 + 6 --- 50 + 6 --- 51 + 6 --- 52 + 6 --- 53 + 6 --- 54 + 6 --- 55 + 6 --- 56 + 6 --- 57 + 6 --- 58 + 6 --- 59 + 6 --- 60 + 6 --- 61 + 6 --- 62 + 6 --- 63 + 6 --- 64 + 6 --- 65 + 6 --- 66 + 6 --- 67 + 6 --- 68 + 6 --- 69 + 6 --- 70 + 6 --- 71 + 6 --- 72 + 6 --- 73 + 6 --- 74 + 6 --- 75 + 6 --- 76 + 6 --- 77 + 6 --- 78 + 6 --- 79 + 6 --- 80 + 6 --- 81 + 6 --- 82 + 6 --- 83 + 6 --- 84 + 6 --- 85 + 6 --- 86 + 6 --- 87 + 6 --- 88 + 6 --- 89 + 6 --- 90 + 6 --- 91 + 6 --- 92 + 6 --- 93 + 6 --- 94 + 6 --- 95 + 6 --- 96 + 6 --- 97 + 6 --- 98 + 6 --- 99 + 6 --- 100 + 6 --- 101 + 6 --- 102 + 6 --- 103 + 6 --- 104 + 6 --- 105 + 6 --- 106 + 6 --- 107 + 6 --- 108 + 6 --- 109 + 6 --- 110 + 6 --- 111 + 6 --- 112 + 6 --- 113 + 6 --- 114 + 6 --- 115 + 6 --- 116 + 6 --- 117 + 6 --- 118 + 6 --- 119 + 6 --- 120 + 6 --- 121 + 6 --- 122 + 6 --- 123 + 6 --- 124 + 6 --- 125 + 6 --- 126 + 6 --- 127 + 6 --- 128 + 6 --- 129 + 6 --- 130 + 6 --- 131 + 6 --- 132 + 6 --- 133 + 6 --- 134 + 6 --- 135 + 6 --- 136 + 6 --- 137 + 6 --- 138 + 6 --- 139 + 6 --- 140 + 6 --- 141 + 6 --- 142 + 6 --- 143 + 6 --- 144 + 6 --- 145 + 6 --- 146 + 6 --- 147 + 6 --- 148 + 6 --- 149 + 6 --- 150 + 6 --- 151 + 6 --- 152 + 6 --- 153 + 6 --- 154 + 6 --- 155 + 6 --- 156 + 6 --- 157 + 6 --- 158 + 6 --- 159 + 6 --- 160 + 6 --- 161 + 6 --- 162 + 6 --- 163 + 6 --- 164 + 6 --- 165 + 6 --- 166 + 6 --- 167 + 6 --- 168 + 6 --- 169 + 6 --- 170 + 6 --- 171 + 6 --- 172 + 6 --- 173 + 6 --- 174 + 6 --- 175 + 6 --- 176 + 6 --- 177 + 6 --- 178 + 6 --- 179 + 6 --- 180 + 6 --- 181 + 6 --- 182 + 6 --- 183 + 6 --- 184 + 6 --- 185 + 6 --- 186 + 6 --- 187 + 6 --- 188 + 6 --- 189 + 6 --- 190 + 6 --- 191 + 6 --- 192 + 6 --- 193 + 6 --- 194 + 6 --- 195 + 6 --- 196 + 6 --- 197 + 6 --- 198 + 6 --- 199 + 6 --- 200 + 6 --- 201 + 6 --- 202 + 6 --- 203 + 6 --- 204 + 6 --- 205 + 6 --- 206 + 6 --- 207 + 6 --- 208 + 6 --- 209 + 6 --- 210 + 6 --- 211 + 6 --- 212 + 6 --- 219 + 6 ---- 223 + 7 --- 213 + 7 --- 214 + 7 --- 215 + 7 --- 216 + 7 --- 217 + 7 --- 218 + 7 --- 221 + 7 ---- 224 + 231 --- 7 + 8 --- 225 + 8 x--> 230 + 8 --- 232 + 8 --- 237 + 213 --- 228 + 213 x--> 231 + 213 --- 234 + 213 --- 241 + 214 --- 227 + 214 x--> 231 + 214 --- 235 + 214 --- 240 + 215 --- 226 + 215 x--> 231 + 215 --- 236 + 215 --- 239 + 217 --- 229 + 217 x--> 231 + 217 --- 233 + 217 --- 238 + 222 --- 225 + 222 --- 230 222 --- 231 + 222 --- 232 222 --- 237 - 222 --- 238 - 222 <--x 9 - 223 --- 230 - 223 --- 235 - 223 --- 236 - 223 <--x 9 - 225 --- 229 - 225 --- 233 - 225 --- 234 - 225 <--x 9 - 228 --- 229 - 228 --- 230 - 228 --- 231 - 228 --- 232 - 228 --- 233 - 228 --- 234 - 228 --- 235 - 228 --- 236 - 228 --- 237 - 228 --- 238 - 228 --- 239 - 228 --- 240 + 224 --- 226 + 224 --- 227 + 224 --- 228 + 224 --- 229 + 224 --- 233 + 224 --- 234 + 224 --- 235 + 224 --- 236 + 224 --- 238 + 224 --- 239 + 224 --- 240 + 224 --- 241 + 232 <--x 225 + 237 <--x 225 + 236 <--x 226 + 239 <--x 226 + 240 <--x 226 + 235 <--x 227 + 240 <--x 227 + 241 <--x 227 + 234 <--x 228 + 238 <--x 228 + 241 <--x 228 233 <--x 229 - 233 <--x 8 - 234 <--x 229 - 234 <--x 232 + 238 <--x 229 + 239 <--x 229 + 233 <--x 230 + 234 <--x 230 235 <--x 230 - 235 <--x 8 - 236 <--x 229 236 <--x 230 - 237 <--x 231 - 237 <--x 8 - 238 <--x 230 - 238 <--x 231 - 239 <--x 232 - 239 <--x 8 - 240 <--x 231 - 240 <--x 232 - 9 <--x 241 + 232 <--x 231 ``` diff --git a/rust/kcl-lib/tests/import_async/ops.snap b/rust/kcl-lib/tests/import_async/ops.snap index 161c22acc..5dcd938c8 100644 --- a/rust/kcl-lib/tests/import_async/ops.snap +++ b/rust/kcl-lib/tests/import_async/ops.snap @@ -12,9 +12,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "planeOrSolid": { @@ -34,30 +31,24 @@ description: Operations executed import_async.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "cos", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -69,9 +60,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -83,9 +71,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -97,9 +82,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -111,9 +93,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -125,9 +104,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -139,9 +115,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -153,9 +126,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -167,9 +137,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -181,9 +148,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -195,9 +159,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -209,9 +170,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -223,9 +181,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -237,9 +192,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -251,9 +203,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -265,9 +214,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -279,9 +225,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -293,9 +236,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -307,9 +247,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -321,9 +258,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -335,9 +269,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -349,9 +280,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -363,9 +291,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -377,9 +302,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -391,9 +313,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -405,9 +324,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -419,9 +335,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -433,9 +346,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -447,9 +357,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -461,9 +368,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -475,9 +379,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -489,9 +390,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -503,9 +401,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -517,9 +412,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -531,9 +423,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -545,9 +434,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -559,9 +445,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -573,9 +456,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -587,9 +467,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -601,9 +478,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -615,9 +489,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -629,9 +500,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -643,9 +511,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -657,9 +522,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -671,9 +533,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -685,9 +544,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -699,9 +555,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -713,9 +566,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -727,9 +577,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -741,9 +588,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -755,9 +599,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -769,9 +610,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -783,9 +621,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -797,9 +632,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -811,9 +643,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -825,9 +654,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -839,9 +665,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -853,9 +676,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -867,9 +687,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -881,9 +698,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -895,9 +709,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -909,9 +720,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -923,9 +731,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -937,9 +742,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -951,9 +753,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -965,9 +764,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -979,9 +775,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -993,9 +786,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1007,9 +797,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1021,9 +808,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1035,9 +819,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1049,9 +830,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1063,9 +841,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1077,9 +852,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1091,9 +863,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1105,9 +874,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1119,9 +885,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1133,9 +896,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1147,9 +907,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1161,9 +918,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1175,9 +929,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1189,9 +940,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1203,9 +951,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1217,9 +962,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1231,9 +973,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1245,9 +984,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1259,9 +995,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1273,9 +1006,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1287,9 +1017,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1301,9 +1028,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1315,9 +1039,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1329,9 +1050,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1343,9 +1061,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1357,9 +1072,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1371,9 +1083,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1385,9 +1094,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1399,9 +1105,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1413,9 +1116,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1427,9 +1127,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1441,9 +1138,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1455,9 +1149,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1469,9 +1160,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1483,23 +1171,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1511,37 +1193,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1553,37 +1226,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1595,37 +1259,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1637,37 +1292,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1679,37 +1325,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1721,37 +1358,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1763,37 +1391,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1805,37 +1424,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1847,37 +1457,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1889,37 +1490,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1931,37 +1523,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1973,37 +1556,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2015,37 +1589,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2057,37 +1622,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2099,37 +1655,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2141,37 +1688,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2183,37 +1721,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2225,37 +1754,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2267,37 +1787,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2309,37 +1820,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2351,37 +1853,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2393,37 +1886,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2435,37 +1919,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2477,37 +1952,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2519,37 +1985,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2561,37 +2018,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2603,37 +2051,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2645,37 +2084,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2687,37 +2117,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2729,37 +2150,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2771,37 +2183,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2813,37 +2216,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2855,37 +2249,28 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2897,23 +2282,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2925,23 +2304,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2953,9 +2326,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2967,23 +2337,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2995,9 +2359,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3009,23 +2370,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3037,9 +2392,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3051,23 +2403,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3079,9 +2425,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3093,23 +2436,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3121,9 +2458,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3135,23 +2469,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3163,9 +2491,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3177,23 +2502,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3205,9 +2524,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3219,23 +2535,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3247,9 +2557,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3261,23 +2568,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3289,9 +2590,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3303,23 +2601,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3331,9 +2623,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3345,23 +2634,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3373,9 +2656,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3387,23 +2667,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3415,9 +2689,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3429,23 +2700,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3457,9 +2722,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3471,23 +2733,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3499,9 +2755,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3513,23 +2766,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3541,9 +2788,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3555,23 +2799,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3583,9 +2821,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3597,23 +2832,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3625,9 +2854,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3639,23 +2865,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3667,9 +2887,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3681,23 +2898,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3709,9 +2920,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3723,23 +2931,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3751,9 +2953,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3765,23 +2964,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3793,9 +2986,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3807,23 +2997,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3835,9 +3019,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3849,23 +3030,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3877,9 +3052,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3891,23 +3063,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3919,9 +3085,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3933,23 +3096,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3961,9 +3118,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3975,23 +3129,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4003,9 +3151,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4017,23 +3162,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4045,9 +3184,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4059,23 +3195,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4087,9 +3217,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4101,23 +3228,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4129,9 +3250,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4143,23 +3261,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4171,9 +3283,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4185,23 +3294,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4213,9 +3316,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4227,23 +3327,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4255,9 +3349,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4269,23 +3360,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4297,9 +3382,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4311,23 +3393,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4339,9 +3415,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4353,23 +3426,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4381,9 +3448,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4395,23 +3459,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4423,9 +3481,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4437,23 +3492,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4465,9 +3514,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4479,23 +3525,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4507,9 +3547,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4521,23 +3558,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4549,9 +3580,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4563,23 +3591,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4591,9 +3613,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4605,23 +3624,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4633,9 +3646,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4647,23 +3657,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4675,9 +3679,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4689,23 +3690,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4717,9 +3712,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4731,23 +3723,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4759,9 +3745,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4773,23 +3756,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4801,9 +3778,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4815,23 +3789,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4843,9 +3811,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4857,23 +3822,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4885,9 +3844,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4899,23 +3855,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4927,9 +3877,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4941,23 +3888,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4969,9 +3910,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4983,23 +3921,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5011,9 +3943,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5025,23 +3954,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5053,9 +3976,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5067,23 +3987,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5095,9 +4009,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5109,23 +4020,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5137,9 +4042,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5151,23 +4053,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5179,9 +4075,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5193,23 +4086,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5221,9 +4108,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5235,23 +4119,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5263,9 +4141,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5277,23 +4152,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5305,9 +4174,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5319,23 +4185,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5347,9 +4207,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5361,23 +4218,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5389,9 +4240,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5403,23 +4251,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5431,9 +4273,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5445,23 +4284,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5473,9 +4306,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5487,23 +4317,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5515,9 +4339,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5529,23 +4350,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5557,9 +4372,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5571,23 +4383,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5599,9 +4405,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5613,23 +4416,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5641,9 +4438,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5655,23 +4449,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5683,9 +4471,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5697,23 +4482,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5725,9 +4504,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5739,23 +4515,17 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5767,9 +4537,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5781,9 +4548,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5795,9 +4559,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5809,9 +4570,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5823,9 +4581,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5837,9 +4592,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5851,9 +4603,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5865,9 +4614,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5879,9 +4625,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5893,9 +4636,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5907,9 +4647,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5921,9 +4658,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5935,9 +4669,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5949,9 +4680,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5963,9 +4691,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5977,9 +4702,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5991,9 +4713,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6005,9 +4724,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6019,9 +4735,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6033,9 +4746,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6047,9 +4757,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6061,9 +4768,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6075,9 +4779,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6089,9 +4790,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6103,9 +4801,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6117,9 +4812,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6131,9 +4823,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6145,9 +4834,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6159,9 +4845,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6173,9 +4856,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6187,9 +4867,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6201,9 +4878,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6215,9 +4889,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6229,9 +4900,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6243,9 +4911,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6257,9 +4922,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6271,9 +4933,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6285,9 +4944,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6299,9 +4955,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6313,9 +4966,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6327,9 +4977,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6341,9 +4988,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6355,9 +4999,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6369,9 +5010,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6383,9 +5021,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6397,9 +5032,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6411,9 +5043,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6425,9 +5054,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6439,9 +5065,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6453,9 +5076,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6467,9 +5087,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6481,9 +5098,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6495,9 +5109,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6509,9 +5120,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6523,9 +5131,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6537,9 +5142,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6551,9 +5153,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6565,9 +5164,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6579,9 +5175,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6593,9 +5186,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6607,9 +5197,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6621,9 +5208,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6635,9 +5219,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6649,9 +5230,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6663,9 +5241,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6677,9 +5252,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6691,9 +5263,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6705,9 +5274,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6719,9 +5285,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6733,9 +5296,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6747,9 +5307,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6761,9 +5318,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6775,9 +5329,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6789,9 +5340,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6803,9 +5351,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6817,9 +5362,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6831,9 +5373,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6845,9 +5384,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6859,9 +5395,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6873,9 +5406,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6887,9 +5417,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6901,9 +5428,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6915,9 +5439,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6929,9 +5450,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6943,9 +5461,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6957,9 +5472,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6971,9 +5483,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6985,9 +5494,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6999,9 +5505,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7013,9 +5516,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7027,9 +5527,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7041,9 +5538,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7055,9 +5549,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7069,9 +5560,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7083,9 +5571,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7097,9 +5582,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7111,9 +5593,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7125,9 +5604,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7139,9 +5615,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7153,9 +5626,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7167,9 +5637,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7181,9 +5648,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7195,9 +5659,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7209,9 +5670,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7223,9 +5681,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7237,9 +5692,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7251,9 +5703,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7265,9 +5714,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7279,9 +5725,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7293,9 +5736,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7307,9 +5747,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7321,9 +5758,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7335,9 +5769,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7349,9 +5780,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7363,9 +5791,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7377,9 +5802,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7391,9 +5813,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7405,9 +5824,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7419,9 +5835,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7433,9 +5846,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7447,9 +5857,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7461,9 +5868,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7475,9 +5879,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7489,9 +5890,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7503,9 +5901,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7517,9 +5912,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7531,9 +5923,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7545,9 +5934,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7559,9 +5945,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7573,9 +5956,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7587,9 +5967,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7601,9 +5978,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7615,9 +5989,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7629,9 +6000,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7643,9 +6011,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7657,9 +6022,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7671,9 +6033,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7685,9 +6044,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7699,9 +6055,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7713,9 +6066,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7727,9 +6077,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7741,9 +6088,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7755,9 +6099,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7769,9 +6110,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7783,9 +6121,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7797,9 +6132,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7811,9 +6143,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7825,9 +6154,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7839,9 +6165,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7853,9 +6176,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7867,9 +6187,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7881,9 +6198,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7895,9 +6209,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7909,9 +6220,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7923,9 +6231,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7937,9 +6242,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7951,9 +6253,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7965,9 +6264,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7979,9 +6275,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7993,9 +6286,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8007,9 +6297,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8021,9 +6308,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8035,9 +6319,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8049,9 +6330,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8063,9 +6341,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8077,9 +6352,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8091,9 +6363,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8105,9 +6374,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8119,9 +6385,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8133,9 +6396,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8147,9 +6407,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8161,9 +6418,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8175,9 +6429,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8189,9 +6440,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8203,9 +6451,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8217,9 +6462,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8231,9 +6473,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8245,9 +6484,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8259,9 +6495,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8273,9 +6506,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8287,9 +6517,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8301,9 +6528,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8315,9 +6539,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8329,9 +6550,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8343,9 +6561,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8357,9 +6572,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8371,9 +6583,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8385,9 +6594,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8399,9 +6605,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8413,9 +6616,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8427,9 +6627,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8441,9 +6638,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8455,9 +6649,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8469,9 +6660,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8483,9 +6671,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8497,9 +6682,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8511,9 +6693,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8525,9 +6704,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8539,9 +6715,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8553,9 +6726,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8567,9 +6737,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8581,9 +6748,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8595,9 +6759,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8609,9 +6770,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8623,9 +6781,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "planeOrSolid": { @@ -8673,6 +6828,6672 @@ description: Operations executed import_async.kcl "sourceRange": [] } }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, { "labeledArgs": { "planeOrSolid": { @@ -8688,8490 +13509,6 @@ description: Operations executed import_async.kcl "type": "StdLibCall", "unlabeledArg": null }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "length": { @@ -17387,9 +13724,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -17401,9 +13735,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -17415,9 +13746,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -17429,9 +13757,6 @@ description: Operations executed import_async.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "length": { @@ -17463,5 +13788,3680 @@ description: Operations executed import_async.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/import_cycle1/artifact_commands.snap b/rust/kcl-lib/tests/import_cycle1/artifact_commands.snap index 0075075f7..4fb24823b 100644 --- a/rust/kcl-lib/tests/import_cycle1/artifact_commands.snap +++ b/rust/kcl-lib/tests/import_cycle1/artifact_commands.snap @@ -2,31 +2,4 @@ source: kcl-lib/src/simulation_tests.rs description: Artifact commands import_cycle1.kcl --- -[ - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "edge_lines_visible", - "hidden": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - } -] +[] diff --git a/rust/kcl-lib/tests/import_cycle1/execution_error.snap b/rust/kcl-lib/tests/import_cycle1/execution_error.snap index b682c0315..9863bbdfc 100644 --- a/rust/kcl-lib/tests/import_cycle1/execution_error.snap +++ b/rust/kcl-lib/tests/import_cycle1/execution_error.snap @@ -2,15 +2,13 @@ source: kcl-lib/src/simulation_tests.rs description: Error from executing import_cycle1.kcl --- -KCL ImportCycle error +KCL Internal error - × import cycle: circular import of modules is not allowed: tests/ - │ import_cycle1/import_cycle2.kcl -> tests/import_cycle1/import_cycle3.kcl - │ -> tests/import_cycle1/input.kcl + × internal: Module tests/import_cycle1/input.kcl not found in universe ╭─[3:1] 2 │ - 3 │ import two from "import_cycle2.kcl" - · ─────────────────┬───────────────── - · ╰── tests/import_cycle1/input.kcl + 3 │ import one from "input.kcl" + · ─────────────┬───────────── + · ╰── tests/import_cycle1/import_cycle3.kcl 4 │ ╰──── diff --git a/rust/kcl-lib/tests/import_file_not_exist_error/artifact_commands.snap b/rust/kcl-lib/tests/import_file_not_exist_error/artifact_commands.snap index 8b760a128..a88b08548 100644 --- a/rust/kcl-lib/tests/import_file_not_exist_error/artifact_commands.snap +++ b/rust/kcl-lib/tests/import_file_not_exist_error/artifact_commands.snap @@ -2,31 +2,4 @@ source: kcl-lib/src/simulation_tests.rs description: Artifact commands import_file_not_exist_error.kcl --- -[ - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "edge_lines_visible", - "hidden": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - } -] +[] diff --git a/rust/kcl-lib/tests/import_file_parse_error/artifact_commands.snap b/rust/kcl-lib/tests/import_file_parse_error/artifact_commands.snap index ff504f24c..b93cdb7e1 100644 --- a/rust/kcl-lib/tests/import_file_parse_error/artifact_commands.snap +++ b/rust/kcl-lib/tests/import_file_parse_error/artifact_commands.snap @@ -2,31 +2,4 @@ source: kcl-lib/src/simulation_tests.rs description: Artifact commands import_file_parse_error.kcl --- -[ - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "edge_lines_visible", - "hidden": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - } -] +[] diff --git a/rust/kcl-lib/tests/import_function_not_sketch/artifact_commands.snap b/rust/kcl-lib/tests/import_function_not_sketch/artifact_commands.snap index b7efc92d4..fd37f9814 100644 --- a/rust/kcl-lib/tests/import_function_not_sketch/artifact_commands.snap +++ b/rust/kcl-lib/tests/import_function_not_sketch/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands import_function_not_sketch.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands import_function_not_sketch.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -224,6 +224,14 @@ description: Artifact commands import_function_not_sketch.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -253,8 +261,216 @@ description: Artifact commands import_function_not_sketch.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -270,30 +486,12 @@ description: Artifact commands import_function_not_sketch.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -308,39 +506,12 @@ description: Artifact commands import_function_not_sketch.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -355,39 +526,12 @@ description: Artifact commands import_function_not_sketch.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -402,39 +546,12 @@ description: Artifact commands import_function_not_sketch.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -449,18 +566,10 @@ description: Artifact commands import_function_not_sketch.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -477,39 +586,12 @@ description: Artifact commands import_function_not_sketch.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -524,39 +606,12 @@ description: Artifact commands import_function_not_sketch.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -567,43 +622,6 @@ description: Artifact commands import_function_not_sketch.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -618,28 +636,10 @@ description: Artifact commands import_function_not_sketch.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/import_function_not_sketch/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/import_function_not_sketch/artifact_graph_flowchart.snap.md index 080d84831..d24fe1f7b 100644 --- a/rust/kcl-lib/tests/import_function_not_sketch/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/import_function_not_sketch/artifact_graph_flowchart.snap.md @@ -38,24 +38,32 @@ flowchart LR 2 --- 8 2 --- 9 2 --- 10 - 2 ---- 12 2 --- 11 - 3 --- 13 - 3 x--> 21 - 4 --- 14 - 4 --- 21 - 5 --- 15 + 2 ---- 12 + 12 <--x 3 + 3 --- 15 + 3 x--> 26 + 12 <--x 4 + 4 --- 18 + 4 --- 26 + 12 <--x 5 + 5 --- 20 5 --- 22 - 6 --- 16 - 6 --- 23 - 7 --- 17 - 7 --- 24 - 8 --- 18 - 8 --- 25 - 9 --- 19 - 9 --- 26 - 10 --- 20 - 10 --- 27 + 12 <--x 6 + 6 --- 13 + 6 --- 24 + 12 <--x 7 + 7 --- 16 + 7 --- 21 + 12 <--x 8 + 8 --- 17 + 8 --- 23 + 12 <--x 9 + 9 --- 14 + 9 --- 27 + 12 <--x 10 + 10 --- 19 + 10 --- 25 12 --- 13 12 --- 14 12 --- 15 @@ -64,33 +72,25 @@ flowchart LR 12 --- 18 12 --- 19 12 --- 20 - 12 <--x 3 12 --- 21 - 12 <--x 4 - 12 <--x 5 12 --- 22 - 12 <--x 6 12 --- 23 - 12 <--x 7 12 --- 24 - 12 <--x 8 12 --- 25 - 12 <--x 9 12 --- 26 - 12 <--x 10 12 --- 27 - 21 <--x 13 - 21 <--x 14 - 22 <--x 15 - 22 <--x 16 - 23 <--x 16 + 22 <--x 13 + 24 <--x 13 + 23 <--x 14 + 27 <--x 14 + 25 <--x 15 + 26 <--x 15 + 21 <--x 16 + 24 <--x 16 + 21 <--x 17 23 <--x 17 - 24 <--x 17 - 24 <--x 18 - 25 <--x 18 + 26 <--x 18 25 <--x 19 - 26 <--x 19 - 26 <--x 20 - 27 <--x 20 - 27 <--x 13 + 27 <--x 19 + 22 <--x 20 ``` diff --git a/rust/kcl-lib/tests/import_function_not_sketch/ops.snap b/rust/kcl-lib/tests/import_function_not_sketch/ops.snap index 531c172e0..45ff1fa72 100644 --- a/rust/kcl-lib/tests/import_function_not_sketch/ops.snap +++ b/rust/kcl-lib/tests/import_function_not_sketch/ops.snap @@ -2,106 +2,4 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed import_function_not_sketch.kcl --- -[ - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "KclStdLibCall", - "name": "revolve", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "axis": { - "value": { - "type": "Object", - "value": { - "direction": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - } -] +[] diff --git a/rust/kcl-lib/tests/import_side_effect/artifact_commands.snap b/rust/kcl-lib/tests/import_side_effect/artifact_commands.snap index 86d686c11..c2cf135e2 100644 --- a/rust/kcl-lib/tests/import_side_effect/artifact_commands.snap +++ b/rust/kcl-lib/tests/import_side_effect/artifact_commands.snap @@ -54,6 +54,14 @@ description: Artifact commands import_side_effect.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -70,33 +78,6 @@ description: Artifact commands import_side_effect.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 10.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -126,8 +107,27 @@ description: Artifact commands import_side_effect.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 10.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } } ] diff --git a/rust/kcl-lib/tests/import_side_effect/ops.snap b/rust/kcl-lib/tests/import_side_effect/ops.snap index b413a6cba..5be330e7e 100644 --- a/rust/kcl-lib/tests/import_side_effect/ops.snap +++ b/rust/kcl-lib/tests/import_side_effect/ops.snap @@ -2,20 +2,4 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed import_side_effect.kcl --- -[ - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "String", - "value": "XY" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - } -] +[] diff --git a/rust/kcl-lib/tests/import_whole/artifact_commands.snap b/rust/kcl-lib/tests/import_whole/artifact_commands.snap index d0b669fef..000af61f2 100644 --- a/rust/kcl-lib/tests/import_whole/artifact_commands.snap +++ b/rust/kcl-lib/tests/import_whole/artifact_commands.snap @@ -78,6 +78,14 @@ description: Artifact commands import_whole.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -94,33 +102,6 @@ description: Artifact commands import_whole.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 381.0, - "y": 127.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -150,8 +131,27 @@ description: Artifact commands import_whole.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 381.0, + "y": 127.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -181,13 +181,6 @@ description: Artifact commands import_whole.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -196,6 +189,40 @@ description: Artifact commands import_whole.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -205,34 +232,6 @@ description: Artifact commands import_whole.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -247,9 +246,10 @@ description: Artifact commands import_whole.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } } ] diff --git a/rust/kcl-lib/tests/import_whole/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/import_whole/artifact_graph_flowchart.snap.md index 628dc3116..7eea8e863 100644 --- a/rust/kcl-lib/tests/import_whole/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/import_whole/artifact_graph_flowchart.snap.md @@ -14,18 +14,18 @@ flowchart LR 10["SweepEdge Adjacent"] 1 --- 2 2 --- 3 - 2 ---- 5 2 --- 4 + 2 ---- 5 3 --- 6 + 3 x--> 7 3 --- 9 3 --- 10 - 3 x--> 7 5 --- 6 5 --- 7 5 --- 8 5 --- 9 5 --- 10 9 <--x 6 - 9 <--x 8 10 <--x 6 + 9 <--x 8 ``` diff --git a/rust/kcl-lib/tests/import_whole/ops.snap b/rust/kcl-lib/tests/import_whole/ops.snap index 1c8aa6dea..eb1ae8d97 100644 --- a/rust/kcl-lib/tests/import_whole/ops.snap +++ b/rust/kcl-lib/tests/import_whole/ops.snap @@ -12,53 +12,6 @@ description: Operations executed import_whole.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 10.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/intersect_cubes/artifact_commands.snap b/rust/kcl-lib/tests/intersect_cubes/artifact_commands.snap index d38d9ed17..bcc030769 100644 --- a/rust/kcl-lib/tests/intersect_cubes/artifact_commands.snap +++ b/rust/kcl-lib/tests/intersect_cubes/artifact_commands.snap @@ -54,347 +54,6 @@ description: Artifact commands intersect_cubes.kcl "hide": true } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -10.0, - "y": -10.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 10.0, - "y": -10.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 10.0, - "y": 10.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -10.0, - "y": 10.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 20.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -440,7 +99,29 @@ description: Artifact commands intersect_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -10.0, + "y": -10.0, + "z": 0.0 + } } }, { @@ -463,6 +144,44 @@ description: Artifact commands intersect_cubes.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 10.0, + "y": -10.0, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -480,6 +199,23 @@ description: Artifact commands intersect_cubes.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 10.0, + "y": 10.0, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -497,6 +233,23 @@ description: Artifact commands intersect_cubes.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -10.0, + "y": 10.0, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -522,6 +275,30 @@ description: Artifact commands intersect_cubes.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -538,6 +315,17 @@ description: Artifact commands intersect_cubes.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 20.0, + "faces": null, + "opposite": "None" + } + }, { "cmdId": "[uuid]", "range": [], @@ -549,6 +337,22 @@ description: Artifact commands intersect_cubes.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -560,8 +364,223 @@ description: Artifact commands intersect_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -577,26 +596,7 @@ description: Artifact commands intersect_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -615,39 +615,12 @@ description: Artifact commands intersect_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -662,39 +635,12 @@ description: Artifact commands intersect_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -709,39 +655,12 @@ description: Artifact commands intersect_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -756,9 +675,90 @@ description: Artifact commands intersect_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { diff --git a/rust/kcl-lib/tests/intersect_cubes/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/intersect_cubes/artifact_graph_flowchart.snap.md index a7772384c..e25def809 100644 --- a/rust/kcl-lib/tests/intersect_cubes/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/intersect_cubes/artifact_graph_flowchart.snap.md @@ -1,160 +1,160 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[58, 113, 0]"] - 3["Segment
[121, 177, 0]"] - 4["Segment
[185, 241, 0]"] - 5["Segment
[249, 305, 0]"] - 6["Segment
[313, 320, 0]"] - 7[Solid2d] + subgraph path3 [Path] + 3["Path
[58, 113, 0]"] + 5["Segment
[121, 177, 0]"] + 8["Segment
[185, 241, 0]"] + 10["Segment
[249, 305, 0]"] + 11["Segment
[313, 320, 0]"] + 13[Solid2d] end - subgraph path24 [Path] - 24["Path
[58, 113, 0]"] - 25["Segment
[121, 177, 0]"] - 26["Segment
[185, 241, 0]"] - 27["Segment
[249, 305, 0]"] - 28["Segment
[313, 320, 0]"] - 29[Solid2d] + subgraph path4 [Path] + 4["Path
[58, 113, 0]"] + 6["Segment
[121, 177, 0]"] + 7["Segment
[185, 241, 0]"] + 9["Segment
[249, 305, 0]"] + 12["Segment
[313, 320, 0]"] + 14[Solid2d] end 1["Plane
[33, 50, 0]"] - 8["Sweep Extrusion
[328, 354, 0]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12[Wall] - 13["Cap Start"] - 14["Cap End"] - 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 23["Plane
[33, 50, 0]"] - 30["Sweep Extrusion
[328, 354, 0]"] - 31[Wall] - 32[Wall] - 33[Wall] - 34[Wall] - 35["Cap Start"] - 36["Cap End"] + 2["Plane
[33, 50, 0]"] + 15["Sweep Extrusion
[328, 354, 0]"] + 16["Sweep Extrusion
[328, 354, 0]"] + 17["CompositeSolid Intersect
[448, 477, 0]"] + 18[Wall] + 19[Wall] + 20[Wall] + 21[Wall] + 22[Wall] + 23[Wall] + 24[Wall] + 25[Wall] + 26["Cap Start"] + 27["Cap Start"] + 28["Cap End"] + 29["Cap End"] + 30["SweepEdge Opposite"] + 31["SweepEdge Opposite"] + 32["SweepEdge Opposite"] + 33["SweepEdge Opposite"] + 34["SweepEdge Opposite"] + 35["SweepEdge Opposite"] + 36["SweepEdge Opposite"] 37["SweepEdge Opposite"] 38["SweepEdge Adjacent"] - 39["SweepEdge Opposite"] + 39["SweepEdge Adjacent"] 40["SweepEdge Adjacent"] - 41["SweepEdge Opposite"] + 41["SweepEdge Adjacent"] 42["SweepEdge Adjacent"] - 43["SweepEdge Opposite"] + 43["SweepEdge Adjacent"] 44["SweepEdge Adjacent"] - 45["CompositeSolid Intersect
[448, 477, 0]"] - 1 --- 2 - 2 --- 3 + 45["SweepEdge Adjacent"] + 1 --- 3 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 9 - 3 --- 15 - 3 --- 16 - 3 x--> 13 - 4 --- 10 - 4 --- 17 - 4 --- 18 - 4 x--> 13 - 5 --- 11 - 5 --- 19 - 5 --- 20 - 5 x--> 13 - 6 --- 12 + 3 --- 5 + 3 --- 8 + 3 --- 10 + 3 --- 11 + 3 --- 13 + 3 ---- 16 + 3 <--x 17 + 4 --- 6 + 4 --- 7 + 4 --- 9 + 4 --- 12 + 4 --- 14 + 4 ---- 15 + 4 <--x 17 + 5 --- 24 + 5 x--> 27 + 5 --- 35 + 5 --- 42 6 --- 21 - 6 --- 22 - 6 x--> 13 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 - 8 --- 16 - 8 --- 17 - 8 --- 18 - 8 --- 19 - 8 --- 20 - 8 --- 21 - 8 --- 22 - 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 10 - 17 <--x 10 - 17 <--x 14 - 18 <--x 10 - 18 <--x 11 - 19 <--x 11 - 19 <--x 14 - 20 <--x 11 - 20 <--x 12 - 21 <--x 12 - 21 <--x 14 - 22 <--x 9 - 22 <--x 12 - 23 --- 24 - 24 --- 25 - 24 --- 26 - 24 --- 27 - 24 --- 28 - 24 ---- 30 - 24 --- 29 - 25 --- 31 - 25 --- 37 - 25 --- 38 - 25 x--> 35 - 26 --- 32 - 26 --- 39 - 26 --- 40 - 26 x--> 35 - 27 --- 33 - 27 --- 41 - 27 --- 42 - 27 x--> 35 - 28 --- 34 - 28 --- 43 - 28 --- 44 - 28 x--> 35 - 30 --- 31 - 30 --- 32 - 30 --- 33 - 30 --- 34 - 30 --- 35 - 30 --- 36 - 30 --- 37 - 30 --- 38 - 30 --- 39 - 30 --- 40 - 30 --- 41 - 30 --- 42 - 30 --- 43 - 30 --- 44 - 37 <--x 31 - 37 <--x 36 - 38 <--x 31 - 38 <--x 32 - 39 <--x 32 - 39 <--x 36 - 40 <--x 32 - 40 <--x 33 - 41 <--x 33 - 41 <--x 36 - 42 <--x 33 - 42 <--x 34 - 43 <--x 34 - 43 <--x 36 - 44 <--x 31 - 44 <--x 34 - 2 <--x 45 - 24 <--x 45 + 6 x--> 26 + 6 --- 31 + 6 --- 38 + 7 --- 19 + 7 x--> 26 + 7 --- 30 + 7 --- 41 + 8 --- 25 + 8 x--> 27 + 8 --- 34 + 8 --- 44 + 9 --- 18 + 9 x--> 26 + 9 --- 33 + 9 --- 40 + 10 --- 23 + 10 x--> 27 + 10 --- 37 + 10 --- 43 + 11 --- 22 + 11 x--> 27 + 11 --- 36 + 11 --- 45 + 12 --- 20 + 12 x--> 26 + 12 --- 32 + 12 --- 39 + 15 --- 18 + 15 --- 19 + 15 --- 20 + 15 --- 21 + 15 --- 26 + 15 --- 28 + 15 --- 30 + 15 --- 31 + 15 --- 32 + 15 --- 33 + 15 --- 38 + 15 --- 39 + 15 --- 40 + 15 --- 41 + 16 --- 22 + 16 --- 23 + 16 --- 24 + 16 --- 25 + 16 --- 27 + 16 --- 29 + 16 --- 34 + 16 --- 35 + 16 --- 36 + 16 --- 37 + 16 --- 42 + 16 --- 43 + 16 --- 44 + 16 --- 45 + 33 <--x 18 + 40 <--x 18 + 41 <--x 18 + 30 <--x 19 + 38 <--x 19 + 41 <--x 19 + 32 <--x 20 + 39 <--x 20 + 40 <--x 20 + 31 <--x 21 + 38 <--x 21 + 39 <--x 21 + 36 <--x 22 + 43 <--x 22 + 45 <--x 22 + 37 <--x 23 + 43 <--x 23 + 44 <--x 23 + 35 <--x 24 + 42 <--x 24 + 45 <--x 24 + 34 <--x 25 + 42 <--x 25 + 44 <--x 25 + 30 <--x 28 + 31 <--x 28 + 32 <--x 28 + 33 <--x 28 + 34 <--x 29 + 35 <--x 29 + 36 <--x 29 + 37 <--x 29 ``` diff --git a/rust/kcl-lib/tests/intersect_cubes/ops.snap b/rust/kcl-lib/tests/intersect_cubes/ops.snap index 329b45a72..205968529 100644 --- a/rust/kcl-lib/tests/intersect_cubes/ops.snap +++ b/rust/kcl-lib/tests/intersect_cubes/ops.snap @@ -4,15 +4,19 @@ description: Operations executed intersect_cubes.kcl --- [ { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cube", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } }, - "sourceRange": [] + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { "labeledArgs": { @@ -61,35 +65,6 @@ description: Operations executed intersect_cubes.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cube", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -123,7 +98,26 @@ description: Operations executed intersect_cubes.kcl } }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -152,5 +146,11 @@ description: Operations executed intersect_cubes.kcl "sourceRange": [], "type": "StdLibCall", "unlabeledArg": null + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/kcl_samples/80-20-rail/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/80-20-rail/artifact_commands.snap index 9d2cf0666..2bbfd48a3 100644 --- a/rust/kcl-lib/tests/kcl_samples/80-20-rail/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/80-20-rail/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands 80-20-rail.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands 80-20-rail.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1353,6 +1353,32 @@ description: Artifact commands 80-20-rail.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1369,33 +1395,6 @@ description: Artifact commands 80-20-rail.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 22.95525, - "y": 19.049999999999997, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1425,26 +1424,27 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 22.95525, + "y": 19.049999999999997, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "start_path" } }, { @@ -1474,6 +1474,14 @@ description: Artifact commands 80-20-rail.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1485,8 +1493,1755 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1498,34 +3253,6 @@ description: Artifact commands 80-20-rail.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1536,43 +3263,6 @@ description: Artifact commands 80-20-rail.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1583,43 +3273,6 @@ description: Artifact commands 80-20-rail.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1630,43 +3283,6 @@ description: Artifact commands 80-20-rail.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1677,43 +3293,6 @@ description: Artifact commands 80-20-rail.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1724,43 +3303,6 @@ description: Artifact commands 80-20-rail.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1771,43 +3313,6 @@ description: Artifact commands 80-20-rail.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1822,39 +3327,12 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1869,39 +3347,12 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1912,1829 +3363,6 @@ description: Artifact commands 80-20-rail.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3749,25 +3377,27 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -3777,9 +3407,10 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3796,25 +3427,27 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -3824,9 +3457,10 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3843,25 +3477,27 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -3871,9 +3507,10 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3890,25 +3527,27 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -3918,9 +3557,10 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3937,25 +3577,27 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -3965,9 +3607,10 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3984,25 +3627,27 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4012,9 +3657,10 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4031,25 +3677,27 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4059,9 +3707,10 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4078,25 +3727,27 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4106,9 +3757,10 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4125,25 +3777,27 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4153,9 +3807,10 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4172,25 +3827,27 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4200,9 +3857,10 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4219,25 +3877,27 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4247,16 +3907,17 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4266,18 +3927,20 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4294,16 +3957,17 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4313,18 +3977,20 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4341,16 +4007,17 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4360,18 +4027,20 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4388,16 +4057,17 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4407,18 +4077,20 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4435,16 +4107,17 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4454,18 +4127,20 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4482,16 +4157,17 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4501,18 +4177,20 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4529,16 +4207,17 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4548,16 +4227,17 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4567,7 +4247,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4577,7 +4257,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4587,7 +4267,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4597,7 +4277,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4607,7 +4287,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4617,7 +4297,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4627,7 +4307,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4637,7 +4317,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4647,7 +4327,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4657,7 +4337,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4667,7 +4347,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4677,7 +4357,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4687,7 +4367,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4697,7 +4377,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4707,7 +4387,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4717,7 +4397,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4727,7 +4407,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4737,7 +4417,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4747,7 +4427,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4757,7 +4437,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4767,7 +4447,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4777,7 +4457,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4787,7 +4467,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4797,7 +4477,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4807,7 +4487,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4817,7 +4497,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4827,7 +4507,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4837,7 +4517,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4847,7 +4527,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4857,7 +4537,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4867,7 +4547,7 @@ description: Artifact commands 80-20-rail.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5065,6 +4745,166 @@ description: Artifact commands 80-20-rail.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5256,5 +5096,165 @@ description: Artifact commands 80-20-rail.kcl "tolerance": 0.0000001, "cut_type": "fillet" } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/80-20-rail/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/80-20-rail/artifact_graph_flowchart.snap.md index a0c301f96..a64dd2660 100644 --- a/rust/kcl-lib/tests/kcl_samples/80-20-rail/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/80-20-rail/artifact_graph_flowchart.snap.md @@ -2,78 +2,78 @@ flowchart LR subgraph path2 [Path] 2["Path
[349, 446, 0]"] - 3["Segment
[454, 518, 0]"] - 4["Segment
[526, 594, 0]"] - 5["Segment
[602, 634, 0]"] - 6["Segment
[642, 710, 0]"] - 7["Segment
[718, 765, 0]"] - 8["Segment
[773, 821, 0]"] - 9["Segment
[829, 878, 0]"] - 10["Segment
[886, 984, 0]"] - 11["Segment
[992, 1040, 0]"] - 12["Segment
[1048, 1137, 0]"] - 13["Segment
[1145, 1194, 0]"] - 14["Segment
[1202, 1251, 0]"] - 15["Segment
[1259, 1292, 0]"] - 16["Segment
[1300, 1368, 0]"] - 17["Segment
[1376, 1408, 0]"] - 18["Segment
[1416, 1484, 0]"] - 19["Segment
[1492, 1554, 0]"] - 20["Segment
[1595, 1664, 0]"] - 21["Segment
[1672, 1704, 0]"] - 22["Segment
[1712, 1781, 0]"] - 23["Segment
[1789, 1836, 0]"] - 24["Segment
[1844, 1894, 0]"] - 25["Segment
[1902, 1952, 0]"] - 26["Segment
[1970, 2080, 0]"] - 27["Segment
[2098, 2147, 0]"] - 28["Segment
[2161, 2256, 0]"] - 29["Segment
[2270, 2320, 0]"] - 30["Segment
[2334, 2383, 0]"] - 31["Segment
[2391, 2424, 0]"] - 32["Segment
[2432, 2501, 0]"] - 33["Segment
[2509, 2541, 0]"] - 34["Segment
[2549, 2618, 0]"] - 35["Segment
[2659, 2720, 0]"] - 36["Segment
[2728, 2797, 0]"] - 37["Segment
[2805, 2838, 0]"] - 38["Segment
[2846, 2915, 0]"] - 39["Segment
[2923, 2972, 0]"] - 40["Segment
[2980, 3030, 0]"] - 41["Segment
[3038, 3087, 0]"] - 42["Segment
[3095, 3204, 0]"] - 43["Segment
[3212, 3262, 0]"] - 44["Segment
[3270, 3366, 0]"] - 45["Segment
[3374, 3423, 0]"] - 46["Segment
[3431, 3480, 0]"] - 47["Segment
[3488, 3522, 0]"] - 48["Segment
[3530, 3599, 0]"] - 49["Segment
[3607, 3640, 0]"] - 50["Segment
[3648, 3717, 0]"] - 51["Segment
[3725, 3788, 0]"] - 52["Segment
[3829, 3898, 0]"] - 53["Segment
[3906, 3939, 0]"] - 54["Segment
[3947, 4016, 0]"] - 55["Segment
[4024, 4073, 0]"] - 56["Segment
[4081, 4130, 0]"] - 57["Segment
[4138, 4187, 0]"] - 58["Segment
[4195, 4295, 0]"] - 59["Segment
[4303, 4353, 0]"] - 60["Segment
[4361, 4450, 0]"] - 61["Segment
[4458, 4507, 0]"] - 62["Segment
[4515, 4565, 0]"] - 63["Segment
[4573, 4607, 0]"] - 64["Segment
[4615, 4684, 0]"] - 65["Segment
[4692, 4725, 0]"] - 66["Segment
[4733, 4802, 0]"] - 67["Segment
[4810, 4817, 0]"] - 68[Solid2d] - end - subgraph path69 [Path] - 69["Path
[4881, 5059, 0]"] - 70["Segment
[4881, 5059, 0]"] + 4["Segment
[454, 518, 0]"] + 5["Segment
[526, 594, 0]"] + 6["Segment
[602, 634, 0]"] + 7["Segment
[642, 710, 0]"] + 8["Segment
[718, 765, 0]"] + 9["Segment
[773, 821, 0]"] + 10["Segment
[829, 878, 0]"] + 11["Segment
[886, 984, 0]"] + 12["Segment
[992, 1040, 0]"] + 13["Segment
[1048, 1137, 0]"] + 14["Segment
[1145, 1194, 0]"] + 15["Segment
[1202, 1251, 0]"] + 16["Segment
[1259, 1292, 0]"] + 17["Segment
[1300, 1368, 0]"] + 18["Segment
[1376, 1408, 0]"] + 19["Segment
[1416, 1484, 0]"] + 20["Segment
[1492, 1554, 0]"] + 21["Segment
[1595, 1664, 0]"] + 22["Segment
[1672, 1704, 0]"] + 23["Segment
[1712, 1781, 0]"] + 24["Segment
[1789, 1836, 0]"] + 25["Segment
[1844, 1894, 0]"] + 26["Segment
[1902, 1952, 0]"] + 27["Segment
[1970, 2080, 0]"] + 28["Segment
[2098, 2147, 0]"] + 29["Segment
[2161, 2256, 0]"] + 30["Segment
[2270, 2320, 0]"] + 31["Segment
[2334, 2383, 0]"] + 32["Segment
[2391, 2424, 0]"] + 33["Segment
[2432, 2501, 0]"] + 34["Segment
[2509, 2541, 0]"] + 35["Segment
[2549, 2618, 0]"] + 36["Segment
[2659, 2720, 0]"] + 37["Segment
[2728, 2797, 0]"] + 38["Segment
[2805, 2838, 0]"] + 39["Segment
[2846, 2915, 0]"] + 40["Segment
[2923, 2972, 0]"] + 41["Segment
[2980, 3030, 0]"] + 42["Segment
[3038, 3087, 0]"] + 43["Segment
[3095, 3204, 0]"] + 44["Segment
[3212, 3262, 0]"] + 45["Segment
[3270, 3366, 0]"] + 46["Segment
[3374, 3423, 0]"] + 47["Segment
[3431, 3480, 0]"] + 48["Segment
[3488, 3522, 0]"] + 49["Segment
[3530, 3599, 0]"] + 50["Segment
[3607, 3640, 0]"] + 51["Segment
[3648, 3717, 0]"] + 52["Segment
[3725, 3788, 0]"] + 53["Segment
[3829, 3898, 0]"] + 54["Segment
[3906, 3939, 0]"] + 55["Segment
[3947, 4016, 0]"] + 56["Segment
[4024, 4073, 0]"] + 57["Segment
[4081, 4130, 0]"] + 58["Segment
[4138, 4187, 0]"] + 59["Segment
[4195, 4295, 0]"] + 60["Segment
[4303, 4353, 0]"] + 61["Segment
[4361, 4450, 0]"] + 62["Segment
[4458, 4507, 0]"] + 63["Segment
[4515, 4565, 0]"] + 64["Segment
[4573, 4607, 0]"] + 65["Segment
[4615, 4684, 0]"] + 66["Segment
[4692, 4725, 0]"] + 67["Segment
[4733, 4802, 0]"] + 68["Segment
[4810, 4817, 0]"] 71[Solid2d] end + subgraph path3 [Path] + 3["Path
[4881, 5059, 0]"] + 69["Segment
[4881, 5059, 0]"] + 70[Solid2d] + end 1["Plane
[323, 341, 0]"] 72["Sweep Extrusion
[5068, 5096, 0]"] 73[Wall] @@ -143,132 +143,132 @@ flowchart LR 137["Cap Start"] 138["Cap End"] 139["SweepEdge Opposite"] - 140["SweepEdge Adjacent"] + 140["SweepEdge Opposite"] 141["SweepEdge Opposite"] - 142["SweepEdge Adjacent"] + 142["SweepEdge Opposite"] 143["SweepEdge Opposite"] - 144["SweepEdge Adjacent"] + 144["SweepEdge Opposite"] 145["SweepEdge Opposite"] - 146["SweepEdge Adjacent"] + 146["SweepEdge Opposite"] 147["SweepEdge Opposite"] - 148["SweepEdge Adjacent"] + 148["SweepEdge Opposite"] 149["SweepEdge Opposite"] - 150["SweepEdge Adjacent"] + 150["SweepEdge Opposite"] 151["SweepEdge Opposite"] - 152["SweepEdge Adjacent"] + 152["SweepEdge Opposite"] 153["SweepEdge Opposite"] - 154["SweepEdge Adjacent"] + 154["SweepEdge Opposite"] 155["SweepEdge Opposite"] - 156["SweepEdge Adjacent"] + 156["SweepEdge Opposite"] 157["SweepEdge Opposite"] - 158["SweepEdge Adjacent"] + 158["SweepEdge Opposite"] 159["SweepEdge Opposite"] - 160["SweepEdge Adjacent"] + 160["SweepEdge Opposite"] 161["SweepEdge Opposite"] - 162["SweepEdge Adjacent"] + 162["SweepEdge Opposite"] 163["SweepEdge Opposite"] - 164["SweepEdge Adjacent"] + 164["SweepEdge Opposite"] 165["SweepEdge Opposite"] - 166["SweepEdge Adjacent"] + 166["SweepEdge Opposite"] 167["SweepEdge Opposite"] - 168["SweepEdge Adjacent"] + 168["SweepEdge Opposite"] 169["SweepEdge Opposite"] - 170["SweepEdge Adjacent"] + 170["SweepEdge Opposite"] 171["SweepEdge Opposite"] - 172["SweepEdge Adjacent"] + 172["SweepEdge Opposite"] 173["SweepEdge Opposite"] - 174["SweepEdge Adjacent"] + 174["SweepEdge Opposite"] 175["SweepEdge Opposite"] - 176["SweepEdge Adjacent"] + 176["SweepEdge Opposite"] 177["SweepEdge Opposite"] - 178["SweepEdge Adjacent"] + 178["SweepEdge Opposite"] 179["SweepEdge Opposite"] - 180["SweepEdge Adjacent"] + 180["SweepEdge Opposite"] 181["SweepEdge Opposite"] - 182["SweepEdge Adjacent"] + 182["SweepEdge Opposite"] 183["SweepEdge Opposite"] - 184["SweepEdge Adjacent"] + 184["SweepEdge Opposite"] 185["SweepEdge Opposite"] - 186["SweepEdge Adjacent"] + 186["SweepEdge Opposite"] 187["SweepEdge Opposite"] - 188["SweepEdge Adjacent"] + 188["SweepEdge Opposite"] 189["SweepEdge Opposite"] - 190["SweepEdge Adjacent"] + 190["SweepEdge Opposite"] 191["SweepEdge Opposite"] - 192["SweepEdge Adjacent"] + 192["SweepEdge Opposite"] 193["SweepEdge Opposite"] - 194["SweepEdge Adjacent"] + 194["SweepEdge Opposite"] 195["SweepEdge Opposite"] - 196["SweepEdge Adjacent"] + 196["SweepEdge Opposite"] 197["SweepEdge Opposite"] - 198["SweepEdge Adjacent"] + 198["SweepEdge Opposite"] 199["SweepEdge Opposite"] - 200["SweepEdge Adjacent"] + 200["SweepEdge Opposite"] 201["SweepEdge Opposite"] - 202["SweepEdge Adjacent"] - 203["SweepEdge Opposite"] + 202["SweepEdge Opposite"] + 203["SweepEdge Adjacent"] 204["SweepEdge Adjacent"] - 205["SweepEdge Opposite"] + 205["SweepEdge Adjacent"] 206["SweepEdge Adjacent"] - 207["SweepEdge Opposite"] + 207["SweepEdge Adjacent"] 208["SweepEdge Adjacent"] - 209["SweepEdge Opposite"] + 209["SweepEdge Adjacent"] 210["SweepEdge Adjacent"] - 211["SweepEdge Opposite"] + 211["SweepEdge Adjacent"] 212["SweepEdge Adjacent"] - 213["SweepEdge Opposite"] + 213["SweepEdge Adjacent"] 214["SweepEdge Adjacent"] - 215["SweepEdge Opposite"] + 215["SweepEdge Adjacent"] 216["SweepEdge Adjacent"] - 217["SweepEdge Opposite"] + 217["SweepEdge Adjacent"] 218["SweepEdge Adjacent"] - 219["SweepEdge Opposite"] + 219["SweepEdge Adjacent"] 220["SweepEdge Adjacent"] - 221["SweepEdge Opposite"] + 221["SweepEdge Adjacent"] 222["SweepEdge Adjacent"] - 223["SweepEdge Opposite"] + 223["SweepEdge Adjacent"] 224["SweepEdge Adjacent"] - 225["SweepEdge Opposite"] + 225["SweepEdge Adjacent"] 226["SweepEdge Adjacent"] - 227["SweepEdge Opposite"] + 227["SweepEdge Adjacent"] 228["SweepEdge Adjacent"] - 229["SweepEdge Opposite"] + 229["SweepEdge Adjacent"] 230["SweepEdge Adjacent"] - 231["SweepEdge Opposite"] + 231["SweepEdge Adjacent"] 232["SweepEdge Adjacent"] - 233["SweepEdge Opposite"] + 233["SweepEdge Adjacent"] 234["SweepEdge Adjacent"] - 235["SweepEdge Opposite"] + 235["SweepEdge Adjacent"] 236["SweepEdge Adjacent"] - 237["SweepEdge Opposite"] + 237["SweepEdge Adjacent"] 238["SweepEdge Adjacent"] - 239["SweepEdge Opposite"] + 239["SweepEdge Adjacent"] 240["SweepEdge Adjacent"] - 241["SweepEdge Opposite"] + 241["SweepEdge Adjacent"] 242["SweepEdge Adjacent"] - 243["SweepEdge Opposite"] + 243["SweepEdge Adjacent"] 244["SweepEdge Adjacent"] - 245["SweepEdge Opposite"] + 245["SweepEdge Adjacent"] 246["SweepEdge Adjacent"] - 247["SweepEdge Opposite"] + 247["SweepEdge Adjacent"] 248["SweepEdge Adjacent"] - 249["SweepEdge Opposite"] + 249["SweepEdge Adjacent"] 250["SweepEdge Adjacent"] - 251["SweepEdge Opposite"] + 251["SweepEdge Adjacent"] 252["SweepEdge Adjacent"] - 253["SweepEdge Opposite"] + 253["SweepEdge Adjacent"] 254["SweepEdge Adjacent"] - 255["SweepEdge Opposite"] + 255["SweepEdge Adjacent"] 256["SweepEdge Adjacent"] - 257["SweepEdge Opposite"] + 257["SweepEdge Adjacent"] 258["SweepEdge Adjacent"] - 259["SweepEdge Opposite"] + 259["SweepEdge Adjacent"] 260["SweepEdge Adjacent"] - 261["SweepEdge Opposite"] + 261["SweepEdge Adjacent"] 262["SweepEdge Adjacent"] - 263["SweepEdge Opposite"] + 263["SweepEdge Adjacent"] 264["SweepEdge Adjacent"] - 265["SweepEdge Opposite"] + 265["SweepEdge Adjacent"] 266["SweepEdge Adjacent"] 267["EdgeCut Fillet
[5104, 5809, 0]"] 268["EdgeCut Fillet
[5104, 5809, 0]"] @@ -303,8 +303,7 @@ flowchart LR 297["EdgeCut Fillet
[5817, 6521, 0]"] 298["EdgeCut Fillet
[5817, 6521, 0]"] 1 --- 2 - 1 --- 69 - 2 --- 3 + 1 --- 3 2 --- 4 2 --- 5 2 --- 6 @@ -369,266 +368,267 @@ flowchart LR 2 --- 65 2 --- 66 2 --- 67 - 2 ---- 72 2 --- 68 - 3 --- 73 - 3 --- 139 - 3 --- 140 - 3 x--> 137 - 4 --- 74 - 4 --- 141 - 4 --- 142 + 2 --- 71 + 2 ---- 72 + 3 --- 69 + 3 --- 70 + 4 --- 103 4 x--> 137 - 5 --- 75 - 5 --- 143 - 5 --- 144 + 4 --- 152 + 4 --- 224 + 5 --- 102 5 x--> 137 - 6 --- 76 - 6 --- 145 - 6 --- 146 + 5 --- 168 + 5 --- 214 + 6 --- 121 6 x--> 137 - 7 --- 77 - 7 --- 147 - 7 --- 148 + 6 --- 158 + 6 --- 230 + 7 --- 89 7 x--> 137 - 8 --- 78 - 8 --- 149 - 8 --- 150 + 7 --- 192 + 7 --- 223 + 8 --- 86 8 x--> 137 - 9 --- 79 - 9 --- 151 - 9 --- 152 + 8 --- 143 + 8 --- 242 + 9 --- 130 9 x--> 137 - 10 --- 80 - 10 --- 153 - 10 --- 154 + 9 --- 202 + 9 --- 225 + 10 --- 135 10 x--> 137 - 11 --- 81 - 11 --- 155 - 11 --- 156 + 10 --- 179 + 10 --- 255 + 11 --- 133 11 x--> 137 - 12 --- 82 - 12 --- 157 - 12 --- 158 + 11 --- 177 + 11 --- 213 + 12 --- 83 12 x--> 137 - 13 --- 83 - 13 --- 159 - 13 --- 160 + 12 --- 175 + 12 --- 237 + 13 --- 85 13 x--> 137 - 14 --- 84 - 14 --- 161 - 14 --- 162 + 13 --- 145 + 13 --- 243 + 14 --- 136 14 x--> 137 - 15 --- 85 - 15 --- 163 - 15 --- 164 + 14 --- 181 + 14 --- 232 + 15 --- 122 15 x--> 137 - 16 --- 86 - 16 --- 165 - 16 --- 166 + 15 --- 172 + 15 --- 217 + 16 --- 98 16 x--> 137 - 17 --- 87 - 17 --- 167 - 17 --- 168 + 16 --- 186 + 16 --- 263 + 17 --- 78 17 x--> 137 - 18 --- 88 - 18 --- 169 - 18 --- 170 + 17 --- 180 + 17 --- 219 + 18 --- 124 18 x--> 137 - 19 --- 89 - 19 --- 171 - 19 --- 172 + 18 --- 194 + 18 --- 261 + 19 --- 81 19 x--> 137 - 20 --- 90 - 20 --- 173 - 20 --- 174 + 19 --- 193 + 19 --- 211 + 20 --- 131 20 x--> 137 - 21 --- 91 - 21 --- 175 - 21 --- 176 + 20 --- 155 + 20 --- 210 + 21 --- 77 21 x--> 137 - 22 --- 92 - 22 --- 177 - 22 --- 178 + 21 --- 160 + 21 --- 248 + 22 --- 107 22 x--> 137 - 23 --- 93 - 23 --- 179 - 23 --- 180 + 22 --- 144 + 22 --- 251 + 23 --- 115 23 x--> 137 - 24 --- 94 - 24 --- 181 - 24 --- 182 + 23 --- 163 + 23 --- 258 + 24 --- 101 24 x--> 137 - 25 --- 95 - 25 --- 183 - 25 --- 184 + 24 --- 141 + 24 --- 235 + 25 --- 106 25 x--> 137 + 25 --- 199 + 25 --- 208 26 --- 96 - 26 --- 185 - 26 --- 186 26 x--> 137 - 27 --- 97 - 27 --- 187 - 27 --- 188 + 26 --- 146 + 26 --- 212 + 27 --- 88 27 x--> 137 - 28 --- 98 - 28 --- 189 - 28 --- 190 + 27 --- 197 + 27 --- 253 + 28 --- 91 28 x--> 137 - 29 --- 99 - 29 --- 191 - 29 --- 192 + 28 --- 188 + 28 --- 229 + 29 --- 73 29 x--> 137 - 30 --- 100 - 30 --- 193 - 30 --- 194 + 29 --- 189 + 29 --- 216 + 30 --- 128 30 x--> 137 - 31 --- 101 - 31 --- 195 - 31 --- 196 + 30 --- 200 + 30 --- 231 + 31 --- 75 31 x--> 137 - 32 --- 102 - 32 --- 197 - 32 --- 198 + 31 --- 191 + 31 --- 240 + 32 --- 116 32 x--> 137 - 33 --- 103 - 33 --- 199 - 33 --- 200 + 32 --- 162 + 32 --- 204 + 33 --- 93 33 x--> 137 - 34 --- 104 - 34 --- 201 - 34 --- 202 + 33 --- 166 + 33 --- 259 + 34 --- 90 34 x--> 137 - 35 --- 105 - 35 --- 203 - 35 --- 204 + 34 --- 185 + 34 --- 245 + 35 --- 109 35 x--> 137 - 36 --- 106 - 36 --- 205 - 36 --- 206 + 35 --- 140 + 35 --- 205 + 36 --- 80 36 x--> 137 - 37 --- 107 - 37 --- 207 - 37 --- 208 + 36 --- 170 + 36 --- 241 + 37 --- 119 37 x--> 137 - 38 --- 108 - 38 --- 209 - 38 --- 210 + 37 --- 147 + 37 --- 218 + 38 --- 123 38 x--> 137 - 39 --- 109 - 39 --- 211 - 39 --- 212 + 38 --- 184 + 38 --- 233 + 39 --- 104 39 x--> 137 - 40 --- 110 - 40 --- 213 - 40 --- 214 + 39 --- 159 + 39 --- 247 + 40 --- 94 40 x--> 137 - 41 --- 111 - 41 --- 215 - 41 --- 216 + 40 --- 153 + 40 --- 257 + 41 --- 105 41 x--> 137 - 42 --- 112 - 42 --- 217 - 42 --- 218 + 41 --- 187 + 41 --- 220 + 42 --- 125 42 x--> 137 - 43 --- 113 - 43 --- 219 - 43 --- 220 + 42 --- 151 + 42 --- 228 + 43 --- 134 43 x--> 137 - 44 --- 114 - 44 --- 221 - 44 --- 222 + 43 --- 154 + 43 --- 227 + 44 --- 82 44 x--> 137 - 45 --- 115 - 45 --- 223 - 45 --- 224 + 44 --- 156 + 44 --- 264 + 45 --- 126 45 x--> 137 - 46 --- 116 - 46 --- 225 - 46 --- 226 + 45 --- 171 + 45 --- 252 + 46 --- 100 46 x--> 137 - 47 --- 117 - 47 --- 227 - 47 --- 228 + 46 --- 174 + 46 --- 226 + 47 --- 97 47 x--> 137 - 48 --- 118 - 48 --- 229 - 48 --- 230 + 47 --- 161 + 47 --- 246 + 48 --- 129 48 x--> 137 - 49 --- 119 - 49 --- 231 - 49 --- 232 + 48 --- 178 + 48 --- 203 + 49 --- 114 49 x--> 137 - 50 --- 120 - 50 --- 233 - 50 --- 234 + 49 --- 201 + 49 --- 249 + 50 --- 76 50 x--> 137 - 51 --- 121 - 51 --- 235 - 51 --- 236 + 50 --- 139 + 50 --- 266 + 51 --- 92 51 x--> 137 - 52 --- 122 - 52 --- 237 - 52 --- 238 + 51 --- 169 + 51 --- 250 + 52 --- 111 52 x--> 137 - 53 --- 123 - 53 --- 239 - 53 --- 240 + 52 --- 190 + 52 --- 221 + 53 --- 79 53 x--> 137 - 54 --- 124 - 54 --- 241 - 54 --- 242 + 53 --- 195 + 53 --- 234 + 54 --- 95 54 x--> 137 - 55 --- 125 - 55 --- 243 - 55 --- 244 + 54 --- 182 + 54 --- 260 + 55 --- 120 55 x--> 137 - 56 --- 126 - 56 --- 245 - 56 --- 246 + 55 --- 173 + 55 --- 239 + 56 --- 132 56 x--> 137 - 57 --- 127 - 57 --- 247 - 57 --- 248 + 56 --- 165 + 56 --- 254 + 57 --- 99 57 x--> 137 - 58 --- 128 - 58 --- 249 - 58 --- 250 + 57 --- 183 + 57 --- 256 + 58 --- 108 58 x--> 137 - 59 --- 129 - 59 --- 251 - 59 --- 252 + 58 --- 164 + 58 --- 262 + 59 --- 87 59 x--> 137 - 60 --- 130 - 60 --- 253 - 60 --- 254 + 59 --- 196 + 59 --- 238 + 60 --- 110 60 x--> 137 - 61 --- 131 - 61 --- 255 - 61 --- 256 + 60 --- 149 + 60 --- 215 + 61 --- 117 61 x--> 137 - 62 --- 132 - 62 --- 257 - 62 --- 258 + 61 --- 157 + 61 --- 222 + 62 --- 113 62 x--> 137 - 63 --- 133 - 63 --- 259 - 63 --- 260 + 62 --- 142 + 62 --- 206 + 63 --- 127 63 x--> 137 - 64 --- 134 - 64 --- 261 - 64 --- 262 + 63 --- 150 + 63 --- 265 + 64 --- 112 64 x--> 137 - 65 --- 135 - 65 --- 263 - 65 --- 264 + 64 --- 167 + 64 --- 236 + 65 --- 118 65 x--> 137 - 66 --- 136 - 66 --- 265 - 66 --- 266 + 65 --- 198 + 65 --- 207 + 66 --- 74 66 x--> 137 - 69 --- 70 - 69 --- 71 + 66 --- 148 + 66 --- 209 + 67 --- 84 + 67 x--> 137 + 67 --- 176 + 67 --- 244 72 --- 73 72 --- 74 72 --- 75 @@ -823,228 +823,228 @@ flowchart LR 72 --- 264 72 --- 265 72 --- 266 - 139 <--x 73 + 189 <--x 73 + 148 <--x 74 + 207 <--x 74 + 209 <--x 74 + 191 <--x 75 + 139 <--x 76 + 249 <--x 76 + 266 <--x 76 + 160 <--x 77 + 210 <--x 77 + 248 <--x 77 + 180 <--x 78 + 219 <--x 78 + 263 <--x 78 + 195 <--x 79 + 221 <--x 79 + 234 <--x 79 + 170 <--x 80 + 205 <--x 80 + 241 <--x 80 + 193 <--x 81 + 211 <--x 81 + 261 <--x 81 + 156 <--x 82 + 175 <--x 83 + 176 <--x 84 + 209 <--x 84 + 244 <--x 84 + 145 <--x 85 + 143 <--x 86 + 223 <--x 86 + 196 <--x 87 + 197 <--x 88 + 192 <--x 89 + 223 <--x 89 + 230 <--x 89 + 185 <--x 90 + 245 <--x 90 + 259 <--x 90 + 188 <--x 91 + 169 <--x 92 + 250 <--x 92 + 266 <--x 92 + 166 <--x 93 + 204 <--x 93 + 259 <--x 93 + 153 <--x 94 + 247 <--x 94 + 182 <--x 95 + 234 <--x 95 + 260 <--x 95 + 146 <--x 96 + 161 <--x 97 + 186 <--x 98 + 263 <--x 98 + 183 <--x 99 + 174 <--x 100 + 141 <--x 101 + 258 <--x 101 + 168 <--x 102 + 214 <--x 102 + 224 <--x 102 + 152 <--x 103 + 224 <--x 103 + 244 <--x 103 + 159 <--x 104 + 233 <--x 104 + 247 <--x 104 + 187 <--x 105 + 199 <--x 106 + 144 <--x 107 + 248 <--x 107 + 251 <--x 107 + 164 <--x 108 + 140 <--x 109 + 205 <--x 109 + 245 <--x 109 + 149 <--x 110 + 190 <--x 111 + 221 <--x 111 + 250 <--x 111 + 167 <--x 112 + 236 <--x 112 + 142 <--x 113 + 201 <--x 114 + 203 <--x 114 + 249 <--x 114 + 163 <--x 115 + 251 <--x 115 + 258 <--x 115 + 162 <--x 116 + 204 <--x 116 + 157 <--x 117 + 198 <--x 118 + 207 <--x 118 + 236 <--x 118 + 147 <--x 119 + 218 <--x 119 + 241 <--x 119 + 173 <--x 120 + 239 <--x 120 + 260 <--x 120 + 158 <--x 121 + 214 <--x 121 + 230 <--x 121 + 172 <--x 122 + 184 <--x 123 + 218 <--x 123 + 233 <--x 123 + 194 <--x 124 + 219 <--x 124 + 261 <--x 124 + 151 <--x 125 + 171 <--x 126 + 150 <--x 127 + 200 <--x 128 + 178 <--x 129 + 203 <--x 129 + 202 <--x 130 + 155 <--x 131 + 210 <--x 131 + 211 <--x 131 + 165 <--x 132 + 239 <--x 132 + 177 <--x 133 + 154 <--x 134 + 179 <--x 135 + 181 <--x 136 139 <--x 138 - 140 <--x 73 - 140 <--x 74 - 141 <--x 74 + 140 <--x 138 141 <--x 138 - 142 <--x 74 - 142 <--x 75 - 143 <--x 75 + 142 <--x 138 143 <--x 138 - 144 <--x 75 - 144 <--x 76 - 145 <--x 76 + 144 <--x 138 145 <--x 138 - 146 <--x 76 - 146 <--x 77 - 147 <--x 77 + 146 <--x 138 147 <--x 138 - 149 <--x 78 + 148 <--x 138 149 <--x 138 - 151 <--x 79 + 150 <--x 138 151 <--x 138 - 153 <--x 80 + 152 <--x 138 153 <--x 138 - 155 <--x 81 + 154 <--x 138 155 <--x 138 - 157 <--x 82 + 156 <--x 138 157 <--x 138 - 159 <--x 83 + 158 <--x 138 159 <--x 138 - 161 <--x 84 + 160 <--x 138 161 <--x 138 - 163 <--x 85 + 162 <--x 138 163 <--x 138 - 164 <--x 85 - 164 <--x 86 - 165 <--x 86 + 164 <--x 138 165 <--x 138 - 166 <--x 86 - 166 <--x 87 - 167 <--x 87 + 166 <--x 138 167 <--x 138 - 168 <--x 87 - 168 <--x 88 - 169 <--x 88 + 168 <--x 138 169 <--x 138 - 170 <--x 88 - 170 <--x 89 - 171 <--x 89 + 170 <--x 138 171 <--x 138 - 172 <--x 89 - 172 <--x 90 - 173 <--x 90 + 172 <--x 138 173 <--x 138 - 174 <--x 90 - 174 <--x 91 - 175 <--x 91 + 174 <--x 138 175 <--x 138 - 176 <--x 91 - 176 <--x 92 - 177 <--x 92 + 176 <--x 138 177 <--x 138 - 178 <--x 92 - 178 <--x 93 - 179 <--x 93 + 178 <--x 138 179 <--x 138 - 181 <--x 94 + 180 <--x 138 181 <--x 138 - 183 <--x 95 + 182 <--x 138 183 <--x 138 - 185 <--x 96 + 184 <--x 138 185 <--x 138 - 187 <--x 97 + 186 <--x 138 187 <--x 138 - 189 <--x 98 + 188 <--x 138 189 <--x 138 - 191 <--x 99 + 190 <--x 138 191 <--x 138 - 193 <--x 100 + 192 <--x 138 193 <--x 138 - 195 <--x 101 + 194 <--x 138 195 <--x 138 - 196 <--x 101 - 196 <--x 102 - 197 <--x 102 + 196 <--x 138 197 <--x 138 - 198 <--x 102 - 198 <--x 103 - 199 <--x 103 + 198 <--x 138 199 <--x 138 - 200 <--x 103 - 200 <--x 104 - 201 <--x 104 + 200 <--x 138 201 <--x 138 - 202 <--x 104 - 202 <--x 105 - 203 <--x 105 - 203 <--x 138 - 204 <--x 105 - 204 <--x 106 - 205 <--x 106 - 205 <--x 138 - 206 <--x 106 - 206 <--x 107 - 207 <--x 107 - 207 <--x 138 - 208 <--x 107 - 208 <--x 108 - 209 <--x 108 - 209 <--x 138 - 210 <--x 108 - 210 <--x 109 - 211 <--x 109 - 211 <--x 138 - 213 <--x 110 - 213 <--x 138 - 215 <--x 111 - 215 <--x 138 - 217 <--x 112 - 217 <--x 138 - 219 <--x 113 - 219 <--x 138 - 221 <--x 114 - 221 <--x 138 - 223 <--x 115 - 223 <--x 138 - 225 <--x 116 - 225 <--x 138 - 227 <--x 117 - 227 <--x 138 - 228 <--x 117 - 228 <--x 118 - 229 <--x 118 - 229 <--x 138 - 230 <--x 118 - 230 <--x 119 - 231 <--x 119 - 231 <--x 138 - 232 <--x 119 - 232 <--x 120 - 233 <--x 120 - 233 <--x 138 - 234 <--x 120 - 234 <--x 121 - 235 <--x 121 - 235 <--x 138 - 236 <--x 121 - 236 <--x 122 - 237 <--x 122 - 237 <--x 138 - 238 <--x 122 - 238 <--x 123 - 239 <--x 123 - 239 <--x 138 - 240 <--x 123 - 240 <--x 124 - 241 <--x 124 - 241 <--x 138 - 242 <--x 124 - 242 <--x 125 - 243 <--x 125 - 243 <--x 138 - 245 <--x 126 - 245 <--x 138 - 247 <--x 127 - 247 <--x 138 - 249 <--x 128 - 249 <--x 138 - 251 <--x 129 - 251 <--x 138 - 253 <--x 130 - 253 <--x 138 - 255 <--x 131 - 255 <--x 138 - 257 <--x 132 - 257 <--x 138 - 259 <--x 133 - 259 <--x 138 - 260 <--x 133 - 260 <--x 134 - 261 <--x 134 - 261 <--x 138 - 262 <--x 134 - 262 <--x 135 - 263 <--x 135 - 263 <--x 138 - 264 <--x 135 - 264 <--x 136 - 265 <--x 136 - 265 <--x 138 - 266 <--x 73 - 266 <--x 136 - 152 <--x 267 - 154 <--x 268 - 156 <--x 269 - 158 <--x 270 - 184 <--x 271 - 186 <--x 272 - 188 <--x 273 - 190 <--x 274 - 216 <--x 275 - 218 <--x 276 - 220 <--x 277 - 222 <--x 278 - 248 <--x 279 - 250 <--x 280 - 252 <--x 281 - 254 <--x 282 - 148 <--x 283 - 150 <--x 284 - 160 <--x 285 - 162 <--x 286 - 180 <--x 287 - 182 <--x 288 - 192 <--x 289 - 194 <--x 290 - 212 <--x 291 - 214 <--x 292 - 224 <--x 293 - 226 <--x 294 - 244 <--x 295 - 246 <--x 296 - 256 <--x 297 - 258 <--x 298 + 202 <--x 138 + 206 <--x 297 + 208 <--x 288 + 212 <--x 271 + 213 <--x 268 + 215 <--x 281 + 216 <--x 274 + 217 <--x 286 + 220 <--x 292 + 222 <--x 282 + 225 <--x 284 + 226 <--x 293 + 227 <--x 276 + 228 <--x 275 + 229 <--x 273 + 231 <--x 289 + 232 <--x 285 + 235 <--x 287 + 237 <--x 269 + 238 <--x 280 + 240 <--x 290 + 242 <--x 283 + 243 <--x 270 + 246 <--x 294 + 252 <--x 278 + 253 <--x 272 + 254 <--x 295 + 255 <--x 267 + 256 <--x 296 + 257 <--x 291 + 262 <--x 279 + 264 <--x 277 + 265 <--x 298 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/80-20-rail/ops.snap b/rust/kcl-lib/tests/kcl_samples/80-20-rail/ops.snap index a313a291a..6f8db391b 100644 --- a/rust/kcl-lib/tests/kcl_samples/80-20-rail/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/80-20-rail/ops.snap @@ -3,17 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed 80-20-rail.kcl --- [ - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "rail8020", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -294,6 +283,17 @@ description: Operations executed 80-20-rail.kcl }, "sourceRange": [] }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "rail8020", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_commands.snap index c2c280e4b..cc927e657 100644 --- a/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands axial-fan.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands axial-fan.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -173,6 +173,32 @@ description: Artifact commands axial-fan.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -189,33 +215,6 @@ description: Artifact commands axial-fan.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -245,8 +244,36 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -262,9 +289,8 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -283,33 +309,6 @@ description: Artifact commands axial-fan.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 54.75, - "y": 52.5, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -339,8 +338,36 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 54.75, + "y": 52.5, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -356,9 +383,8 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -377,33 +403,6 @@ description: Artifact commands axial-fan.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -50.25, - "y": 52.5, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -433,8 +432,36 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -50.25, + "y": 52.5, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -450,9 +477,8 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -471,33 +497,6 @@ description: Artifact commands axial-fan.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 54.75, - "y": -52.5, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -527,8 +526,36 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 54.75, + "y": -52.5, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -544,9 +571,8 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -565,33 +591,6 @@ description: Artifact commands axial-fan.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -50.25, - "y": -52.5, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -621,26 +620,27 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -50.25, + "y": -52.5, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "start_path" } }, { @@ -670,6 +670,14 @@ description: Artifact commands axial-fan.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -681,8 +689,243 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -698,30 +941,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -736,39 +961,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -783,39 +981,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -830,39 +1001,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -877,18 +1021,10 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -905,39 +1041,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -952,39 +1061,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -999,39 +1081,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1042,43 +1097,6 @@ description: Artifact commands axial-fan.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1093,30 +1111,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1129,13 +1129,6 @@ description: Artifact commands axial-fan.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1156,6 +1149,13 @@ description: Artifact commands axial-fan.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1334,411 +1334,24 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -4.0, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -1768,412 +1381,11 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -4.0, + "faces": null, + "opposite": "None" } }, { @@ -2187,418 +1399,6 @@ description: Artifact commands axial-fan.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -2614,7 +1414,8 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -2625,6 +1426,914 @@ description: Artifact commands axial-fan.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2638,7 +2347,7 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2647,17 +2356,16 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2676,39 +2384,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2723,39 +2404,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2770,39 +2424,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2817,39 +2444,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2864,39 +2464,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2911,39 +2484,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2958,39 +2504,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3005,9 +2524,490 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3022,13 +3022,6 @@ description: Artifact commands axial-fan.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3049,6 +3042,13 @@ description: Artifact commands axial-fan.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3204,6 +3204,14 @@ description: Artifact commands axial-fan.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3215,8 +3223,216 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -3232,30 +3448,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3270,39 +3468,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3317,39 +3488,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3364,39 +3508,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3411,18 +3528,10 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3439,39 +3548,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3486,39 +3568,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3533,39 +3588,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3580,28 +3608,8 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -3616,33 +3624,6 @@ description: Artifact commands axial-fan.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 55.2, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3672,8 +3653,27 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 55.2, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -3699,13 +3699,6 @@ description: Artifact commands axial-fan.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3714,6 +3707,40 @@ description: Artifact commands axial-fan.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3723,34 +3750,6 @@ description: Artifact commands axial-fan.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3765,9 +3764,10 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3782,13 +3782,6 @@ description: Artifact commands axial-fan.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3809,6 +3802,13 @@ description: Artifact commands axial-fan.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3885,6 +3885,32 @@ description: Artifact commands axial-fan.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3897,33 +3923,6 @@ description: Artifact commands axial-fan.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 55.2, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3953,17 +3952,27 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 55.2, + "y": 0.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -3975,6 +3984,23 @@ description: Artifact commands axial-fan.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3987,33 +4013,6 @@ description: Artifact commands axial-fan.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 54.75, - "y": 52.5, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4043,17 +4042,27 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 54.75, + "y": 52.5, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -4065,6 +4074,23 @@ description: Artifact commands axial-fan.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4077,33 +4103,6 @@ description: Artifact commands axial-fan.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -50.25, - "y": 52.5, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4133,17 +4132,27 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -50.25, + "y": 52.5, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -4155,6 +4164,23 @@ description: Artifact commands axial-fan.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4167,33 +4193,6 @@ description: Artifact commands axial-fan.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 54.75, - "y": -52.5, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4223,17 +4222,27 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 54.75, + "y": -52.5, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -4245,6 +4254,23 @@ description: Artifact commands axial-fan.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4257,33 +4283,6 @@ description: Artifact commands axial-fan.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -50.25, - "y": -52.5, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4313,26 +4312,27 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -50.25, + "y": -52.5, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "start_path" } }, { @@ -4358,6 +4358,14 @@ description: Artifact commands axial-fan.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4369,8 +4377,243 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -4386,30 +4629,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4424,39 +4649,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4471,39 +4669,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4518,39 +4689,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4565,18 +4709,10 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4593,39 +4729,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4640,39 +4749,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4687,39 +4769,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4734,39 +4789,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4781,28 +4809,8 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -4817,33 +4825,6 @@ description: Artifact commands axial-fan.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 11.2, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4873,8 +4854,27 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 11.2, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -4900,13 +4900,6 @@ description: Artifact commands axial-fan.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4915,6 +4908,40 @@ description: Artifact commands axial-fan.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4924,34 +4951,6 @@ description: Artifact commands axial-fan.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4966,9 +4965,18 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -4983,33 +4991,6 @@ description: Artifact commands axial-fan.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 10.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5039,8 +5020,27 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 10.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -5066,13 +5066,6 @@ description: Artifact commands axial-fan.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5081,6 +5074,40 @@ description: Artifact commands axial-fan.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5090,34 +5117,6 @@ description: Artifact commands axial-fan.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5132,9 +5131,10 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5154,86 +5154,6 @@ description: Artifact commands axial-fan.kcl "ambient_occlusion": 0.0 } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5330,6 +5250,86 @@ description: Artifact commands axial-fan.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5369,6 +5369,14 @@ description: Artifact commands axial-fan.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5385,33 +5393,6 @@ description: Artifact commands axial-fan.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 10.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5441,8 +5422,36 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 10.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -5472,13 +5481,6 @@ description: Artifact commands axial-fan.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5487,6 +5489,40 @@ description: Artifact commands axial-fan.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5496,34 +5532,6 @@ description: Artifact commands axial-fan.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5538,9 +5546,10 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5560,6 +5569,30 @@ description: Artifact commands axial-fan.kcl "ambient_occlusion": 0.0 } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 2.0, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 2.0, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5609,6 +5642,14 @@ description: Artifact commands axial-fan.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5625,33 +5666,6 @@ description: Artifact commands axial-fan.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5681,8 +5695,36 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -5712,13 +5754,6 @@ description: Artifact commands axial-fan.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5727,6 +5762,40 @@ description: Artifact commands axial-fan.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5736,34 +5805,6 @@ description: Artifact commands axial-fan.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5778,9 +5819,10 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5800,48 +5842,6 @@ description: Artifact commands axial-fan.kcl "ambient_occlusion": 0.0 } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 2.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 2.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -5883,13 +5883,6 @@ description: Artifact commands axial-fan.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5910,6 +5903,13 @@ description: Artifact commands axial-fan.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6120,6 +6120,14 @@ description: Artifact commands axial-fan.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6149,8 +6157,324 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -6166,30 +6490,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6204,39 +6510,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6251,39 +6530,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6298,39 +6550,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6345,39 +6570,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6392,39 +6590,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6439,18 +6610,10 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6467,39 +6630,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6514,39 +6650,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6561,39 +6670,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6608,39 +6690,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6651,43 +6706,6 @@ description: Artifact commands axial-fan.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6702,30 +6720,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6768,162 +6768,6 @@ description: Artifact commands axial-fan.kcl "hide": false } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 9.64181414529809, - "y": 11.49066664678467, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": -0.0, - "y": -0.0 - }, - "radius": 15.0, - "start": { - "unit": "degrees", - "value": 50.0 - }, - "end": { - "unit": "degrees", - "value": 64.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc_to", - "interior": { - "x": 15.8879, - "y": 21.084, - "z": 0.0 - }, - "end": { - "x": 45.7261, - "y": 26.4, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc_to", - "interior": { - "x": 46.6196, - "y": 24.7881, - "z": 0.0 - }, - "end": { - "x": 47.4563, - "y": 23.146, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc_to", - "interior": { - "x": 18.6676, - "y": 18.6676, - "z": 0.0 - }, - "end": { - "x": 9.6418, - "y": 11.4907, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6949,162 +6793,6 @@ description: Artifact commands axial-fan.kcl "hide": false } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 12.99038105676658, - "y": 7.499999999999999, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": -0.0, - "y": -0.0 - }, - "radius": 15.0, - "start": { - "unit": "degrees", - "value": 30.0 - }, - "end": { - "unit": "degrees", - "value": 44.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc_to", - "interior": { - "x": 22.1409, - "y": 14.3785, - "z": 0.0 - }, - "end": { - "x": 51.9978, - "y": 9.1686, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc_to", - "interior": { - "x": 52.2862, - "y": 7.3483, - "z": 0.0 - }, - "end": { - "x": 52.5108, - "y": 5.5191, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc_to", - "interior": { - "x": 23.9265, - "y": 11.1571, - "z": 0.0 - }, - "end": { - "x": 12.9904, - "y": 7.5, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7144,6 +6832,34 @@ description: Artifact commands axial-fan.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -7164,7 +6880,58 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 9.64181414529809, + "y": 11.49066664678467, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 12.99038105676658, + "y": 7.499999999999999, + "z": 0.0 + } } }, { @@ -7180,6 +6947,33 @@ description: Artifact commands axial-fan.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -7187,6 +6981,91 @@ description: Artifact commands axial-fan.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": -0.0, + "y": -0.0 + }, + "radius": 15.0, + "start": { + "unit": "degrees", + "value": 50.0 + }, + "end": { + "unit": "degrees", + "value": 64.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": -0.0, + "y": -0.0 + }, + "radius": 15.0, + "start": { + "unit": "degrees", + "value": 30.0 + }, + "end": { + "unit": "degrees", + "value": 44.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -7212,6 +7091,50 @@ description: Artifact commands axial-fan.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc_to", + "interior": { + "x": 15.8879, + "y": 21.084, + "z": 0.0 + }, + "end": { + "x": 45.7261, + "y": 26.4, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc_to", + "interior": { + "x": 22.1409, + "y": 14.3785, + "z": 0.0 + }, + "end": { + "x": 51.9978, + "y": 9.1686, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -7234,6 +7157,50 @@ description: Artifact commands axial-fan.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc_to", + "interior": { + "x": 46.6196, + "y": 24.7881, + "z": 0.0 + }, + "end": { + "x": 47.4563, + "y": 23.146, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc_to", + "interior": { + "x": 52.2862, + "y": 7.3483, + "z": 0.0 + }, + "end": { + "x": 52.5108, + "y": 5.5191, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -7256,6 +7223,50 @@ description: Artifact commands axial-fan.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc_to", + "interior": { + "x": 18.6676, + "y": 18.6676, + "z": 0.0 + }, + "end": { + "x": 9.6418, + "y": 11.4907, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc_to", + "interior": { + "x": 23.9265, + "y": 11.1571, + "z": 0.0 + }, + "end": { + "x": 12.9904, + "y": 7.5, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -7286,6 +7297,22 @@ description: Artifact commands axial-fan.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -7310,6 +7337,114 @@ description: Artifact commands axial-fan.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -7323,30 +7458,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7361,39 +7478,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7408,18 +7498,10 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7432,43 +7514,6 @@ description: Artifact commands axial-fan.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7483,30 +7528,12 @@ description: Artifact commands axial-fan.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7544,32 +7571,5 @@ description: Artifact commands axial-fan.kcl "arc_degrees": 360.0, "rotate_duplicates": true } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_graph_flowchart.snap.md index 55d0a5abe..dc7a351d8 100644 --- a/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_graph_flowchart.snap.md @@ -1,298 +1,281 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[323, 370, 8]"] - 3["Segment
[376, 444, 8]"] - 4["Segment
[450, 550, 8]"] - 5["Segment
[556, 673, 8]"] - 6["Segment
[679, 764, 8]"] - 7["Segment
[770, 777, 8]"] - 8[Solid2d] + subgraph path8 [Path] + 8["Path
[323, 370, 8]"] + 31["Segment
[376, 444, 8]"] + 32["Segment
[450, 550, 8]"] + 33["Segment
[556, 673, 8]"] + 34["Segment
[679, 764, 8]"] + 35["Segment
[770, 777, 8]"] + 110[Solid2d] end subgraph path9 [Path] 9["Path
[801, 836, 8]"] - 10["Segment
[801, 836, 8]"] - 11[Solid2d] + 36["Segment
[801, 836, 8]"] + 104[Solid2d] + end + subgraph path10 [Path] + 10["Path
[861, 1008, 8]"] + 37["Segment
[861, 1008, 8]"] + 117[Solid2d] + end + subgraph path11 [Path] + 11["Path
[1033, 1181, 8]"] + 38["Segment
[1033, 1181, 8]"] + 99[Solid2d] end subgraph path12 [Path] - 12["Path
[861, 1008, 8]"] - 13["Segment
[861, 1008, 8]"] - 14[Solid2d] + 12["Path
[1206, 1354, 8]"] + 39["Segment
[1206, 1354, 8]"] + 112[Solid2d] + end + subgraph path13 [Path] + 13["Path
[1379, 1528, 8]"] + 40["Segment
[1379, 1528, 8]"] + 113[Solid2d] + end + subgraph path14 [Path] + 14["Path
[1696, 1752, 8]"] + 41["Segment
[1758, 1823, 8]"] + 42["Segment
[1829, 1881, 8]"] + 43["Segment
[1887, 1938, 8]"] + 44["Segment
[1944, 1996, 8]"] + 45["Segment
[2002, 2068, 8]"] + 46["Segment
[2074, 2126, 8]"] + 47["Segment
[2132, 2164, 8]"] + 48["Segment
[2170, 2235, 8]"] + 49["Segment
[2241, 2248, 8]"] + 98[Solid2d] end subgraph path15 [Path] - 15["Path
[1033, 1181, 8]"] - 16["Segment
[1033, 1181, 8]"] - 17[Solid2d] + 15["Path
[2597, 2710, 8]"] + 50["Segment
[2716, 2771, 8]"] + 51["Segment
[2777, 2812, 8]"] + 52["Segment
[2818, 2873, 8]"] + 53["Segment
[2879, 2915, 8]"] + 54["Segment
[2921, 2976, 8]"] + 55["Segment
[2982, 3018, 8]"] + 56["Segment
[3024, 3079, 8]"] + 57["Segment
[3085, 3141, 8]"] + end + subgraph path16 [Path] + 16["Path
[3290, 3341, 8]"] + 58["Segment
[3290, 3341, 8]"] + 109[Solid2d] + end + subgraph path17 [Path] + 17["Path
[3520, 3582, 8]"] + 59["Segment
[3588, 3656, 8]"] + 60["Segment
[3662, 3762, 8]"] + 61["Segment
[3768, 3885, 8]"] + 62["Segment
[3891, 3976, 8]"] + 63["Segment
[3982, 3989, 8]"] + 105[Solid2d] end subgraph path18 [Path] - 18["Path
[1206, 1354, 8]"] - 19["Segment
[1206, 1354, 8]"] - 20[Solid2d] + 18["Path
[4013, 4064, 8]"] + 64["Segment
[4013, 4064, 8]"] + 101[Solid2d] + end + subgraph path19 [Path] + 19["Path
[4089, 4236, 8]"] + 65["Segment
[4089, 4236, 8]"] + 106[Solid2d] + end + subgraph path20 [Path] + 20["Path
[4261, 4409, 8]"] + 66["Segment
[4261, 4409, 8]"] + 100[Solid2d] end subgraph path21 [Path] - 21["Path
[1379, 1528, 8]"] - 22["Segment
[1379, 1528, 8]"] - 23[Solid2d] - end - subgraph path39 [Path] - 39["Path
[1696, 1752, 8]"] - 40["Segment
[1758, 1823, 8]"] - 41["Segment
[1829, 1881, 8]"] - 42["Segment
[1887, 1938, 8]"] - 43["Segment
[1944, 1996, 8]"] - 44["Segment
[2002, 2068, 8]"] - 45["Segment
[2074, 2126, 8]"] - 46["Segment
[2132, 2164, 8]"] - 47["Segment
[2170, 2235, 8]"] - 48["Segment
[2241, 2248, 8]"] - 49[Solid2d] - end - subgraph path78 [Path] - 78["Path
[2597, 2710, 8]"] - 79["Segment
[2716, 2771, 8]"] - 80["Segment
[2777, 2812, 8]"] - 81["Segment
[2818, 2873, 8]"] - 82["Segment
[2879, 2915, 8]"] - 83["Segment
[2921, 2976, 8]"] - 84["Segment
[2982, 3018, 8]"] - 85["Segment
[3024, 3079, 8]"] - 86["Segment
[3085, 3141, 8]"] - end - subgraph path113 [Path] - 113["Path
[3290, 3341, 8]"] - 114["Segment
[3290, 3341, 8]"] + 21["Path
[4434, 4582, 8]"] + 67["Segment
[4434, 4582, 8]"] 115[Solid2d] end - subgraph path120 [Path] - 120["Path
[3520, 3582, 8]"] - 121["Segment
[3588, 3656, 8]"] - 122["Segment
[3662, 3762, 8]"] - 123["Segment
[3768, 3885, 8]"] - 124["Segment
[3891, 3976, 8]"] - 125["Segment
[3982, 3989, 8]"] - 126[Solid2d] + subgraph path22 [Path] + 22["Path
[4607, 4756, 8]"] + 68["Segment
[4607, 4756, 8]"] + 114[Solid2d] end - subgraph path127 [Path] - 127["Path
[4013, 4064, 8]"] - 128["Segment
[4013, 4064, 8]"] - 129[Solid2d] + subgraph path23 [Path] + 23["Path
[4898, 4936, 8]"] + 69["Segment
[4898, 4936, 8]"] + 116[Solid2d] end - subgraph path130 [Path] - 130["Path
[4089, 4236, 8]"] - 131["Segment
[4089, 4236, 8]"] - 132[Solid2d] + subgraph path24 [Path] + 24["Path
[5009, 5045, 8]"] + 70["Segment
[5009, 5045, 8]"] + 111[Solid2d] end - subgraph path133 [Path] - 133["Path
[4261, 4409, 8]"] - 134["Segment
[4261, 4409, 8]"] - 135[Solid2d] + subgraph path25 [Path] + 25["Path
[277, 327, 10]"] + 71["Segment
[277, 327, 10]"] + 107[Solid2d] end - subgraph path136 [Path] - 136["Path
[4434, 4582, 8]"] - 137["Segment
[4434, 4582, 8]"] - 138[Solid2d] + subgraph path26 [Path] + 26["Path
[502, 537, 10]"] + 72["Segment
[502, 537, 10]"] + 108[Solid2d] end - subgraph path139 [Path] - 139["Path
[4607, 4756, 8]"] - 140["Segment
[4607, 4756, 8]"] - 141[Solid2d] + subgraph path27 [Path] + 27["Path
[216, 255, 11]"] + 73["Segment
[261, 291, 11]"] + 74["Segment
[297, 336, 11]"] + 75["Segment
[342, 366, 11]"] + 76["Segment
[372, 396, 11]"] + 77["Segment
[402, 443, 11]"] + 78["Segment
[449, 487, 11]"] + 79["Segment
[493, 516, 11]"] + 80["Segment
[522, 539, 11]"] + 81["Segment
[545, 566, 11]"] + 82["Segment
[572, 659, 11]"] + 83["Segment
[665, 702, 11]"] + 84["Segment
[708, 745, 11]"] + 85["Segment
[751, 758, 11]"] + 97[Solid2d] end - subgraph path157 [Path] - 157["Path
[4898, 4936, 8]"] - 158["Segment
[4898, 4936, 8]"] - 159[Solid2d] + subgraph path28 [Path] + 28["Path
[1113, 1203, 11]"] + 86["Segment
[1211, 1280, 11]"] + 88["Segment
[1288, 1588, 11]"] + 90["Segment
[1596, 1898, 11]"] + 93["Segment
[1906, 2125, 11]"] + 96["Segment
[2133, 2140, 11]"] + 102[Solid2d] end - subgraph path165 [Path] - 165["Path
[5009, 5045, 8]"] - 166["Segment
[5009, 5045, 8]"] - 167[Solid2d] + subgraph path29 [Path] + 29["Path
[1113, 1203, 11]"] + 87["Segment
[1211, 1280, 11]"] + 89["Segment
[1288, 1588, 11]"] + 91["Segment
[1596, 1898, 11]"] + 92["Segment
[1906, 2125, 11]"] + 95["Segment
[2133, 2140, 11]"] + 103[Solid2d] end - subgraph path181 [Path] - 181["Path
[277, 327, 9]"] - 182["Segment
[277, 327, 9]"] - 183[Solid2d] - end - subgraph path191 [Path] - 191["Path
[502, 537, 9]"] - 192["Segment
[502, 537, 9]"] - 193[Solid2d] - end - subgraph path203 [Path] - 203["Path
[216, 255, 10]"] - 204["Segment
[261, 291, 10]"] - 205["Segment
[297, 336, 10]"] - 206["Segment
[342, 366, 10]"] - 207["Segment
[372, 396, 10]"] - 208["Segment
[402, 443, 10]"] - 209["Segment
[449, 487, 10]"] - 210["Segment
[493, 516, 10]"] - 211["Segment
[522, 539, 10]"] - 212["Segment
[545, 566, 10]"] - 213["Segment
[572, 659, 10]"] - 214["Segment
[665, 702, 10]"] - 215["Segment
[708, 745, 10]"] - 216["Segment
[751, 758, 10]"] - 217[Solid2d] - end - subgraph path243 [Path] - 243["Path
[1113, 1203, 10]"] - 244["Segment
[1211, 1280, 10]"] - 245["Segment
[1288, 1588, 10]"] - 246["Segment
[1596, 1898, 10]"] - 247["Segment
[1906, 2125, 10]"] - 248["Segment
[2133, 2140, 10]"] - 249[Solid2d] - end - subgraph path251 [Path] - 251["Path
[1113, 1203, 10]"] - 252["Segment
[1211, 1280, 10]"] - 253["Segment
[1288, 1588, 10]"] - 254["Segment
[1596, 1898, 10]"] - 255["Segment
[1906, 2125, 10]"] - 256["Segment
[2133, 2140, 10]"] - 257[Solid2d] - end - subgraph path259 [Path] - 259["Path
[1113, 1203, 10]"] - 264["Segment
[2133, 2140, 10]"] - 265[Solid2d] + subgraph path30 [Path] + 30["Path
[1113, 1203, 11]"] + 94["Segment
[2133, 2140, 11]"] + 118[Solid2d] end 1["Plane
[300, 317, 8]"] - 24["Sweep Extrusion
[1535, 1554, 8]"] - 25[Wall] - 26[Wall] - 27[Wall] - 28[Wall] - 29["Cap Start"] - 30["Cap End"] - 31["SweepEdge Opposite"] - 32["SweepEdge Adjacent"] - 33["SweepEdge Opposite"] - 34["SweepEdge Adjacent"] - 35["SweepEdge Opposite"] - 36["SweepEdge Adjacent"] - 37["SweepEdge Opposite"] - 38["SweepEdge Adjacent"] - 50["Sweep Extrusion
[2388, 2408, 8]"] - 51[Wall] - 52[Wall] - 53[Wall] - 54[Wall] - 55[Wall] - 56[Wall] - 57[Wall] - 58[Wall] - 59["SweepEdge Opposite"] - 60["SweepEdge Adjacent"] - 61["SweepEdge Opposite"] - 62["SweepEdge Adjacent"] - 63["SweepEdge Opposite"] - 64["SweepEdge Adjacent"] - 65["SweepEdge Opposite"] - 66["SweepEdge Adjacent"] - 67["SweepEdge Opposite"] - 68["SweepEdge Adjacent"] - 69["SweepEdge Opposite"] - 70["SweepEdge Adjacent"] - 71["SweepEdge Opposite"] - 72["SweepEdge Adjacent"] - 73["SweepEdge Opposite"] - 74["SweepEdge Adjacent"] - 75["Sweep Extrusion
[2388, 2408, 8]"] - 76["Sweep Extrusion
[2388, 2408, 8]"] - 77["Sweep Extrusion
[2388, 2408, 8]"] - 87["Sweep Extrusion
[3147, 3182, 8]"] - 88[Wall] - 89[Wall] - 90[Wall] - 91[Wall] - 92[Wall] - 93[Wall] - 94[Wall] - 95[Wall] - 96["Cap End"] - 97["SweepEdge Opposite"] - 98["SweepEdge Adjacent"] - 99["SweepEdge Opposite"] - 100["SweepEdge Adjacent"] - 101["SweepEdge Opposite"] - 102["SweepEdge Adjacent"] - 103["SweepEdge Opposite"] - 104["SweepEdge Adjacent"] - 105["SweepEdge Opposite"] - 106["SweepEdge Adjacent"] - 107["SweepEdge Opposite"] - 108["SweepEdge Adjacent"] - 109["SweepEdge Opposite"] - 110["SweepEdge Adjacent"] - 111["SweepEdge Opposite"] - 112["SweepEdge Adjacent"] - 116["Sweep Extrusion
[3347, 3385, 8]"] - 117[Wall] - 118["SweepEdge Opposite"] - 119["SweepEdge Adjacent"] - 142["Sweep Extrusion
[4763, 4782, 8]"] + 2["Plane
[204, 231, 10]"] + 3["Plane
[467, 495, 10]"] + 4["Plane
[193, 210, 11]"] + 5["Plane
[1066, 1104, 11]"] + 6["Plane
[1066, 1104, 11]"] + 7["Plane
[1066, 1104, 11]"] + 119["Sweep Extrusion
[1535, 1554, 8]"] + 120["Sweep Extrusion
[2388, 2408, 8]"] + 121["Sweep Extrusion
[2388, 2408, 8]"] + 122["Sweep Extrusion
[2388, 2408, 8]"] + 123["Sweep Extrusion
[2388, 2408, 8]"] + 124["Sweep Extrusion
[3147, 3182, 8]"] + 125["Sweep Extrusion
[3347, 3385, 8]"] + 126["Sweep Extrusion
[4763, 4782, 8]"] + 127["Sweep Extrusion
[4942, 4962, 8]"] + 128["Sweep Extrusion
[5051, 5072, 8]"] + 129["Sweep Extrusion
[333, 353, 10]"] + 130["Sweep Extrusion
[543, 564, 10]"] + 131["Sweep Revolve
[764, 846, 11]"] + 132["Sweep Loft
[2259, 2379, 11]"] + 133[Wall] + 134[Wall] + 135[Wall] + 136[Wall] + 137[Wall] + 138[Wall] + 139[Wall] + 140[Wall] + 141[Wall] + 142[Wall] 143[Wall] 144[Wall] 145[Wall] 146[Wall] - 147["Cap Start"] - 148["Cap End"] - 149["SweepEdge Opposite"] - 150["SweepEdge Adjacent"] - 151["SweepEdge Opposite"] - 152["SweepEdge Adjacent"] - 153["SweepEdge Opposite"] - 154["SweepEdge Adjacent"] - 155["SweepEdge Opposite"] - 156["SweepEdge Adjacent"] - 160["Sweep Extrusion
[4942, 4962, 8]"] + 147[Wall] + 148[Wall] + 149[Wall] + 150[Wall] + 151[Wall] + 152[Wall] + 153[Wall] + 154[Wall] + 155[Wall] + 156[Wall] + 157[Wall] + 158[Wall] + 159[Wall] + 160[Wall] 161[Wall] - 162["Cap End"] - 163["SweepEdge Opposite"] - 164["SweepEdge Adjacent"] - 168["Sweep Extrusion
[5051, 5072, 8]"] + 162[Wall] + 163[Wall] + 164[Wall] + 165[Wall] + 166[Wall] + 167[Wall] + 168[Wall] 169[Wall] - 170["SweepEdge Opposite"] - 171["SweepEdge Adjacent"] - 172["EdgeCut Fillet
[5113, 5624, 8]"] - 173["EdgeCut Fillet
[5113, 5624, 8]"] - 174["EdgeCut Fillet
[5113, 5624, 8]"] - 175["EdgeCut Fillet
[5113, 5624, 8]"] - 176["EdgeCut Fillet
[5113, 5624, 8]"] - 177["EdgeCut Fillet
[5113, 5624, 8]"] - 178["EdgeCut Fillet
[5113, 5624, 8]"] - 179["EdgeCut Fillet
[5113, 5624, 8]"] - 180["Plane
[204, 231, 9]"] - 184["Sweep Extrusion
[333, 353, 9]"] - 185[Wall] - 186["Cap Start"] + 170[Wall] + 171[Wall] + 172[Wall] + 173[Wall] + 174[Wall] + 175[Wall] + 176[Wall] + 177[Wall] + 178["Cap Start"] + 179["Cap Start"] + 180["Cap Start"] + 181["Cap Start"] + 182["Cap End"] + 183["Cap End"] + 184["Cap End"] + 185["Cap End"] + 186["Cap End"] 187["Cap End"] - 188["SweepEdge Opposite"] - 189["SweepEdge Adjacent"] - 190["Plane
[467, 495, 9]"] - 194["Sweep Extrusion
[543, 564, 9]"] - 195[Wall] - 196["Cap Start"] - 197["Cap End"] + 188["Cap End"] + 189["Cap End"] + 190["SweepEdge Opposite"] + 191["SweepEdge Opposite"] + 192["SweepEdge Opposite"] + 193["SweepEdge Opposite"] + 194["SweepEdge Opposite"] + 195["SweepEdge Opposite"] + 196["SweepEdge Opposite"] + 197["SweepEdge Opposite"] 198["SweepEdge Opposite"] - 199["SweepEdge Adjacent"] - 200["EdgeCut Fillet
[394, 452, 9]"] - 201["EdgeCut Fillet
[394, 452, 9]"] - 202["Plane
[193, 210, 10]"] - 218["Sweep Revolve
[764, 846, 10]"] - 219[Wall] - 220[Wall] - 221[Wall] - 222[Wall] - 223[Wall] - 224[Wall] - 225[Wall] - 226[Wall] - 227[Wall] - 228[Wall] - 229[Wall] - 230[Wall] + 199["SweepEdge Opposite"] + 200["SweepEdge Opposite"] + 201["SweepEdge Opposite"] + 202["SweepEdge Opposite"] + 203["SweepEdge Opposite"] + 204["SweepEdge Opposite"] + 205["SweepEdge Opposite"] + 206["SweepEdge Opposite"] + 207["SweepEdge Opposite"] + 208["SweepEdge Opposite"] + 209["SweepEdge Opposite"] + 210["SweepEdge Opposite"] + 211["SweepEdge Opposite"] + 212["SweepEdge Opposite"] + 213["SweepEdge Opposite"] + 214["SweepEdge Opposite"] + 215["SweepEdge Opposite"] + 216["SweepEdge Opposite"] + 217["SweepEdge Opposite"] + 218["SweepEdge Opposite"] + 219["SweepEdge Opposite"] + 220["SweepEdge Opposite"] + 221["SweepEdge Opposite"] + 222["SweepEdge Opposite"] + 223["SweepEdge Adjacent"] + 224["SweepEdge Adjacent"] + 225["SweepEdge Adjacent"] + 226["SweepEdge Adjacent"] + 227["SweepEdge Adjacent"] + 228["SweepEdge Adjacent"] + 229["SweepEdge Adjacent"] + 230["SweepEdge Adjacent"] 231["SweepEdge Adjacent"] 232["SweepEdge Adjacent"] 233["SweepEdge Adjacent"] @@ -304,615 +287,614 @@ flowchart LR 239["SweepEdge Adjacent"] 240["SweepEdge Adjacent"] 241["SweepEdge Adjacent"] - 242["Plane
[1066, 1104, 10]"] - 250["Plane
[1066, 1104, 10]"] - 258["Plane
[1066, 1104, 10]"] - 260["SweepEdge Opposite"] - 261["SweepEdge Opposite"] - 262["SweepEdge Opposite"] - 263["SweepEdge Opposite"] - 266["Sweep Loft
[2259, 2379, 10]"] - 267[Wall] - 268[Wall] - 269[Wall] - 270[Wall] - 271["Cap End"] - 272["Cap End"] - 273["SweepEdge Adjacent"] - 274["SweepEdge Adjacent"] - 275["SweepEdge Adjacent"] - 276["SweepEdge Adjacent"] - 277["StartSketchOnFace
[1647, 1690, 8]"] - 278["StartSketchOnFace
[2548, 2591, 8]"] - 279["StartSketchOnFace
[3247, 3284, 8]"] - 280["StartSketchOnFace
[3471, 3508, 8]"] - 281["StartSketchOnFace
[4849, 4892, 8]"] - 282["StartSketchOnFace
[4964, 5003, 8]"] - 283["StartSketchOnPlane
[244, 271, 9]"] - 284["StartSketchOnPlane
[453, 496, 9]"] - 285["StartSketchOnPlane
[1052, 1105, 10]"] - 286["StartSketchOnPlane
[1052, 1105, 10]"] - 287["StartSketchOnPlane
[1052, 1105, 10]"] - 1 --- 2 + 242["SweepEdge Adjacent"] + 243["SweepEdge Adjacent"] + 244["SweepEdge Adjacent"] + 245["SweepEdge Adjacent"] + 246["SweepEdge Adjacent"] + 247["SweepEdge Adjacent"] + 248["SweepEdge Adjacent"] + 249["SweepEdge Adjacent"] + 250["SweepEdge Adjacent"] + 251["SweepEdge Adjacent"] + 252["SweepEdge Adjacent"] + 253["SweepEdge Adjacent"] + 254["SweepEdge Adjacent"] + 255["SweepEdge Adjacent"] + 256["SweepEdge Adjacent"] + 257["SweepEdge Adjacent"] + 258["SweepEdge Adjacent"] + 259["SweepEdge Adjacent"] + 260["SweepEdge Adjacent"] + 261["SweepEdge Adjacent"] + 262["SweepEdge Adjacent"] + 263["SweepEdge Adjacent"] + 264["SweepEdge Adjacent"] + 265["SweepEdge Adjacent"] + 266["SweepEdge Adjacent"] + 267["SweepEdge Adjacent"] + 268["EdgeCut Fillet
[394, 452, 10]"] + 269["EdgeCut Fillet
[394, 452, 10]"] + 270["EdgeCut Fillet
[5113, 5624, 8]"] + 271["EdgeCut Fillet
[5113, 5624, 8]"] + 272["EdgeCut Fillet
[5113, 5624, 8]"] + 273["EdgeCut Fillet
[5113, 5624, 8]"] + 274["EdgeCut Fillet
[5113, 5624, 8]"] + 275["EdgeCut Fillet
[5113, 5624, 8]"] + 276["EdgeCut Fillet
[5113, 5624, 8]"] + 277["EdgeCut Fillet
[5113, 5624, 8]"] + 1 --- 8 1 --- 9 + 1 --- 10 + 1 --- 11 1 --- 12 - 1 --- 15 - 1 --- 18 - 1 --- 21 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 ---- 24 - 2 --- 8 - 3 --- 25 - 3 --- 31 - 3 --- 32 - 3 x--> 29 - 4 --- 26 - 4 --- 33 - 4 --- 34 - 4 x--> 29 - 5 --- 27 - 5 --- 35 - 5 --- 36 - 5 x--> 29 - 6 --- 28 - 6 --- 37 - 6 --- 38 - 6 x--> 29 - 9 --- 10 - 9 --- 11 - 12 --- 13 - 12 --- 14 - 15 --- 16 - 15 --- 17 - 18 --- 19 - 18 --- 20 - 21 --- 22 - 21 --- 23 - 24 --- 25 - 24 --- 26 - 24 --- 27 - 24 --- 28 - 24 --- 29 - 24 --- 30 - 24 --- 31 - 24 --- 32 - 24 --- 33 - 24 --- 34 - 24 --- 35 - 24 --- 36 - 24 --- 37 - 24 --- 38 - 30 --- 39 - 30 --- 78 - 30 --- 157 - 31 <--x 25 - 31 <--x 30 - 33 <--x 26 - 33 <--x 30 - 35 <--x 27 - 35 <--x 30 - 37 <--x 28 - 37 <--x 30 - 39 --- 40 - 39 --- 41 - 39 --- 42 - 39 --- 43 - 39 --- 44 - 39 --- 45 - 39 --- 46 - 39 --- 47 - 39 --- 48 - 39 ---- 50 - 39 --- 49 - 40 --- 51 - 40 --- 59 - 40 --- 60 - 40 <--x 30 - 41 --- 52 - 41 --- 61 - 41 --- 62 - 41 <--x 30 - 42 --- 53 - 42 --- 63 - 42 --- 64 - 42 <--x 30 - 43 --- 54 - 43 --- 65 - 43 --- 66 - 43 <--x 30 - 44 --- 55 - 44 --- 67 - 44 --- 68 - 44 <--x 30 - 45 --- 56 - 45 --- 69 - 45 --- 70 - 45 <--x 30 - 46 --- 57 - 46 --- 71 - 46 --- 72 - 46 <--x 30 - 47 --- 58 - 47 --- 73 - 47 --- 74 - 47 <--x 30 - 50 --- 51 - 50 --- 52 - 50 --- 53 - 50 --- 54 - 50 --- 55 - 50 --- 56 - 50 --- 57 - 50 --- 58 - 50 --- 59 - 50 --- 60 - 50 --- 61 - 50 --- 62 - 50 --- 63 - 50 --- 64 - 50 --- 65 - 50 --- 66 - 50 --- 67 - 50 --- 68 - 50 --- 69 - 50 --- 70 - 50 --- 71 - 50 --- 72 - 50 --- 73 - 50 --- 74 - 59 <--x 51 - 59 <--x 29 - 60 <--x 51 - 60 <--x 52 - 61 <--x 52 - 61 <--x 29 - 62 <--x 52 - 62 <--x 53 - 63 <--x 53 - 63 <--x 29 - 64 <--x 53 - 64 <--x 54 - 65 <--x 54 - 65 <--x 29 - 66 <--x 54 - 66 <--x 55 - 67 <--x 55 - 67 <--x 29 - 68 <--x 55 - 68 <--x 56 - 69 <--x 56 - 69 <--x 29 - 70 <--x 56 - 70 <--x 57 - 71 <--x 57 - 71 <--x 29 - 72 <--x 57 - 72 <--x 58 - 73 <--x 58 - 73 <--x 29 - 74 <--x 51 - 74 <--x 58 - 78 --- 79 - 78 --- 80 - 78 --- 81 - 78 --- 82 - 78 --- 83 - 78 --- 84 - 78 --- 85 - 78 --- 86 - 78 ---- 87 - 79 --- 88 - 79 --- 97 - 79 --- 98 - 79 <--x 30 - 80 --- 89 - 80 --- 99 - 80 --- 100 - 80 <--x 30 - 81 --- 90 - 81 --- 101 - 81 --- 102 - 81 <--x 30 - 82 --- 91 - 82 --- 103 - 82 --- 104 - 82 <--x 30 - 83 --- 92 - 83 --- 105 - 83 --- 106 - 83 <--x 30 - 84 --- 93 - 84 --- 107 - 84 --- 108 - 84 <--x 30 - 85 --- 94 - 85 --- 109 - 85 --- 110 - 85 <--x 30 - 86 --- 95 - 86 --- 111 - 86 --- 112 - 86 <--x 30 - 87 --- 88 - 87 --- 89 - 87 --- 90 - 87 --- 91 - 87 --- 92 - 87 --- 93 - 87 --- 94 - 87 --- 95 - 87 --- 96 - 87 --- 97 - 87 --- 98 - 87 --- 99 - 87 --- 100 - 87 --- 101 - 87 --- 102 - 87 --- 103 - 87 --- 104 - 87 --- 105 - 87 --- 106 - 87 --- 107 - 87 --- 108 - 87 --- 109 - 87 --- 110 - 87 --- 111 - 87 --- 112 - 96 --- 113 - 96 --- 120 - 96 --- 127 - 96 --- 130 - 96 --- 133 - 96 --- 136 - 96 --- 139 - 97 <--x 88 - 97 <--x 96 - 98 <--x 88 - 98 <--x 89 - 99 <--x 89 - 99 <--x 96 - 100 <--x 89 - 100 <--x 90 - 101 <--x 90 - 101 <--x 96 - 102 <--x 90 - 102 <--x 91 - 103 <--x 91 - 103 <--x 96 - 104 <--x 91 - 104 <--x 92 - 105 <--x 92 - 105 <--x 96 - 106 <--x 92 - 106 <--x 93 - 107 <--x 93 - 107 <--x 96 - 108 <--x 93 - 108 <--x 94 - 109 <--x 94 - 109 <--x 96 - 110 <--x 94 - 110 <--x 95 - 111 <--x 95 - 111 <--x 96 - 112 <--x 88 - 112 <--x 95 - 113 --- 114 - 113 ---- 116 - 113 --- 115 - 114 --- 117 - 114 --- 118 - 114 --- 119 - 114 <--x 96 - 116 --- 117 - 116 --- 118 - 116 --- 119 - 118 <--x 117 - 118 <--x 30 - 119 <--x 117 - 120 --- 121 - 120 --- 122 - 120 --- 123 - 120 --- 124 - 120 --- 125 - 120 ---- 142 - 120 --- 126 - 121 --- 143 - 121 --- 149 - 121 --- 150 - 121 x--> 147 - 122 --- 144 - 122 --- 151 - 122 --- 152 - 122 x--> 147 - 123 --- 145 - 123 --- 153 - 123 --- 154 - 123 x--> 147 - 124 --- 146 + 1 --- 13 + 2 --- 25 + 3 --- 26 + 4 --- 27 + 5 --- 28 + 6 --- 29 + 7 --- 30 + 8 --- 31 + 8 --- 32 + 8 --- 33 + 8 --- 34 + 8 --- 35 + 8 --- 110 + 8 ---- 119 + 9 --- 36 + 9 --- 104 + 10 --- 37 + 10 --- 117 + 11 --- 38 + 11 --- 99 + 12 --- 39 + 12 --- 112 + 13 --- 40 + 13 --- 113 + 14 --- 41 + 14 --- 42 + 14 --- 43 + 14 --- 44 + 14 --- 45 + 14 --- 46 + 14 --- 47 + 14 --- 48 + 14 --- 49 + 14 --- 98 + 14 ---- 123 + 188 --- 14 + 15 --- 50 + 15 --- 51 + 15 --- 52 + 15 --- 53 + 15 --- 54 + 15 --- 55 + 15 --- 56 + 15 --- 57 + 15 ---- 124 + 188 --- 15 + 16 --- 58 + 16 --- 109 + 16 ---- 125 + 183 --- 16 + 17 --- 59 + 17 --- 60 + 17 --- 61 + 17 --- 62 + 17 --- 63 + 17 --- 105 + 17 ---- 126 + 183 --- 17 + 18 --- 64 + 18 --- 101 + 183 --- 18 + 19 --- 65 + 19 --- 106 + 183 --- 19 + 20 --- 66 + 20 --- 100 + 183 --- 20 + 21 --- 67 + 21 --- 115 + 183 --- 21 + 22 --- 68 + 22 --- 114 + 183 --- 22 + 23 --- 69 + 23 --- 116 + 23 ---- 127 + 188 --- 23 + 24 --- 70 + 24 --- 111 + 24 ---- 128 + 182 --- 24 + 25 --- 71 + 25 --- 107 + 25 ---- 129 + 26 --- 72 + 26 --- 108 + 26 ---- 130 + 27 --- 73 + 27 --- 74 + 27 --- 75 + 27 --- 76 + 27 --- 77 + 27 --- 78 + 27 --- 79 + 27 --- 80 + 27 --- 81 + 27 --- 82 + 27 --- 83 + 27 --- 84 + 27 --- 85 + 27 --- 97 + 27 ---- 131 + 28 --- 86 + 28 --- 88 + 28 --- 90 + 28 --- 93 + 28 --- 96 + 28 --- 102 + 28 ---- 132 + 29 --- 87 + 29 --- 89 + 29 --- 91 + 29 --- 92 + 29 --- 95 + 29 --- 103 + 29 x---> 132 + 30 --- 94 + 30 --- 118 + 30 x---> 132 + 30 x--> 201 + 30 x--> 202 + 30 x--> 203 + 30 x--> 204 + 31 --- 166 + 31 x--> 180 + 31 --- 211 + 31 --- 255 + 32 --- 167 + 32 x--> 180 + 32 --- 213 + 32 --- 256 + 33 --- 168 + 33 x--> 180 + 33 --- 212 + 33 --- 258 + 34 --- 165 + 34 x--> 180 + 34 --- 210 + 34 --- 257 + 41 --- 169 + 41 x--> 188 + 41 --- 218 + 41 --- 266 + 42 --- 175 + 42 x--> 188 + 42 --- 216 + 42 --- 261 + 43 --- 176 + 43 x--> 188 + 43 --- 221 + 43 --- 262 + 44 --- 173 + 44 x--> 188 + 44 --- 220 + 44 --- 259 + 45 --- 171 + 45 x--> 188 + 45 --- 217 + 45 --- 263 + 46 --- 174 + 46 x--> 188 + 46 --- 219 + 46 --- 260 + 47 --- 172 + 47 x--> 188 + 47 --- 214 + 47 --- 265 + 48 --- 170 + 48 x--> 188 + 48 --- 215 + 48 --- 264 + 50 --- 152 + 50 x--> 188 + 50 --- 193 + 50 --- 241 + 51 --- 148 + 51 x--> 188 + 51 --- 195 + 51 --- 245 + 52 --- 151 + 52 x--> 188 + 52 --- 196 + 52 --- 243 + 53 --- 153 + 53 x--> 188 + 53 --- 198 + 53 --- 240 + 54 --- 149 + 54 x--> 188 + 54 --- 199 + 54 --- 239 + 55 --- 155 + 55 x--> 188 + 55 --- 197 + 55 --- 238 + 56 --- 150 + 56 x--> 188 + 56 --- 194 + 56 --- 244 + 57 --- 154 + 57 x--> 188 + 57 --- 200 + 57 --- 242 + 58 --- 133 + 58 x--> 183 + 58 --- 190 + 58 --- 223 + 59 --- 163 + 59 x--> 178 + 59 --- 207 + 59 --- 251 + 60 --- 160 + 60 x--> 178 + 60 --- 206 + 60 --- 250 + 61 --- 161 + 61 x--> 178 + 61 --- 205 + 61 --- 253 + 62 --- 162 + 62 x--> 178 + 62 --- 208 + 62 --- 252 + 69 --- 135 + 69 x--> 188 + 69 --- 192 + 69 --- 225 + 70 --- 134 + 70 x--> 182 + 70 --- 191 + 70 --- 224 + 71 --- 177 + 71 x--> 181 + 71 --- 222 + 71 --- 267 + 71 --- 269 + 72 --- 164 + 72 x--> 179 + 72 --- 209 + 72 --- 254 + 131 <--x 73 + 73 --- 144 + 73 --- 231 + 131 <--x 74 + 74 --- 140 + 74 --- 237 + 131 <--x 75 + 75 --- 142 + 75 --- 234 + 131 <--x 76 + 76 --- 139 + 76 --- 228 + 131 <--x 77 + 77 --- 143 + 77 --- 232 + 131 <--x 78 + 78 --- 145 + 78 --- 227 + 131 <--x 79 + 79 --- 136 + 79 --- 235 + 131 <--x 80 + 80 --- 146 + 80 --- 230 + 131 <--x 81 + 81 --- 141 + 81 --- 236 + 131 <--x 82 + 82 --- 137 + 82 --- 226 + 131 <--x 83 + 83 --- 138 + 83 --- 229 + 131 <--x 84 + 84 --- 147 + 84 --- 233 + 86 --- 159 + 86 x--> 184 + 86 --- 203 + 86 --- 249 + 88 --- 158 + 88 x--> 184 + 88 --- 204 + 88 --- 248 + 90 --- 156 + 90 x--> 184 + 90 --- 201 + 90 --- 246 + 93 --- 157 + 93 x--> 184 + 93 --- 202 + 93 --- 247 + 119 --- 165 + 119 --- 166 + 119 --- 167 + 119 --- 168 + 119 --- 180 + 119 --- 188 + 119 --- 210 + 119 --- 211 + 119 --- 212 + 119 --- 213 + 119 --- 255 + 119 --- 256 + 119 --- 257 + 119 --- 258 + 123 --- 169 + 123 --- 170 + 123 --- 171 + 123 --- 172 + 123 --- 173 + 123 --- 174 + 123 --- 175 + 123 --- 176 + 123 --- 214 + 123 --- 215 + 123 --- 216 + 123 --- 217 + 123 --- 218 + 123 --- 219 + 123 --- 220 + 123 --- 221 + 123 --- 259 + 123 --- 260 + 123 --- 261 + 123 --- 262 + 123 --- 263 + 123 --- 264 + 123 --- 265 + 123 --- 266 + 124 --- 148 + 124 --- 149 + 124 --- 150 + 124 --- 151 + 124 --- 152 + 124 --- 153 + 124 --- 154 124 --- 155 - 124 --- 156 - 124 x--> 147 - 127 --- 128 - 127 --- 129 - 130 --- 131 - 130 --- 132 - 133 --- 134 - 133 --- 135 - 136 --- 137 - 136 --- 138 - 139 --- 140 - 139 --- 141 - 142 --- 143 - 142 --- 144 - 142 --- 145 - 142 --- 146 - 142 --- 147 - 142 --- 148 - 142 --- 149 - 142 --- 150 - 142 --- 151 - 142 --- 152 - 142 --- 153 - 142 --- 154 - 142 --- 155 - 142 --- 156 - 149 <--x 143 - 149 <--x 148 - 151 <--x 144 - 151 <--x 148 - 153 <--x 145 - 153 <--x 148 - 155 <--x 146 - 155 <--x 148 - 157 --- 158 - 157 ---- 160 - 157 --- 159 - 158 --- 161 - 158 --- 163 - 158 --- 164 - 158 <--x 30 - 160 --- 161 - 160 --- 162 - 160 --- 163 - 160 --- 164 - 162 --- 165 - 163 <--x 161 - 163 <--x 162 - 164 <--x 161 - 165 --- 166 - 165 ---- 168 - 165 --- 167 - 166 --- 169 - 166 --- 170 - 166 --- 171 - 166 <--x 162 - 168 --- 169 - 168 --- 170 - 168 --- 171 - 170 <--x 169 - 170 <--x 30 - 171 <--x 169 - 32 <--x 172 - 34 <--x 173 - 36 <--x 174 - 38 <--x 175 - 150 <--x 176 - 152 <--x 177 - 154 <--x 178 - 156 <--x 179 - 180 --- 181 - 181 --- 182 - 181 ---- 184 - 181 --- 183 - 182 --- 185 - 182 --- 188 - 182 --- 189 - 182 --- 201 - 182 x--> 186 - 184 --- 185 - 184 --- 186 - 184 --- 187 - 184 --- 188 - 184 --- 189 - 189 <--x 185 - 190 --- 191 - 191 --- 192 - 191 ---- 194 - 191 --- 193 - 192 --- 195 - 192 --- 198 - 192 --- 199 - 192 x--> 196 - 194 --- 195 - 194 --- 196 - 194 --- 197 - 194 --- 198 - 194 --- 199 - 198 <--x 195 - 198 <--x 197 - 199 <--x 195 - 188 <--x 200 - 202 --- 203 - 203 --- 204 - 203 --- 205 - 203 --- 206 - 203 --- 207 - 203 --- 208 - 203 --- 209 - 203 --- 210 - 203 --- 211 - 203 --- 212 - 203 --- 213 - 203 --- 214 - 203 --- 215 - 203 --- 216 - 203 ---- 218 - 203 --- 217 - 204 --- 219 - 204 x--> 231 - 205 --- 220 - 205 --- 231 - 206 --- 221 - 206 --- 232 - 207 --- 222 - 207 --- 233 - 208 --- 223 - 208 --- 234 - 209 --- 224 - 209 --- 235 - 210 --- 225 - 210 --- 236 - 211 --- 226 - 211 --- 237 - 212 --- 227 - 212 --- 238 - 213 --- 228 - 213 --- 239 - 214 --- 229 - 214 --- 240 - 215 --- 230 - 215 --- 241 - 218 --- 219 - 218 --- 220 - 218 --- 221 - 218 --- 222 - 218 --- 223 - 218 --- 224 - 218 --- 225 - 218 --- 226 - 218 --- 227 - 218 --- 228 - 218 --- 229 - 218 --- 230 - 218 <--x 204 - 218 --- 231 - 218 <--x 205 - 218 <--x 206 - 218 --- 232 - 218 <--x 207 - 218 --- 233 - 218 <--x 208 - 218 --- 234 - 218 <--x 209 - 218 --- 235 - 218 <--x 210 - 218 --- 236 - 218 <--x 211 - 218 --- 237 - 218 <--x 212 - 218 --- 238 - 218 <--x 213 - 218 --- 239 - 218 <--x 214 - 218 --- 240 - 218 <--x 215 - 218 --- 241 - 231 <--x 219 - 231 <--x 220 - 232 <--x 221 - 232 <--x 222 - 233 <--x 222 - 233 <--x 223 - 234 <--x 223 - 234 <--x 224 - 235 <--x 224 - 235 <--x 225 - 236 <--x 225 - 236 <--x 226 - 237 <--x 226 - 237 <--x 227 - 238 <--x 227 - 238 <--x 228 - 239 <--x 228 - 239 <--x 229 - 240 <--x 229 - 240 <--x 230 - 241 <--x 230 - 241 <--x 219 - 242 --- 243 - 243 --- 244 - 243 --- 245 - 243 --- 246 - 243 --- 247 - 243 --- 248 - 243 ---- 266 - 243 --- 249 - 244 --- 267 - 244 --- 260 - 244 --- 273 - 244 x--> 271 - 245 --- 268 - 245 --- 261 - 245 --- 274 - 245 x--> 271 - 246 --- 269 - 246 --- 262 - 246 --- 275 - 246 x--> 271 - 247 --- 270 - 247 --- 263 - 247 --- 276 - 247 x--> 271 - 250 --- 251 - 251 --- 252 - 251 --- 253 - 251 --- 254 - 251 --- 255 - 251 --- 256 - 251 x---> 266 - 251 --- 257 - 258 --- 259 - 259 x--> 260 - 259 x--> 261 - 259 x--> 262 - 259 x--> 263 - 259 --- 264 - 259 x---> 266 - 259 --- 265 - 266 --- 260 - 260 x--> 267 - 260 x--> 272 - 266 --- 261 - 261 x--> 268 - 261 x--> 272 - 266 --- 262 - 262 x--> 269 - 262 x--> 272 - 266 --- 263 - 263 x--> 270 - 263 x--> 272 - 266 --- 267 - 266 --- 268 - 266 --- 269 - 266 --- 270 - 266 --- 271 - 266 --- 272 - 266 --- 273 - 266 --- 274 - 266 --- 275 - 266 --- 276 - 273 <--x 270 - 273 <--x 267 - 274 <--x 267 - 274 <--x 268 - 275 <--x 268 - 275 <--x 269 - 276 <--x 269 - 276 <--x 270 - 30 <--x 277 - 30 <--x 278 - 96 <--x 279 - 96 <--x 280 - 30 <--x 281 - 162 <--x 282 - 180 <--x 283 - 190 <--x 284 - 242 <--x 285 - 250 <--x 286 - 258 <--x 287 + 124 --- 183 + 124 --- 193 + 124 --- 194 + 124 --- 195 + 124 --- 196 + 124 --- 197 + 124 --- 198 + 124 --- 199 + 124 --- 200 + 124 --- 238 + 124 --- 239 + 124 --- 240 + 124 --- 241 + 124 --- 242 + 124 --- 243 + 124 --- 244 + 124 --- 245 + 125 --- 133 + 125 --- 190 + 125 --- 223 + 126 --- 160 + 126 --- 161 + 126 --- 162 + 126 --- 163 + 126 --- 178 + 126 --- 186 + 126 --- 205 + 126 --- 206 + 126 --- 207 + 126 --- 208 + 126 --- 250 + 126 --- 251 + 126 --- 252 + 126 --- 253 + 127 --- 135 + 127 --- 182 + 127 --- 192 + 127 --- 225 + 128 --- 134 + 128 --- 191 + 128 --- 224 + 129 --- 177 + 129 --- 181 + 129 --- 189 + 129 --- 222 + 129 --- 267 + 130 --- 164 + 130 --- 179 + 130 --- 187 + 130 --- 209 + 130 --- 254 + 131 --- 136 + 131 --- 137 + 131 --- 138 + 131 --- 139 + 131 --- 140 + 131 --- 141 + 131 --- 142 + 131 --- 143 + 131 --- 144 + 131 --- 145 + 131 --- 146 + 131 --- 147 + 131 --- 226 + 131 --- 227 + 131 --- 228 + 131 --- 229 + 131 --- 230 + 131 --- 231 + 131 --- 232 + 131 --- 233 + 131 --- 234 + 131 --- 235 + 131 --- 236 + 131 --- 237 + 132 --- 156 + 132 --- 157 + 132 --- 158 + 132 --- 159 + 132 --- 184 + 132 --- 185 + 132 --- 201 + 132 --- 202 + 132 --- 203 + 132 --- 204 + 132 --- 246 + 132 --- 247 + 132 --- 248 + 132 --- 249 + 190 <--x 133 + 223 <--x 133 + 191 <--x 134 + 224 <--x 134 + 192 <--x 135 + 225 <--x 135 + 227 <--x 136 + 235 <--x 136 + 226 <--x 137 + 236 <--x 137 + 226 <--x 138 + 229 <--x 138 + 228 <--x 139 + 234 <--x 139 + 231 <--x 140 + 237 <--x 140 + 230 <--x 141 + 236 <--x 141 + 234 <--x 142 + 237 <--x 142 + 228 <--x 143 + 232 <--x 143 + 231 <--x 144 + 233 <--x 144 + 227 <--x 145 + 232 <--x 145 + 230 <--x 146 + 235 <--x 146 + 229 <--x 147 + 233 <--x 147 + 195 <--x 148 + 241 <--x 148 + 245 <--x 148 + 199 <--x 149 + 239 <--x 149 + 240 <--x 149 + 194 <--x 150 + 238 <--x 150 + 244 <--x 150 + 196 <--x 151 + 243 <--x 151 + 245 <--x 151 + 193 <--x 152 + 241 <--x 152 + 242 <--x 152 + 198 <--x 153 + 240 <--x 153 + 243 <--x 153 + 200 <--x 154 + 242 <--x 154 + 244 <--x 154 + 197 <--x 155 + 238 <--x 155 + 239 <--x 155 + 201 <--x 156 + 246 <--x 156 + 247 <--x 156 + 202 <--x 157 + 247 <--x 157 + 249 <--x 157 + 204 <--x 158 + 246 <--x 158 + 248 <--x 158 + 203 <--x 159 + 248 <--x 159 + 249 <--x 159 + 206 <--x 160 + 205 <--x 161 + 208 <--x 162 + 207 <--x 163 + 209 <--x 164 + 254 <--x 164 + 210 <--x 165 + 211 <--x 166 + 213 <--x 167 + 212 <--x 168 + 218 <--x 169 + 261 <--x 169 + 266 <--x 169 + 215 <--x 170 + 264 <--x 170 + 266 <--x 170 + 217 <--x 171 + 260 <--x 171 + 263 <--x 171 + 214 <--x 172 + 264 <--x 172 + 265 <--x 172 + 220 <--x 173 + 259 <--x 173 + 263 <--x 173 + 219 <--x 174 + 260 <--x 174 + 265 <--x 174 + 216 <--x 175 + 261 <--x 175 + 262 <--x 175 + 221 <--x 176 + 259 <--x 176 + 262 <--x 176 + 267 <--x 177 + 214 <--x 180 + 215 <--x 180 + 216 <--x 180 + 217 <--x 180 + 218 <--x 180 + 219 <--x 180 + 220 <--x 180 + 221 <--x 180 + 192 <--x 182 + 193 <--x 183 + 194 <--x 183 + 195 <--x 183 + 196 <--x 183 + 197 <--x 183 + 198 <--x 183 + 199 <--x 183 + 200 <--x 183 + 201 <--x 185 + 202 <--x 185 + 203 <--x 185 + 204 <--x 185 + 205 <--x 186 + 206 <--x 186 + 207 <--x 186 + 208 <--x 186 + 209 <--x 187 + 190 <--x 188 + 191 <--x 188 + 210 <--x 188 + 211 <--x 188 + 212 <--x 188 + 213 <--x 188 + 222 <--x 268 + 250 <--x 275 + 251 <--x 274 + 252 <--x 277 + 253 <--x 276 + 255 <--x 270 + 256 <--x 271 + 257 <--x 273 + 258 <--x 272 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/axial-fan/ops.snap b/rust/kcl-lib/tests/kcl_samples/axial-fan/ops.snap index 454cf411f..71b255dd7 100644 --- a/rust/kcl-lib/tests/kcl_samples/axial-fan/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/axial-fan/ops.snap @@ -12,731 +12,6 @@ description: Operations executed axial-fan.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -4.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 17.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -17.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 16.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -16.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "fillet", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "radius": { - "value": { - "type": "Number", - "value": 7.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "tags": { - "value": { - "type": "Array", - "value": [ - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - } - ] - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -746,212 +21,6 @@ description: Operations executed axial-fan.kcl }, "sourceRange": [] }, - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 17.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "fillet", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "radius": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "tags": { - "value": { - "type": "Array", - "value": [ - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "TagIdentifier", - "value": "seg04", - "artifact_id": "[uuid]" - } - ] - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 21.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 3.8, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -961,971 +30,12 @@ description: Operations executed axial-fan.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "KclStdLibCall", - "name": "revolve", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "axis": { - "value": { - "type": "Object", - "value": { - "direction": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "fanBlade", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 4.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "type": "GroupEnd" }, { "type": "GroupEnd" }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "fanBlade", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 9.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "fanBlade", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 23.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "sketches": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - "name": "loft", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "arcDegrees": { - "value": { - "type": "Number", - "value": 360.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "axis": { - "value": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "sourceRange": [] - }, - "center": { - "value": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "sourceRange": [] - }, - "instances": { - "value": { - "type": "Number", - "value": 9.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "rotateDuplicates": { - "value": { - "type": "Bool", - "value": true - }, - "sourceRange": [] - } - }, - "name": "patternCircular3d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/kcl_samples/axial-fan/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/axial-fan/program_memory.snap index d4bce2342..5ea797cb6 100644 --- a/rust/kcl-lib/tests/kcl_samples/axial-fan/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/axial-fan/program_memory.snap @@ -5,7 +5,7 @@ description: Variables in memory after executing axial-fan.kcl { "fan": { "type": "Module", - "value": 10 + "value": 11 }, "fanHousing": { "type": "Module", @@ -13,6 +13,6 @@ description: Variables in memory after executing axial-fan.kcl }, "motor": { "type": "Module", - "value": 9 + "value": 10 } } diff --git a/rust/kcl-lib/tests/kcl_samples/axial-fan/rendered_model.png b/rust/kcl-lib/tests/kcl_samples/axial-fan/rendered_model.png index 7eaf1479d..ec1fbbe40 100644 Binary files a/rust/kcl-lib/tests/kcl_samples/axial-fan/rendered_model.png and b/rust/kcl-lib/tests/kcl_samples/axial-fan/rendered_model.png differ diff --git a/rust/kcl-lib/tests/kcl_samples/ball-bearing/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/ball-bearing/artifact_commands.snap index afd713531..4048717de 100644 --- a/rust/kcl-lib/tests/kcl_samples/ball-bearing/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/ball-bearing/artifact_commands.snap @@ -68,6 +68,14 @@ description: Artifact commands ball-bearing.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -84,33 +92,6 @@ description: Artifact commands ball-bearing.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 12.065, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -136,6 +117,60 @@ description: Artifact commands ball-bearing.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 12.065, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -160,33 +195,6 @@ description: Artifact commands ball-bearing.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 9.524999999999999, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -216,17 +224,13 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 9.524999999999999, + "y": 0.0, + "z": 0.0 + } } }, { @@ -238,6 +242,20 @@ description: Artifact commands ball-bearing.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -265,6 +283,14 @@ description: Artifact commands ball-bearing.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -276,8 +302,54 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -293,30 +365,12 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -327,24 +381,6 @@ description: Artifact commands ball-bearing.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -359,30 +395,12 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -424,13 +442,6 @@ description: Artifact commands ball-bearing.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -451,6 +462,13 @@ description: Artifact commands ball-bearing.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -484,6 +502,14 @@ description: Artifact commands ball-bearing.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -513,8 +539,54 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -530,30 +602,12 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -564,24 +618,6 @@ description: Artifact commands ball-bearing.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -596,30 +632,12 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -682,13 +700,6 @@ description: Artifact commands ball-bearing.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -709,6 +720,13 @@ description: Artifact commands ball-bearing.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -776,6 +794,14 @@ description: Artifact commands ball-bearing.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -805,8 +831,108 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -822,30 +948,12 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -860,39 +968,12 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -907,18 +988,10 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -931,43 +1004,6 @@ description: Artifact commands ball-bearing.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -982,30 +1018,12 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1052,6 +1070,14 @@ description: Artifact commands ball-bearing.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1068,33 +1094,6 @@ description: Artifact commands ball-bearing.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 16.033749999999998, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1124,8 +1123,35 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 16.033749999999998, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -1157,8 +1183,27 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1170,34 +1215,6 @@ description: Artifact commands ball-bearing.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1212,9 +1229,10 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1277,6 +1295,14 @@ description: Artifact commands ball-bearing.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1293,33 +1319,6 @@ description: Artifact commands ball-bearing.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 20.6375, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1345,6 +1344,60 @@ description: Artifact commands ball-bearing.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 20.6375, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1369,33 +1422,6 @@ description: Artifact commands ball-bearing.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 18.415, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1425,17 +1451,13 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 18.415, + "y": 0.0, + "z": 0.0 + } } }, { @@ -1447,6 +1469,20 @@ description: Artifact commands ball-bearing.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1474,6 +1510,14 @@ description: Artifact commands ball-bearing.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1485,8 +1529,54 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1502,30 +1592,12 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1536,24 +1608,6 @@ description: Artifact commands ball-bearing.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1568,64 +1622,10 @@ description: Artifact commands ball-bearing.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/ball-bearing/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/ball-bearing/artifact_graph_flowchart.snap.md index 6931cb4d3..4fa85ff37 100644 --- a/rust/kcl-lib/tests/kcl_samples/ball-bearing/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/ball-bearing/artifact_graph_flowchart.snap.md @@ -1,187 +1,187 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[664, 726, 0]"] - 3["Segment
[664, 726, 0]"] - 4[Solid2d] + subgraph path8 [Path] + 8["Path
[664, 726, 0]"] + 15["Segment
[664, 726, 0]"] + 30[Solid2d] end - subgraph path5 [Path] - 5["Path
[750, 796, 0]"] - 6["Segment
[750, 796, 0]"] - 7[Solid2d] + subgraph path9 [Path] + 9["Path
[750, 796, 0]"] + 16["Segment
[750, 796, 0]"] + 32[Solid2d] end - subgraph path15 [Path] - 15["Path
[980, 1036, 0]"] - 16["Segment
[1042, 1101, 0]"] - 17["Segment
[1107, 1114, 0]"] - 18[Solid2d] + subgraph path10 [Path] + 10["Path
[980, 1036, 0]"] + 17["Segment
[1042, 1101, 0]"] + 18["Segment
[1107, 1114, 0]"] + 28[Solid2d] end - subgraph path24 [Path] - 24["Path
[1484, 1609, 0]"] - 25["Segment
[1615, 1675, 0]"] - 26["Segment
[1681, 1712, 0]"] - 27["Segment
[1718, 1746, 0]"] - 28["Segment
[1752, 1759, 0]"] + subgraph path11 [Path] + 11["Path
[1484, 1609, 0]"] + 19["Segment
[1615, 1675, 0]"] + 20["Segment
[1681, 1712, 0]"] + 21["Segment
[1718, 1746, 0]"] + 22["Segment
[1752, 1759, 0]"] 29[Solid2d] end - subgraph path40 [Path] - 40["Path
[2093, 2235, 0]"] - 41["Segment
[2093, 2235, 0]"] - 42[Solid2d] + subgraph path12 [Path] + 12["Path
[2093, 2235, 0]"] + 23["Segment
[2093, 2235, 0]"] + 27[Solid2d] end - subgraph path50 [Path] - 50["Path
[2629, 2682, 0]"] - 51["Segment
[2629, 2682, 0]"] - 52[Solid2d] + subgraph path13 [Path] + 13["Path
[2629, 2682, 0]"] + 24["Segment
[2629, 2682, 0]"] + 31[Solid2d] end - subgraph path53 [Path] - 53["Path
[2706, 2780, 0]"] - 54["Segment
[2706, 2780, 0]"] - 55[Solid2d] + subgraph path14 [Path] + 14["Path
[2706, 2780, 0]"] + 25["Segment
[2706, 2780, 0]"] + 26[Solid2d] end 1["Plane
[610, 657, 0]"] - 8["Sweep Extrusion
[848, 900, 0]"] - 9[Wall] - 10["Cap Start"] - 11["Cap End"] - 12["SweepEdge Opposite"] - 13["SweepEdge Adjacent"] - 14["Plane
[957, 974, 0]"] - 19["Sweep Revolve
[1196, 1226, 0]"] - 20[Wall] - 21[Wall] - 22["SweepEdge Adjacent"] - 23["Plane
[1461, 1478, 0]"] - 30["Sweep Revolve
[1801, 1831, 0]"] - 31[Wall] - 32[Wall] - 33[Wall] - 34[Wall] - 35["SweepEdge Adjacent"] - 36["SweepEdge Adjacent"] - 37["SweepEdge Adjacent"] - 38["SweepEdge Adjacent"] - 39["Plane
[2070, 2087, 0]"] - 43["Sweep Revolve
[2278, 2329, 0]"] + 2["Plane
[957, 974, 0]"] + 3["Plane
[1461, 1478, 0]"] + 4["Plane
[2070, 2087, 0]"] + 5["Plane
[2575, 2622, 0]"] + 6["StartSketchOnPlane
[596, 658, 0]"] + 7["StartSketchOnPlane
[2561, 2623, 0]"] + 33["Sweep Extrusion
[848, 900, 0]"] + 34["Sweep Revolve
[1196, 1226, 0]"] + 35["Sweep Revolve
[1801, 1831, 0]"] + 36["Sweep Revolve
[2278, 2329, 0]"] + 37["Sweep Extrusion
[2797, 2850, 0]"] + 38[Wall] + 39[Wall] + 40[Wall] + 41[Wall] + 42[Wall] + 43[Wall] 44[Wall] - 45["Cap Start"] - 46["Cap End"] - 47["SweepEdge Opposite"] - 48["SweepEdge Adjacent"] - 49["Plane
[2575, 2622, 0]"] - 56["Sweep Extrusion
[2797, 2850, 0]"] - 57[Wall] - 58["Cap Start"] - 59["Cap End"] - 60["SweepEdge Opposite"] + 45[Wall] + 46[Wall] + 47["Cap Start"] + 48["Cap Start"] + 49["Cap Start"] + 50["Cap End"] + 51["Cap End"] + 52["Cap End"] + 53["SweepEdge Opposite"] + 54["SweepEdge Opposite"] + 55["SweepEdge Opposite"] + 56["SweepEdge Adjacent"] + 57["SweepEdge Adjacent"] + 58["SweepEdge Adjacent"] + 59["SweepEdge Adjacent"] + 60["SweepEdge Adjacent"] 61["SweepEdge Adjacent"] - 62["StartSketchOnPlane
[596, 658, 0]"] - 63["StartSketchOnPlane
[2561, 2623, 0]"] - 1 --- 2 - 1 --- 5 - 2 --- 3 - 2 ---- 8 - 2 --- 4 - 3 --- 9 - 3 --- 12 - 3 --- 13 - 3 x--> 10 - 5 --- 6 - 5 --- 7 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 12 <--x 9 - 12 <--x 11 - 13 <--x 9 - 14 --- 15 - 15 --- 16 - 15 --- 17 - 15 ---- 19 - 15 --- 18 - 16 --- 20 - 16 x--> 22 - 17 --- 21 - 17 --- 22 - 19 --- 20 - 19 --- 21 - 19 <--x 16 - 19 --- 22 - 19 <--x 17 - 22 <--x 20 - 22 <--x 21 - 23 --- 24 - 24 --- 25 - 24 --- 26 - 24 --- 27 - 24 --- 28 - 24 ---- 30 - 24 --- 29 - 25 --- 31 - 25 --- 35 - 26 --- 32 - 26 --- 36 - 27 --- 33 - 27 --- 37 - 28 --- 34 - 28 --- 38 - 30 --- 31 - 30 --- 32 - 30 --- 33 - 30 --- 34 - 30 <--x 25 - 30 --- 35 - 30 <--x 26 - 30 --- 36 - 30 <--x 27 - 30 --- 37 - 30 <--x 28 - 30 --- 38 - 35 <--x 31 - 35 <--x 32 - 36 <--x 32 - 36 <--x 33 - 37 <--x 33 - 37 <--x 34 - 38 <--x 34 - 38 <--x 31 - 39 --- 40 - 40 --- 41 - 40 ---- 43 - 40 --- 42 - 41 --- 44 - 41 --- 47 - 41 --- 48 - 41 x--> 45 - 43 --- 44 - 43 --- 45 - 43 --- 46 - 43 --- 47 - 43 --- 48 - 47 <--x 44 - 47 <--x 46 - 48 <--x 44 - 49 --- 50 - 49 --- 53 - 50 --- 51 - 50 ---- 56 - 50 --- 52 - 51 --- 57 - 51 --- 60 - 51 --- 61 - 51 x--> 58 - 53 --- 54 - 53 --- 55 - 56 --- 57 - 56 --- 58 - 56 --- 59 - 56 --- 60 - 56 --- 61 - 60 <--x 57 - 60 <--x 59 - 61 <--x 57 - 1 <--x 62 - 49 <--x 63 + 62["SweepEdge Adjacent"] + 63["SweepEdge Adjacent"] + 1 <--x 6 + 1 --- 8 + 1 --- 9 + 2 --- 10 + 3 --- 11 + 4 --- 12 + 5 <--x 7 + 5 --- 13 + 5 --- 14 + 8 --- 15 + 8 --- 30 + 8 ---- 33 + 9 --- 16 + 9 --- 32 + 10 --- 17 + 10 --- 18 + 10 --- 28 + 10 ---- 34 + 11 --- 19 + 11 --- 20 + 11 --- 21 + 11 --- 22 + 11 --- 29 + 11 ---- 35 + 12 --- 23 + 12 --- 27 + 12 ---- 36 + 13 --- 24 + 13 --- 31 + 13 ---- 37 + 14 --- 25 + 14 --- 26 + 15 --- 39 + 15 x--> 48 + 15 --- 54 + 15 --- 57 + 34 <--x 17 + 17 --- 45 + 17 x--> 63 + 34 <--x 18 + 18 --- 46 + 18 --- 63 + 35 <--x 19 + 19 --- 42 + 19 --- 61 + 35 <--x 20 + 20 --- 43 + 20 --- 59 + 35 <--x 21 + 21 --- 41 + 21 --- 62 + 35 <--x 22 + 22 --- 44 + 22 --- 60 + 23 --- 38 + 23 x--> 47 + 23 --- 53 + 23 --- 56 + 24 --- 40 + 24 x--> 49 + 24 --- 55 + 24 --- 58 + 33 --- 39 + 33 --- 48 + 33 --- 51 + 33 --- 54 + 33 --- 57 + 34 --- 45 + 34 --- 46 + 34 --- 63 + 35 --- 41 + 35 --- 42 + 35 --- 43 + 35 --- 44 + 35 --- 59 + 35 --- 60 + 35 --- 61 + 35 --- 62 + 36 --- 38 + 36 --- 47 + 36 --- 50 + 36 --- 53 + 36 --- 56 + 37 --- 40 + 37 --- 49 + 37 --- 52 + 37 --- 55 + 37 --- 58 + 53 <--x 38 + 56 <--x 38 + 54 <--x 39 + 57 <--x 39 + 55 <--x 40 + 58 <--x 40 + 59 <--x 41 + 62 <--x 41 + 60 <--x 42 + 61 <--x 42 + 59 <--x 43 + 61 <--x 43 + 60 <--x 44 + 62 <--x 44 + 63 <--x 45 + 63 <--x 46 + 53 <--x 50 + 54 <--x 51 + 55 <--x 52 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/ball-bearing/ops.snap b/rust/kcl-lib/tests/kcl_samples/ball-bearing/ops.snap index 4f3aca918..7b66cea85 100644 --- a/rust/kcl-lib/tests/kcl_samples/ball-bearing/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/ball-bearing/ops.snap @@ -3,6 +3,21 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed ball-bearing.kcl --- [ + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -33,21 +48,6 @@ description: Operations executed ball-bearing.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "tool": { @@ -386,9 +386,6 @@ description: Operations executed ball-bearing.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "KclStdLibCall", "name": "revolve", @@ -900,6 +897,21 @@ description: Operations executed ball-bearing.kcl "sourceRange": [] } }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -930,21 +942,6 @@ description: Operations executed ball-bearing.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "tool": { @@ -1001,5 +998,8 @@ description: Operations executed ball-bearing.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/kcl_samples/bench/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/bench/artifact_commands.snap index 0574b09cd..f82bef531 100644 --- a/rust/kcl-lib/tests/kcl_samples/bench/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/bench/artifact_commands.snap @@ -249,1388 +249,6 @@ description: Artifact commands bench.kcl "hide": true } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -16.82, - "y": 21.2, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -0.13, - "y": -1.27, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 1.01, - "y": -6.46, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -0.66, - "y": -7.79, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -1.78, - "y": -3.11, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.25, - "y": -2.6, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 6.04, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 6.68, - "y": 7.87, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 16.97, - "y": 0.67, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.28, - "y": -8.47, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 5.98, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.3, - "y": 3.01, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 0.43, - "y": 15.31, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 2.63, - "y": 9.26, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 2.35, - "y": 16.36, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.78, - "y": 1.15, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -5.28, - "y": 3.36, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.92, - "y": 0.21, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -3.74, - "y": -26.54, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -3.14, - "y": -2.68, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -31.95, - "y": 1.72, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1676,7 +294,80 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } } }, { @@ -1692,6 +383,107 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -16.82, + "y": 21.2, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -16.82, + "y": 21.2, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -16.82, + "y": 21.2, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -16.82, + "y": 21.2, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -16.82, + "y": 21.2, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -1699,6 +491,168 @@ description: Artifact commands bench.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.13, + "y": -1.27, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.13, + "y": -1.27, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.13, + "y": -1.27, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.13, + "y": -1.27, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.13, + "y": -1.27, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -1733,6 +687,91 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 1.01, + "y": -6.46, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 1.01, + "y": -6.46, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 1.01, + "y": -6.46, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 1.01, + "y": -6.46, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 1.01, + "y": -6.46, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -1750,6 +789,176 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -0.66, + "y": -7.79, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -0.66, + "y": -7.79, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -0.66, + "y": -7.79, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -0.66, + "y": -7.79, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -0.66, + "y": -7.79, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -1.78, + "y": -3.11, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -1.78, + "y": -3.11, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -1.78, + "y": -3.11, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -1.78, + "y": -3.11, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -1.78, + "y": -3.11, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -1793,8 +1002,8 @@ description: Artifact commands bench.kcl "segment": { "type": "line", "end": { - "x": 6.04, - "y": 0.0, + "x": -1.25, + "y": -2.6, "z": 0.0 }, "relative": true @@ -1810,42 +1019,8 @@ description: Artifact commands bench.kcl "segment": { "type": "line", "end": { - "x": 6.68, - "y": 7.87, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 16.97, - "y": 0.67, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.28, - "y": -8.47, + "x": -1.25, + "y": -2.6, "z": 0.0 }, "relative": true @@ -1861,8 +1036,8 @@ description: Artifact commands bench.kcl "segment": { "type": "line", "end": { - "x": 5.98, - "y": 0.0, + "x": -1.25, + "y": -2.6, "z": 0.0 }, "relative": true @@ -1878,1303 +1053,14 @@ description: Artifact commands bench.kcl "segment": { "type": "line", "end": { - "x": -1.3, - "y": 3.01, + "x": -1.25, + "y": -2.6, "z": 0.0 }, "relative": true } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 0.43, - "y": 15.31, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 2.63, - "y": 9.26, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 2.35, - "y": 16.36, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.78, - "y": 1.15, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -5.28, - "y": 3.36, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.92, - "y": 0.21, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -3.74, - "y": -26.54, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -3.14, - "y": -2.68, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -31.95, - "y": 1.72, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_shell_face", - "object_id": "[uuid]", - "face_ids": [ - "[uuid]" - ], - "shell_thickness": 1.5, - "hollow": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_shell_face", - "object_id": "[uuid]", - "face_ids": [ - "[uuid]" - ], - "shell_thickness": 1.5, - "hollow": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -16.82, - "y": 21.2, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -0.13, - "y": -1.27, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 1.01, - "y": -6.46, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -0.66, - "y": -7.79, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -1.78, - "y": -3.11, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, { "cmdId": "[uuid]", "range": [], @@ -3209,6 +1095,91 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.04, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.04, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.04, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.04, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.04, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -3226,6 +1197,176 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.68, + "y": 7.87, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.68, + "y": 7.87, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.68, + "y": 7.87, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.68, + "y": 7.87, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.68, + "y": 7.87, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 16.97, + "y": 0.67, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 16.97, + "y": 0.67, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 16.97, + "y": 0.67, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 16.97, + "y": 0.67, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 16.97, + "y": 0.67, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -3260,6 +1401,91 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.28, + "y": -8.47, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.28, + "y": -8.47, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.28, + "y": -8.47, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.28, + "y": -8.47, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.28, + "y": -8.47, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -3277,6 +1503,176 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 5.98, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 5.98, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 5.98, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 5.98, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 5.98, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.3, + "y": 3.01, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.3, + "y": 3.01, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.3, + "y": 3.01, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.3, + "y": 3.01, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.3, + "y": 3.01, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -3311,6 +1707,176 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 0.43, + "y": 15.31, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 0.43, + "y": 15.31, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 0.43, + "y": 15.31, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 0.43, + "y": 15.31, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 0.43, + "y": 15.31, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 2.63, + "y": 9.26, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 2.63, + "y": 9.26, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 2.63, + "y": 9.26, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 2.63, + "y": 9.26, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 2.63, + "y": 9.26, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -3345,6 +1911,176 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 2.35, + "y": 16.36, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 2.35, + "y": 16.36, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 2.35, + "y": 16.36, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 2.35, + "y": 16.36, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 2.35, + "y": 16.36, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.78, + "y": 1.15, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.78, + "y": 1.15, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.78, + "y": 1.15, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.78, + "y": 1.15, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.78, + "y": 1.15, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -3379,6 +2115,91 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -5.28, + "y": 3.36, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -5.28, + "y": 3.36, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -5.28, + "y": 3.36, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -5.28, + "y": 3.36, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -5.28, + "y": 3.36, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -3396,6 +2217,176 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.92, + "y": 0.21, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.92, + "y": 0.21, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.92, + "y": 0.21, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.92, + "y": 0.21, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.92, + "y": 0.21, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -3.74, + "y": -26.54, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -3.74, + "y": -26.54, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -3.74, + "y": -26.54, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -3.74, + "y": -26.54, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -3.74, + "y": -26.54, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -3430,6 +2421,176 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -3.14, + "y": -2.68, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -3.14, + "y": -2.68, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -3.14, + "y": -2.68, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -3.14, + "y": -2.68, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -3.14, + "y": -2.68, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -31.95, + "y": 1.72, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -31.95, + "y": 1.72, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -31.95, + "y": 1.72, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -31.95, + "y": 1.72, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -31.95, + "y": 1.72, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -3455,6 +2616,78 @@ description: Artifact commands bench.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -3482,2785 +2715,17 @@ description: Artifact commands bench.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -16.82, - "y": 21.2, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -0.13, - "y": -1.27, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 1.01, - "y": -6.46, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -0.66, - "y": -7.79, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -1.78, - "y": -3.11, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.25, - "y": -2.6, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 6.04, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 6.68, - "y": 7.87, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 16.97, - "y": 0.67, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.28, - "y": -8.47, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 5.98, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.3, - "y": 3.01, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 0.43, - "y": 15.31, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 2.63, - "y": 9.26, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 2.35, - "y": 16.36, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.78, - "y": 1.15, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -5.28, - "y": 3.36, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.92, - "y": 0.21, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -3.74, - "y": -26.54, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -3.14, - "y": -2.68, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -31.95, - "y": 1.72, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, { "cmdId": "[uuid]", "range": [], "command": { "type": "extrude", "target": "[uuid]", - "distance": -2.0, + "distance": 2.0, "faces": null, "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_shell_face", - "object_id": "[uuid]", - "face_ids": [ - "[uuid]" - ], - "shell_thickness": 1.5, - "hollow": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_shell_face", - "object_id": "[uuid]", - "face_ids": [ - "[uuid]" - ], - "shell_thickness": 1.5, - "hollow": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -16.82, - "y": 21.2, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -0.13, - "y": -1.27, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 1.01, - "y": -6.46, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -0.66, - "y": -7.79, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -1.78, - "y": -3.11, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.25, - "y": -2.6, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 6.04, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 6.68, - "y": 7.87, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 16.97, - "y": 0.67, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.28, - "y": -8.47, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 5.98, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.3, - "y": 3.01, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 0.43, - "y": 15.31, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 2.63, - "y": 9.26, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 2.35, - "y": 16.36, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.78, - "y": 1.15, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -5.28, - "y": 3.36, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.92, - "y": 0.21, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -3.74, - "y": -26.54, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -3.14, - "y": -2.68, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -31.95, - "y": 1.72, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, { "cmdId": "[uuid]", "range": [], @@ -6276,7 +2741,8 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -6287,6 +2753,1655 @@ description: Artifact commands bench.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6300,7 +4415,7 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -6309,17 +4424,7 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -6338,39 +4443,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6385,39 +4463,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6432,39 +4483,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6479,39 +4503,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6526,39 +4523,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6573,39 +4543,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6620,39 +4563,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6667,39 +4583,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6714,39 +4603,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6761,39 +4623,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6808,39 +4643,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6855,39 +4663,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6902,39 +4683,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6949,39 +4703,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6996,39 +4723,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7043,39 +4743,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7090,39 +4763,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7137,39 +4783,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7184,39 +4803,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7231,9 +4823,810 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7256,377 +5649,18 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -16.82, - "y": 21.2, + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, "z": 0.0 } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -0.13, - "y": -1.27, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 1.01, - "y": -6.46, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -0.66, - "y": -7.79, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -1.78, - "y": -3.11, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.25, - "y": -2.6, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 6.04, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 6.68, - "y": 7.87, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 16.97, - "y": 0.67, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.28, - "y": -8.47, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 5.98, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.3, - "y": 3.01, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 0.43, - "y": 15.31, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 2.63, - "y": 9.26, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 2.35, - "y": 16.36, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.78, - "y": 1.15, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -5.28, - "y": 3.36, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.92, - "y": 0.21, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -3.74, - "y": -26.54, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -3.14, - "y": -2.68, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -31.95, - "y": 1.72, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7658,7 +5692,22 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" } }, { @@ -7669,6 +5718,1663 @@ description: Artifact commands bench.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -7682,7 +7388,7 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -7691,17 +7397,7 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -7720,39 +7416,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7767,39 +7436,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7814,39 +7456,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7861,39 +7476,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7908,39 +7496,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7955,39 +7516,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8002,39 +7536,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8049,39 +7556,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8096,39 +7576,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8143,39 +7596,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8190,39 +7616,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8237,39 +7636,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8284,39 +7656,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8331,39 +7676,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8378,39 +7696,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8425,39 +7716,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8472,39 +7736,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8519,39 +7756,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8566,39 +7776,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8613,9 +7796,862 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_shell_face", + "object_id": "[uuid]", + "face_ids": [ + "[uuid]" + ], + "shell_thickness": 1.5, + "hollow": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_shell_face", + "object_id": "[uuid]", + "face_ids": [ + "[uuid]" + ], + "shell_thickness": 1.5, + "hollow": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_shell_face", + "object_id": "[uuid]", + "face_ids": [ + "[uuid]" + ], + "shell_thickness": 1.5, + "hollow": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_shell_face", + "object_id": "[uuid]", + "face_ids": [ + "[uuid]" + ], + "shell_thickness": 1.5, + "hollow": false } }, { @@ -8664,7 +8700,16 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } } }, { @@ -8680,6 +8725,37 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 16.0, + "y": 8.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -8687,6 +8763,43 @@ description: Artifact commands bench.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -8707,29 +8820,18 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -10.614359353944899, - "y": 8.0, + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, "z": 0.0 } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8832,433 +8934,6 @@ description: Artifact commands bench.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 56.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 16.0, - "y": 8.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 17.3856406460551, - "y": 8.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -9365,8 +9040,72 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -10.614359353944899, + "y": 8.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 17.3856406460551, + "y": 8.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -9396,6 +9135,14 @@ description: Artifact commands bench.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -9407,8 +9154,162 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -9424,30 +9325,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -9462,39 +9345,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -9509,39 +9365,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -9556,18 +9385,10 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -9584,39 +9405,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -9627,43 +9421,6 @@ description: Artifact commands bench.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -9678,30 +9435,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -9722,7 +9461,333 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "extrude", + "target": "[uuid]", + "distance": 56.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } } }, { @@ -9738,6 +9803,15 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -9745,6 +9819,13 @@ description: Artifact commands bench.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -9944,317 +10025,16 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 60.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } } }, { @@ -10288,322 +10068,11 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 60.0, + "faces": null, + "opposite": "None" } }, { @@ -10621,7 +10090,8 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -10632,6 +10102,521 @@ description: Artifact commands bench.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -10645,7 +10630,7 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -10654,17 +10639,7 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -10683,39 +10658,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -10730,39 +10678,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -10777,39 +10698,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -10824,39 +10718,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -10871,39 +10738,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -10918,9 +10758,250 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10939,13 +11020,6 @@ description: Artifact commands bench.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -10959,6 +11033,15 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -10966,6 +11049,13 @@ description: Artifact commands bench.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -11132,323 +11222,6 @@ description: Artifact commands bench.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 60.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11480,7 +11253,11 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 60.0, + "faces": null, + "opposite": "None" } }, { @@ -11491,6 +11268,352 @@ description: Artifact commands bench.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -11504,26 +11627,7 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -11542,39 +11646,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11589,39 +11666,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11636,39 +11686,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11683,39 +11706,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11730,39 +11726,12 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11777,48 +11746,130 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "make_plane", - "origin": { - "x": 28.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "size": 100.0, - "clobber": false, - "hide": false + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 - } + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11841,7 +11892,16 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } } }, { @@ -11857,6 +11917,37 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 20.0, + "y": 33.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -11864,6 +11955,44 @@ description: Artifact commands bench.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -20.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -11910,38 +12039,24 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 20.0, - "z": 0.0 - }, - "x_axis": { - "x": -1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "size": 100.0, - "clobber": false, - "hide": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": -0.0, + "y": 23.0 + }, + "radius": 10.0, + "start": { + "unit": "degrees", + "value": 90.0 + }, + "end": { + "unit": "degrees", + "value": 180.0 + }, + "relative": false } } }, @@ -11965,7 +12080,16 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 1.0, + "z": -0.0 + } } }, { @@ -11981,6 +12105,37 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 28.0, + "y": 32.4, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -11988,6 +12143,44 @@ description: Artifact commands bench.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.3, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -12022,6 +12215,40 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.3, + "y": 0.6, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.3, + "y": 0.6, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -12056,6 +12283,23 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -2.6, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -12073,6 +12317,40 @@ description: Artifact commands bench.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.3, + "y": -0.6, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.3, + "y": -0.6, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -12102,366 +12380,33 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sweep", - "target": "[uuid]", - "trajectory": "[uuid]", - "sectional": false, - "tolerance": 0.0000001 + "type": "close_path", + "path_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "make_plane", + "origin": { + "x": 28.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "size": 100.0, + "clobber": false, + "hide": false } }, { @@ -12507,85 +12452,39 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 20.0, + "z": 0.0 + }, + "x_axis": { + "x": -1.0, "y": 0.0, "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 20.0, - "y": 33.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -20.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": -0.0, - "y": 23.0 - }, - "radius": 10.0, - "start": { - "unit": "degrees", - "value": 90.0 - }, - "end": { - "unit": "degrees", - "value": 180.0 - }, - "relative": false - } + }, + "y_axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "size": 100.0, + "clobber": false, + "hide": false } }, { @@ -12631,15 +12530,13 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 1.0, - "z": -0.0 + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 } } }, @@ -12647,137 +12544,710 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 28.0, - "y": 32.4, - "z": 0.0 - } + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.3, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.3, - "y": 0.6, - "z": 0.0 - }, - "relative": true - } + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -0.3, - "y": 0.6, - "z": 0.0 - }, - "relative": true - } + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -2.6, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -0.3, - "y": -0.6, - "z": 0.0 - }, - "relative": true - } + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.3, - "y": -0.6, - "z": 0.0 - }, - "relative": true - } + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12795,481 +13265,11 @@ description: Artifact commands bench.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "sweep", + "target": "[uuid]", + "trajectory": "[uuid]", + "sectional": false, + "tolerance": 0.0000001 } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/bench/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/bench/artifact_graph_flowchart.snap.md index aa9239a85..35edd5bb8 100644 --- a/rust/kcl-lib/tests/kcl_samples/bench/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/bench/artifact_graph_flowchart.snap.md @@ -1,430 +1,322 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[361, 394, 8]"] - 3["Segment
[402, 428, 8]"] - 4["Segment
[436, 498, 8]"] - 5["Segment
[506, 568, 8]"] - 6["Segment
[576, 639, 8]"] - 7["Segment
[647, 672, 8]"] - 8["Segment
[680, 700, 8]"] - 9["Segment
[708, 732, 8]"] - 10["Segment
[740, 802, 8]"] - 11["Segment
[810, 835, 8]"] - 12["Segment
[843, 863, 8]"] - 13["Segment
[871, 895, 8]"] - 14["Segment
[903, 964, 8]"] - 15["Segment
[972, 1033, 8]"] - 16["Segment
[1041, 1066, 8]"] - 17["Segment
[1074, 1098, 8]"] - 18["Segment
[1106, 1168, 8]"] - 19["Segment
[1176, 1201, 8]"] - 20["Segment
[1209, 1236, 8]"] - 21["Segment
[1244, 1305, 8]"] - 22["Segment
[1313, 1357, 8]"] - 23["Segment
[1365, 1372, 8]"] - 24[Solid2d] + subgraph path24 [Path] + 24["Path
[361, 394, 8]"] + 41["Segment
[402, 428, 8]"] + 47["Segment
[436, 498, 8]"] + 52["Segment
[506, 568, 8]"] + 58["Segment
[576, 639, 8]"] + 68["Segment
[647, 672, 8]"] + 72["Segment
[680, 700, 8]"] + 79["Segment
[708, 732, 8]"] + 84["Segment
[740, 802, 8]"] + 89["Segment
[810, 835, 8]"] + 94["Segment
[843, 863, 8]"] + 103["Segment
[871, 895, 8]"] + 109["Segment
[903, 964, 8]"] + 113["Segment
[972, 1033, 8]"] + 122["Segment
[1041, 1066, 8]"] + 129["Segment
[1074, 1098, 8]"] + 132["Segment
[1106, 1168, 8]"] + 136["Segment
[1176, 1201, 8]"] + 144["Segment
[1209, 1236, 8]"] + 152["Segment
[1244, 1305, 8]"] + 155["Segment
[1313, 1357, 8]"] + 162["Segment
[1365, 1372, 8]"] + 212[Solid2d] end - subgraph path89 [Path] - 89["Path
[361, 394, 8]"] - 90["Segment
[402, 428, 8]"] - 91["Segment
[436, 498, 8]"] - 92["Segment
[506, 568, 8]"] - 93["Segment
[576, 639, 8]"] - 94["Segment
[647, 672, 8]"] - 95["Segment
[680, 700, 8]"] - 96["Segment
[708, 732, 8]"] - 97["Segment
[740, 802, 8]"] - 98["Segment
[810, 835, 8]"] + subgraph path25 [Path] + 25["Path
[361, 394, 8]"] + 44["Segment
[402, 428, 8]"] + 49["Segment
[436, 498, 8]"] + 55["Segment
[506, 568, 8]"] + 63["Segment
[576, 639, 8]"] + 66["Segment
[647, 672, 8]"] + 71["Segment
[680, 700, 8]"] + 81["Segment
[708, 732, 8]"] + 87["Segment
[740, 802, 8]"] + 91["Segment
[810, 835, 8]"] + 96["Segment
[843, 863, 8]"] + 101["Segment
[871, 895, 8]"] + 111["Segment
[903, 964, 8]"] + 116["Segment
[972, 1033, 8]"] + 120["Segment
[1041, 1066, 8]"] + 124["Segment
[1074, 1098, 8]"] + 134["Segment
[1106, 1168, 8]"] + 137["Segment
[1176, 1201, 8]"] + 147["Segment
[1209, 1236, 8]"] + 148["Segment
[1244, 1305, 8]"] + 158["Segment
[1313, 1357, 8]"] + 164["Segment
[1365, 1372, 8]"] + 216[Solid2d] + end + subgraph path26 [Path] + 26["Path
[361, 394, 8]"] + 40["Segment
[402, 428, 8]"] + 50["Segment
[436, 498, 8]"] + 53["Segment
[506, 568, 8]"] + 60["Segment
[576, 639, 8]"] + 67["Segment
[647, 672, 8]"] + 74["Segment
[680, 700, 8]"] + 77["Segment
[708, 732, 8]"] + 83["Segment
[740, 802, 8]"] + 88["Segment
[810, 835, 8]"] + 95["Segment
[843, 863, 8]"] + 105["Segment
[871, 895, 8]"] + 106["Segment
[903, 964, 8]"] + 117["Segment
[972, 1033, 8]"] + 118["Segment
[1041, 1066, 8]"] + 125["Segment
[1074, 1098, 8]"] + 133["Segment
[1106, 1168, 8]"] + 141["Segment
[1176, 1201, 8]"] + 145["Segment
[1209, 1236, 8]"] + 150["Segment
[1244, 1305, 8]"] + 157["Segment
[1313, 1357, 8]"] + 160["Segment
[1365, 1372, 8]"] + 217[Solid2d] + end + subgraph path27 [Path] + 27["Path
[361, 394, 8]"] + 43["Segment
[402, 428, 8]"] + 46["Segment
[436, 498, 8]"] + 56["Segment
[506, 568, 8]"] + 59["Segment
[576, 639, 8]"] + 64["Segment
[647, 672, 8]"] + 75["Segment
[680, 700, 8]"] + 76["Segment
[708, 732, 8]"] + 85["Segment
[740, 802, 8]"] + 92["Segment
[810, 835, 8]"] 99["Segment
[843, 863, 8]"] + 102["Segment
[871, 895, 8]"] + 110["Segment
[903, 964, 8]"] + 115["Segment
[972, 1033, 8]"] + 119["Segment
[1041, 1066, 8]"] + 126["Segment
[1074, 1098, 8]"] + 131["Segment
[1106, 1168, 8]"] + 138["Segment
[1176, 1201, 8]"] + 146["Segment
[1209, 1236, 8]"] + 153["Segment
[1244, 1305, 8]"] + 159["Segment
[1313, 1357, 8]"] + 161["Segment
[1365, 1372, 8]"] + 218[Solid2d] + end + subgraph path28 [Path] + 28["Path
[361, 394, 8]"] + 42["Segment
[402, 428, 8]"] + 51["Segment
[436, 498, 8]"] + 57["Segment
[506, 568, 8]"] + 62["Segment
[576, 639, 8]"] + 65["Segment
[647, 672, 8]"] + 73["Segment
[680, 700, 8]"] + 80["Segment
[708, 732, 8]"] + 82["Segment
[740, 802, 8]"] + 90["Segment
[810, 835, 8]"] + 97["Segment
[843, 863, 8]"] 100["Segment
[871, 895, 8]"] - 101["Segment
[903, 964, 8]"] - 102["Segment
[972, 1033, 8]"] - 103["Segment
[1041, 1066, 8]"] - 104["Segment
[1074, 1098, 8]"] - 105["Segment
[1106, 1168, 8]"] - 106["Segment
[1176, 1201, 8]"] - 107["Segment
[1209, 1236, 8]"] - 108["Segment
[1244, 1305, 8]"] - 109["Segment
[1313, 1357, 8]"] - 110["Segment
[1365, 1372, 8]"] - 111[Solid2d] + 108["Segment
[903, 964, 8]"] + 114["Segment
[972, 1033, 8]"] + 123["Segment
[1041, 1066, 8]"] + 127["Segment
[1074, 1098, 8]"] + 135["Segment
[1106, 1168, 8]"] + 139["Segment
[1176, 1201, 8]"] + 143["Segment
[1209, 1236, 8]"] + 149["Segment
[1244, 1305, 8]"] + 154["Segment
[1313, 1357, 8]"] + 165["Segment
[1365, 1372, 8]"] + 219[Solid2d] end - subgraph path176 [Path] - 176["Path
[361, 394, 8]"] - 177["Segment
[402, 428, 8]"] - 178["Segment
[436, 498, 8]"] - 179["Segment
[506, 568, 8]"] - 180["Segment
[576, 639, 8]"] - 181["Segment
[647, 672, 8]"] - 182["Segment
[680, 700, 8]"] - 183["Segment
[708, 732, 8]"] - 184["Segment
[740, 802, 8]"] - 185["Segment
[810, 835, 8]"] - 186["Segment
[843, 863, 8]"] - 187["Segment
[871, 895, 8]"] - 188["Segment
[903, 964, 8]"] - 189["Segment
[972, 1033, 8]"] - 190["Segment
[1041, 1066, 8]"] - 191["Segment
[1074, 1098, 8]"] - 192["Segment
[1106, 1168, 8]"] - 193["Segment
[1176, 1201, 8]"] - 194["Segment
[1209, 1236, 8]"] - 195["Segment
[1244, 1305, 8]"] - 196["Segment
[1313, 1357, 8]"] - 197["Segment
[1365, 1372, 8]"] - 198[Solid2d] + subgraph path29 [Path] + 29["Path
[361, 394, 8]"] + 45["Segment
[402, 428, 8]"] + 48["Segment
[436, 498, 8]"] + 54["Segment
[506, 568, 8]"] + 61["Segment
[576, 639, 8]"] + 69["Segment
[647, 672, 8]"] + 70["Segment
[680, 700, 8]"] + 78["Segment
[708, 732, 8]"] + 86["Segment
[740, 802, 8]"] + 93["Segment
[810, 835, 8]"] + 98["Segment
[843, 863, 8]"] + 104["Segment
[871, 895, 8]"] + 107["Segment
[903, 964, 8]"] + 112["Segment
[972, 1033, 8]"] + 121["Segment
[1041, 1066, 8]"] + 128["Segment
[1074, 1098, 8]"] + 130["Segment
[1106, 1168, 8]"] + 140["Segment
[1176, 1201, 8]"] + 142["Segment
[1209, 1236, 8]"] + 151["Segment
[1244, 1305, 8]"] + 156["Segment
[1313, 1357, 8]"] + 163["Segment
[1365, 1372, 8]"] + 223[Solid2d] end - subgraph path262 [Path] - 262["Path
[361, 394, 8]"] - 263["Segment
[402, 428, 8]"] - 264["Segment
[436, 498, 8]"] - 265["Segment
[506, 568, 8]"] - 266["Segment
[576, 639, 8]"] - 267["Segment
[647, 672, 8]"] - 268["Segment
[680, 700, 8]"] - 269["Segment
[708, 732, 8]"] - 270["Segment
[740, 802, 8]"] - 271["Segment
[810, 835, 8]"] - 272["Segment
[843, 863, 8]"] - 273["Segment
[871, 895, 8]"] - 274["Segment
[903, 964, 8]"] - 275["Segment
[972, 1033, 8]"] - 276["Segment
[1041, 1066, 8]"] - 277["Segment
[1074, 1098, 8]"] - 278["Segment
[1106, 1168, 8]"] - 279["Segment
[1176, 1201, 8]"] - 280["Segment
[1209, 1236, 8]"] - 281["Segment
[1244, 1305, 8]"] - 282["Segment
[1313, 1357, 8]"] - 283["Segment
[1365, 1372, 8]"] - 284[Solid2d] + subgraph path30 [Path] + 30["Path
[1762, 1786, 8]"] end - subgraph path349 [Path] - 349["Path
[361, 394, 8]"] - 350["Segment
[402, 428, 8]"] - 351["Segment
[436, 498, 8]"] - 352["Segment
[506, 568, 8]"] - 353["Segment
[576, 639, 8]"] - 354["Segment
[647, 672, 8]"] - 355["Segment
[680, 700, 8]"] - 356["Segment
[708, 732, 8]"] - 357["Segment
[740, 802, 8]"] - 358["Segment
[810, 835, 8]"] - 359["Segment
[843, 863, 8]"] - 360["Segment
[871, 895, 8]"] - 361["Segment
[903, 964, 8]"] - 362["Segment
[972, 1033, 8]"] - 363["Segment
[1041, 1066, 8]"] - 364["Segment
[1074, 1098, 8]"] - 365["Segment
[1106, 1168, 8]"] - 366["Segment
[1176, 1201, 8]"] - 367["Segment
[1209, 1236, 8]"] - 368["Segment
[1244, 1305, 8]"] - 369["Segment
[1313, 1357, 8]"] - 370["Segment
[1365, 1372, 8]"] - 371[Solid2d] + subgraph path31 [Path] + 31["Path
[1762, 1786, 8]"] end - subgraph path435 [Path] - 435["Path
[361, 394, 8]"] - 436["Segment
[402, 428, 8]"] - 437["Segment
[436, 498, 8]"] - 438["Segment
[506, 568, 8]"] - 439["Segment
[576, 639, 8]"] - 440["Segment
[647, 672, 8]"] - 441["Segment
[680, 700, 8]"] - 442["Segment
[708, 732, 8]"] - 443["Segment
[740, 802, 8]"] - 444["Segment
[810, 835, 8]"] - 445["Segment
[843, 863, 8]"] - 446["Segment
[871, 895, 8]"] - 447["Segment
[903, 964, 8]"] - 448["Segment
[972, 1033, 8]"] - 449["Segment
[1041, 1066, 8]"] - 450["Segment
[1074, 1098, 8]"] - 451["Segment
[1106, 1168, 8]"] - 452["Segment
[1176, 1201, 8]"] - 453["Segment
[1209, 1236, 8]"] - 454["Segment
[1244, 1305, 8]"] - 455["Segment
[1313, 1357, 8]"] - 456["Segment
[1365, 1372, 8]"] - 457[Solid2d] + subgraph path32 [Path] + 32["Path
[1794, 1920, 8]"] + 166["Segment
[1794, 1920, 8]"] + 169["Segment
[1794, 1920, 8]"] + 170["Segment
[1794, 1920, 8]"] + 172["Segment
[1794, 1920, 8]"] + 173["Segment
[1794, 1920, 8]"] + 178["Segment
[1794, 1920, 8]"] + 179["Segment
[1794, 1920, 8]"] + 221[Solid2d] end - subgraph path522 [Path] - 522["Path
[1762, 1786, 8]"] + subgraph path33 [Path] + 33["Path
[1794, 1920, 8]"] + 167["Segment
[1794, 1920, 8]"] + 168["Segment
[1794, 1920, 8]"] + 171["Segment
[1794, 1920, 8]"] + 174["Segment
[1794, 1920, 8]"] + 175["Segment
[1794, 1920, 8]"] + 176["Segment
[1794, 1920, 8]"] + 177["Segment
[1794, 1920, 8]"] + 222[Solid2d] end - subgraph path523 [Path] - 523["Path
[1794, 1920, 8]"] - 524["Segment
[1794, 1920, 8]"] - 525["Segment
[1794, 1920, 8]"] - 526["Segment
[1794, 1920, 8]"] - 527["Segment
[1794, 1920, 8]"] - 528["Segment
[1794, 1920, 8]"] - 529["Segment
[1794, 1920, 8]"] - 530["Segment
[1794, 1920, 8]"] - 531[Solid2d] + subgraph path34 [Path] + 34["Path
[2196, 2223, 8]"] + 180["Segment
[2231, 2253, 8]"] + 181["Segment
[2261, 2283, 8]"] + 182["Segment
[2291, 2313, 8]"] + 183["Segment
[2321, 2344, 8]"] + 184["Segment
[2352, 2375, 8]"] + 185["Segment
[2383, 2418, 8]"] + 186["Segment
[2426, 2433, 8]"] + 213[Solid2d] end - subgraph path553 [Path] - 553["Path
[1762, 1786, 8]"] + subgraph path35 [Path] + 35["Path
[2705, 2734, 8]"] + 187["Segment
[2742, 2777, 8]"] + 188["Segment
[2785, 2810, 8]"] + 189["Segment
[2818, 2854, 8]"] + 190["Segment
[2862, 2886, 8]"] + 191["Segment
[2894, 2928, 8]"] + 192["Segment
[2936, 2971, 8]"] + 193["Segment
[2979, 2986, 8]"] + 215[Solid2d] end - subgraph path554 [Path] - 554["Path
[1794, 1920, 8]"] - 555["Segment
[1794, 1920, 8]"] - 556["Segment
[1794, 1920, 8]"] - 557["Segment
[1794, 1920, 8]"] - 558["Segment
[1794, 1920, 8]"] - 559["Segment
[1794, 1920, 8]"] - 560["Segment
[1794, 1920, 8]"] - 561["Segment
[1794, 1920, 8]"] - 562[Solid2d] + subgraph path36 [Path] + 36["Path
[3261, 3288, 8]"] + 194["Segment
[3296, 3315, 8]"] + 196["Segment
[3323, 3372, 8]"] end - subgraph path585 [Path] - 585["Path
[2196, 2223, 8]"] - 586["Segment
[2231, 2253, 8]"] - 587["Segment
[2261, 2283, 8]"] - 588["Segment
[2291, 2313, 8]"] - 589["Segment
[2321, 2344, 8]"] - 590["Segment
[2352, 2375, 8]"] - 591["Segment
[2383, 2418, 8]"] - 592["Segment
[2426, 2433, 8]"] - 593[Solid2d] + subgraph path37 [Path] + 37["Path
[3261, 3288, 8]"] + 195["Segment
[3296, 3315, 8]"] + 197["Segment
[3323, 3372, 8]"] end - subgraph path618 [Path] - 618["Path
[2705, 2734, 8]"] - 619["Segment
[2742, 2777, 8]"] - 620["Segment
[2785, 2810, 8]"] - 621["Segment
[2818, 2854, 8]"] - 622["Segment
[2862, 2886, 8]"] - 623["Segment
[2894, 2928, 8]"] - 624["Segment
[2936, 2971, 8]"] - 625["Segment
[2979, 2986, 8]"] - 626[Solid2d] + subgraph path38 [Path] + 38["Path
[3472, 3505, 8]"] + 198["Segment
[3513, 3532, 8]"] + 200["Segment
[3540, 3562, 8]"] + 202["Segment
[3570, 3593, 8]"] + 204["Segment
[3601, 3621, 8]"] + 207["Segment
[3629, 3653, 8]"] + 208["Segment
[3661, 3684, 8]"] + 211["Segment
[3692, 3699, 8]"] + 214[Solid2d] end - subgraph path650 [Path] - 650["Path
[3261, 3288, 8]"] - 651["Segment
[3296, 3315, 8]"] - 652["Segment
[3323, 3372, 8]"] + subgraph path39 [Path] + 39["Path
[3472, 3505, 8]"] + 199["Segment
[3513, 3532, 8]"] + 201["Segment
[3540, 3562, 8]"] + 203["Segment
[3570, 3593, 8]"] + 205["Segment
[3601, 3621, 8]"] + 206["Segment
[3629, 3653, 8]"] + 209["Segment
[3661, 3684, 8]"] + 210["Segment
[3692, 3699, 8]"] + 220[Solid2d] end - subgraph path654 [Path] - 654["Path
[3472, 3505, 8]"] - 655["Segment
[3513, 3532, 8]"] - 656["Segment
[3540, 3562, 8]"] - 657["Segment
[3570, 3593, 8]"] - 658["Segment
[3601, 3621, 8]"] - 659["Segment
[3629, 3653, 8]"] - 660["Segment
[3661, 3684, 8]"] - 661["Segment
[3692, 3699, 8]"] - 662[Solid2d] - end - subgraph path688 [Path] - 688["Path
[3261, 3288, 8]"] - 689["Segment
[3296, 3315, 8]"] - 690["Segment
[3323, 3372, 8]"] - end - subgraph path692 [Path] - 692["Path
[3472, 3505, 8]"] - 693["Segment
[3513, 3532, 8]"] - 694["Segment
[3540, 3562, 8]"] - 695["Segment
[3570, 3593, 8]"] - 696["Segment
[3601, 3621, 8]"] - 697["Segment
[3629, 3653, 8]"] - 698["Segment
[3661, 3684, 8]"] - 699["Segment
[3692, 3699, 8]"] - 700[Solid2d] - end - 1["Plane
[333, 353, 8]"] - 25["Sweep Extrusion
[1460, 1498, 8]"] - 26[Wall] - 27[Wall] - 28[Wall] - 29[Wall] - 30[Wall] - 31[Wall] - 32[Wall] - 33[Wall] - 34[Wall] - 35[Wall] - 36[Wall] - 37[Wall] - 38[Wall] - 39[Wall] - 40[Wall] - 41[Wall] - 42[Wall] - 43[Wall] - 44[Wall] - 45[Wall] - 46["Cap Start"] - 47["Cap End"] - 48["SweepEdge Opposite"] - 49["SweepEdge Adjacent"] - 50["SweepEdge Opposite"] - 51["SweepEdge Adjacent"] - 52["SweepEdge Opposite"] - 53["SweepEdge Adjacent"] - 54["SweepEdge Opposite"] - 55["SweepEdge Adjacent"] - 56["SweepEdge Opposite"] - 57["SweepEdge Adjacent"] - 58["SweepEdge Opposite"] - 59["SweepEdge Adjacent"] - 60["SweepEdge Opposite"] - 61["SweepEdge Adjacent"] - 62["SweepEdge Opposite"] - 63["SweepEdge Adjacent"] - 64["SweepEdge Opposite"] - 65["SweepEdge Adjacent"] - 66["SweepEdge Opposite"] - 67["SweepEdge Adjacent"] - 68["SweepEdge Opposite"] - 69["SweepEdge Adjacent"] - 70["SweepEdge Opposite"] - 71["SweepEdge Adjacent"] - 72["SweepEdge Opposite"] - 73["SweepEdge Adjacent"] - 74["SweepEdge Opposite"] - 75["SweepEdge Adjacent"] - 76["SweepEdge Opposite"] - 77["SweepEdge Adjacent"] - 78["SweepEdge Opposite"] - 79["SweepEdge Adjacent"] - 80["SweepEdge Opposite"] - 81["SweepEdge Adjacent"] - 82["SweepEdge Opposite"] - 83["SweepEdge Adjacent"] - 84["SweepEdge Opposite"] - 85["SweepEdge Adjacent"] - 86["SweepEdge Opposite"] - 87["SweepEdge Adjacent"] - 88["Plane
[333, 353, 8]"] - 112["Sweep Extrusion
[1536, 1575, 8]"] - 113[Wall] - 114[Wall] - 115[Wall] - 116[Wall] - 117[Wall] - 118[Wall] - 119[Wall] - 120[Wall] - 121[Wall] - 122[Wall] - 123[Wall] - 124[Wall] - 125[Wall] - 126[Wall] - 127[Wall] - 128[Wall] - 129[Wall] - 130[Wall] - 131[Wall] - 132[Wall] - 133["Cap Start"] - 134["Cap End"] - 135["SweepEdge Opposite"] - 136["SweepEdge Adjacent"] - 137["SweepEdge Opposite"] - 138["SweepEdge Adjacent"] - 139["SweepEdge Opposite"] - 140["SweepEdge Adjacent"] - 141["SweepEdge Opposite"] - 142["SweepEdge Adjacent"] - 143["SweepEdge Opposite"] - 144["SweepEdge Adjacent"] - 145["SweepEdge Opposite"] - 146["SweepEdge Adjacent"] - 147["SweepEdge Opposite"] - 148["SweepEdge Adjacent"] - 149["SweepEdge Opposite"] - 150["SweepEdge Adjacent"] - 151["SweepEdge Opposite"] - 152["SweepEdge Adjacent"] - 153["SweepEdge Opposite"] - 154["SweepEdge Adjacent"] - 155["SweepEdge Opposite"] - 156["SweepEdge Adjacent"] - 157["SweepEdge Opposite"] - 158["SweepEdge Adjacent"] - 159["SweepEdge Opposite"] - 160["SweepEdge Adjacent"] - 161["SweepEdge Opposite"] - 162["SweepEdge Adjacent"] - 163["SweepEdge Opposite"] - 164["SweepEdge Adjacent"] - 165["SweepEdge Opposite"] - 166["SweepEdge Adjacent"] - 167["SweepEdge Opposite"] - 168["SweepEdge Adjacent"] - 169["SweepEdge Opposite"] - 170["SweepEdge Adjacent"] - 171["SweepEdge Opposite"] - 172["SweepEdge Adjacent"] - 173["SweepEdge Opposite"] - 174["SweepEdge Adjacent"] - 175["Plane
[823, 864, 0]"] - 199["Sweep Extrusion
[1460, 1498, 8]"] - 200[Wall] - 201[Wall] - 202[Wall] - 203[Wall] - 204[Wall] - 205[Wall] - 206[Wall] - 207[Wall] - 208[Wall] - 209[Wall] - 210[Wall] - 211[Wall] - 212[Wall] - 213[Wall] - 214[Wall] - 215[Wall] - 216[Wall] - 217[Wall] - 218[Wall] - 219[Wall] - 220["Cap Start"] - 221["Cap End"] - 222["SweepEdge Opposite"] - 223["SweepEdge Adjacent"] - 224["SweepEdge Opposite"] - 225["SweepEdge Adjacent"] - 226["SweepEdge Opposite"] - 227["SweepEdge Adjacent"] - 228["SweepEdge Opposite"] - 229["SweepEdge Adjacent"] - 230["SweepEdge Opposite"] - 231["SweepEdge Adjacent"] - 232["SweepEdge Opposite"] - 233["SweepEdge Adjacent"] - 234["SweepEdge Opposite"] - 235["SweepEdge Adjacent"] - 236["SweepEdge Opposite"] - 237["SweepEdge Adjacent"] - 238["SweepEdge Opposite"] - 239["SweepEdge Adjacent"] - 240["SweepEdge Opposite"] - 241["SweepEdge Adjacent"] - 242["SweepEdge Opposite"] - 243["SweepEdge Adjacent"] - 244["SweepEdge Opposite"] - 245["SweepEdge Adjacent"] - 246["SweepEdge Opposite"] - 247["SweepEdge Adjacent"] - 248["SweepEdge Opposite"] - 249["SweepEdge Adjacent"] - 250["SweepEdge Opposite"] - 251["SweepEdge Adjacent"] - 252["SweepEdge Opposite"] - 253["SweepEdge Adjacent"] - 254["SweepEdge Opposite"] - 255["SweepEdge Adjacent"] - 256["SweepEdge Opposite"] - 257["SweepEdge Adjacent"] - 258["SweepEdge Opposite"] - 259["SweepEdge Adjacent"] - 260["SweepEdge Opposite"] - 261["SweepEdge Adjacent"] - 285["Sweep Extrusion
[1536, 1575, 8]"] + 1["Plane
[823, 864, 0]"] + 2["Plane
[874, 916, 0]"] + 3["Plane
[975, 1017, 0]"] + 4["Plane
[1068, 1135, 0]"] + 5["Plane
[1205, 1272, 0]"] + 6["Plane
[333, 353, 8]"] + 7["Plane
[333, 353, 8]"] + 8["Plane
[3780, 3815, 8]"] + 9["Plane
[3780, 3815, 8]"] + 10["Plane
[3846, 3875, 8]"] + 11["Plane
[3846, 3875, 8]"] + 12["StartSketchOnPlane
[3444, 3464, 8]"] + 13["StartSketchOnPlane
[2168, 2188, 8]"] + 14["StartSketchOnPlane
[1734, 1754, 8]"] + 15["StartSketchOnPlane
[3233, 3253, 8]"] + 16["StartSketchOnPlane
[333, 353, 8]"] + 17["StartSketchOnPlane
[333, 353, 8]"] + 18["StartSketchOnPlane
[333, 353, 8]"] + 19["StartSketchOnPlane
[1734, 1754, 8]"] + 20["StartSketchOnPlane
[3233, 3253, 8]"] + 21["StartSketchOnPlane
[2677, 2697, 8]"] + 22["StartSketchOnPlane
[3444, 3464, 8]"] + 23["StartSketchOnPlane
[333, 353, 8]"] + 224["Sweep Extrusion
[1460, 1498, 8]"] + 225["Sweep Extrusion
[1460, 1498, 8]"] + 226["Sweep Extrusion
[1460, 1498, 8]"] + 227["Sweep Extrusion
[1536, 1575, 8]"] + 228["Sweep Extrusion
[1536, 1575, 8]"] + 229["Sweep Extrusion
[1536, 1575, 8]"] + 230["Sweep Extrusion
[2022, 2046, 8]"] + 231["Sweep Extrusion
[2088, 2112, 8]"] + 232["Sweep Extrusion
[2596, 2620, 8]"] + 233["Sweep Extrusion
[2596, 2620, 8]"] + 234["Sweep Extrusion
[2596, 2620, 8]"] + 235["Sweep Extrusion
[3156, 3180, 8]"] + 236["Sweep Extrusion
[3156, 3180, 8]"] + 237["Sweep Sweep
[3888, 3915, 8]"] + 238["Sweep Sweep
[3888, 3915, 8]"] + 239[Wall] + 240[Wall] + 241[Wall] + 242[Wall] + 243[Wall] + 244[Wall] + 245[Wall] + 246[Wall] + 247[Wall] + 248[Wall] + 249[Wall] + 250[Wall] + 251[Wall] + 252[Wall] + 253[Wall] + 254[Wall] + 255[Wall] + 256[Wall] + 257[Wall] + 258[Wall] + 259[Wall] + 260[Wall] + 261[Wall] + 262[Wall] + 263[Wall] + 264[Wall] + 265[Wall] + 266[Wall] + 267[Wall] + 268[Wall] + 269[Wall] + 270[Wall] + 271[Wall] + 272[Wall] + 273[Wall] + 274[Wall] + 275[Wall] + 276[Wall] + 277[Wall] + 278[Wall] + 279[Wall] + 280[Wall] + 281[Wall] + 282[Wall] + 283[Wall] + 284[Wall] + 285[Wall] 286[Wall] 287[Wall] 288[Wall] @@ -445,50 +337,73 @@ flowchart LR 303[Wall] 304[Wall] 305[Wall] - 306["Cap Start"] - 307["Cap End"] - 308["SweepEdge Opposite"] - 309["SweepEdge Adjacent"] - 310["SweepEdge Opposite"] - 311["SweepEdge Adjacent"] - 312["SweepEdge Opposite"] - 313["SweepEdge Adjacent"] - 314["SweepEdge Opposite"] - 315["SweepEdge Adjacent"] - 316["SweepEdge Opposite"] - 317["SweepEdge Adjacent"] - 318["SweepEdge Opposite"] - 319["SweepEdge Adjacent"] - 320["SweepEdge Opposite"] - 321["SweepEdge Adjacent"] - 322["SweepEdge Opposite"] - 323["SweepEdge Adjacent"] - 324["SweepEdge Opposite"] - 325["SweepEdge Adjacent"] - 326["SweepEdge Opposite"] - 327["SweepEdge Adjacent"] - 328["SweepEdge Opposite"] - 329["SweepEdge Adjacent"] - 330["SweepEdge Opposite"] - 331["SweepEdge Adjacent"] - 332["SweepEdge Opposite"] - 333["SweepEdge Adjacent"] - 334["SweepEdge Opposite"] - 335["SweepEdge Adjacent"] - 336["SweepEdge Opposite"] - 337["SweepEdge Adjacent"] - 338["SweepEdge Opposite"] - 339["SweepEdge Adjacent"] - 340["SweepEdge Opposite"] - 341["SweepEdge Adjacent"] - 342["SweepEdge Opposite"] - 343["SweepEdge Adjacent"] - 344["SweepEdge Opposite"] - 345["SweepEdge Adjacent"] - 346["SweepEdge Opposite"] - 347["SweepEdge Adjacent"] - 348["Plane
[874, 916, 0]"] - 372["Sweep Extrusion
[1460, 1498, 8]"] + 306[Wall] + 307[Wall] + 308[Wall] + 309[Wall] + 310[Wall] + 311[Wall] + 312[Wall] + 313[Wall] + 314[Wall] + 315[Wall] + 316[Wall] + 317[Wall] + 318[Wall] + 319[Wall] + 320[Wall] + 321[Wall] + 322[Wall] + 323[Wall] + 324[Wall] + 325[Wall] + 326[Wall] + 327[Wall] + 328[Wall] + 329[Wall] + 330[Wall] + 331[Wall] + 332[Wall] + 333[Wall] + 334[Wall] + 335[Wall] + 336[Wall] + 337[Wall] + 338[Wall] + 339[Wall] + 340[Wall] + 341[Wall] + 342[Wall] + 343[Wall] + 344[Wall] + 345[Wall] + 346[Wall] + 347[Wall] + 348[Wall] + 349[Wall] + 350[Wall] + 351[Wall] + 352[Wall] + 353[Wall] + 354[Wall] + 355[Wall] + 356[Wall] + 357[Wall] + 358[Wall] + 359[Wall] + 360[Wall] + 361[Wall] + 362[Wall] + 363[Wall] + 364[Wall] + 365[Wall] + 366[Wall] + 367[Wall] + 368[Wall] + 369[Wall] + 370[Wall] + 371[Wall] + 372[Wall] 373[Wall] 374[Wall] 375[Wall] @@ -509,2249 +424,2334 @@ flowchart LR 390[Wall] 391[Wall] 392[Wall] - 393["Cap Start"] - 394["Cap End"] - 395["SweepEdge Opposite"] - 396["SweepEdge Adjacent"] - 397["SweepEdge Opposite"] - 398["SweepEdge Adjacent"] - 399["SweepEdge Opposite"] - 400["SweepEdge Adjacent"] - 401["SweepEdge Opposite"] - 402["SweepEdge Adjacent"] - 403["SweepEdge Opposite"] - 404["SweepEdge Adjacent"] - 405["SweepEdge Opposite"] - 406["SweepEdge Adjacent"] - 407["SweepEdge Opposite"] - 408["SweepEdge Adjacent"] - 409["SweepEdge Opposite"] - 410["SweepEdge Adjacent"] - 411["SweepEdge Opposite"] - 412["SweepEdge Adjacent"] - 413["SweepEdge Opposite"] - 414["SweepEdge Adjacent"] - 415["SweepEdge Opposite"] - 416["SweepEdge Adjacent"] - 417["SweepEdge Opposite"] - 418["SweepEdge Adjacent"] - 419["SweepEdge Opposite"] - 420["SweepEdge Adjacent"] + 393[Wall] + 394[Wall] + 395[Wall] + 396[Wall] + 397["Cap Start"] + 398["Cap Start"] + 399["Cap Start"] + 400["Cap Start"] + 401["Cap Start"] + 402["Cap Start"] + 403["Cap Start"] + 404["Cap Start"] + 405["Cap Start"] + 406["Cap Start"] + 407["Cap Start"] + 408["Cap Start"] + 409["Cap End"] + 410["Cap End"] + 411["Cap End"] + 412["Cap End"] + 413["Cap End"] + 414["Cap End"] + 415["Cap End"] + 416["Cap End"] + 417["Cap End"] + 418["Cap End"] + 419["Cap End"] + 420["Cap End"] 421["SweepEdge Opposite"] - 422["SweepEdge Adjacent"] + 422["SweepEdge Opposite"] 423["SweepEdge Opposite"] - 424["SweepEdge Adjacent"] + 424["SweepEdge Opposite"] 425["SweepEdge Opposite"] - 426["SweepEdge Adjacent"] + 426["SweepEdge Opposite"] 427["SweepEdge Opposite"] - 428["SweepEdge Adjacent"] + 428["SweepEdge Opposite"] 429["SweepEdge Opposite"] - 430["SweepEdge Adjacent"] + 430["SweepEdge Opposite"] 431["SweepEdge Opposite"] - 432["SweepEdge Adjacent"] + 432["SweepEdge Opposite"] 433["SweepEdge Opposite"] - 434["SweepEdge Adjacent"] - 458["Sweep Extrusion
[1536, 1575, 8]"] - 459[Wall] - 460[Wall] - 461[Wall] - 462[Wall] - 463[Wall] - 464[Wall] - 465[Wall] - 466[Wall] - 467[Wall] - 468[Wall] - 469[Wall] - 470[Wall] - 471[Wall] - 472[Wall] - 473[Wall] - 474[Wall] - 475[Wall] - 476[Wall] - 477[Wall] - 478[Wall] - 479["Cap Start"] - 480["Cap End"] + 434["SweepEdge Opposite"] + 435["SweepEdge Opposite"] + 436["SweepEdge Opposite"] + 437["SweepEdge Opposite"] + 438["SweepEdge Opposite"] + 439["SweepEdge Opposite"] + 440["SweepEdge Opposite"] + 441["SweepEdge Opposite"] + 442["SweepEdge Opposite"] + 443["SweepEdge Opposite"] + 444["SweepEdge Opposite"] + 445["SweepEdge Opposite"] + 446["SweepEdge Opposite"] + 447["SweepEdge Opposite"] + 448["SweepEdge Opposite"] + 449["SweepEdge Opposite"] + 450["SweepEdge Opposite"] + 451["SweepEdge Opposite"] + 452["SweepEdge Opposite"] + 453["SweepEdge Opposite"] + 454["SweepEdge Opposite"] + 455["SweepEdge Opposite"] + 456["SweepEdge Opposite"] + 457["SweepEdge Opposite"] + 458["SweepEdge Opposite"] + 459["SweepEdge Opposite"] + 460["SweepEdge Opposite"] + 461["SweepEdge Opposite"] + 462["SweepEdge Opposite"] + 463["SweepEdge Opposite"] + 464["SweepEdge Opposite"] + 465["SweepEdge Opposite"] + 466["SweepEdge Opposite"] + 467["SweepEdge Opposite"] + 468["SweepEdge Opposite"] + 469["SweepEdge Opposite"] + 470["SweepEdge Opposite"] + 471["SweepEdge Opposite"] + 472["SweepEdge Opposite"] + 473["SweepEdge Opposite"] + 474["SweepEdge Opposite"] + 475["SweepEdge Opposite"] + 476["SweepEdge Opposite"] + 477["SweepEdge Opposite"] + 478["SweepEdge Opposite"] + 479["SweepEdge Opposite"] + 480["SweepEdge Opposite"] 481["SweepEdge Opposite"] - 482["SweepEdge Adjacent"] + 482["SweepEdge Opposite"] 483["SweepEdge Opposite"] - 484["SweepEdge Adjacent"] + 484["SweepEdge Opposite"] 485["SweepEdge Opposite"] - 486["SweepEdge Adjacent"] + 486["SweepEdge Opposite"] 487["SweepEdge Opposite"] - 488["SweepEdge Adjacent"] + 488["SweepEdge Opposite"] 489["SweepEdge Opposite"] - 490["SweepEdge Adjacent"] + 490["SweepEdge Opposite"] 491["SweepEdge Opposite"] - 492["SweepEdge Adjacent"] + 492["SweepEdge Opposite"] 493["SweepEdge Opposite"] - 494["SweepEdge Adjacent"] + 494["SweepEdge Opposite"] 495["SweepEdge Opposite"] - 496["SweepEdge Adjacent"] + 496["SweepEdge Opposite"] 497["SweepEdge Opposite"] - 498["SweepEdge Adjacent"] + 498["SweepEdge Opposite"] 499["SweepEdge Opposite"] - 500["SweepEdge Adjacent"] + 500["SweepEdge Opposite"] 501["SweepEdge Opposite"] - 502["SweepEdge Adjacent"] + 502["SweepEdge Opposite"] 503["SweepEdge Opposite"] - 504["SweepEdge Adjacent"] + 504["SweepEdge Opposite"] 505["SweepEdge Opposite"] - 506["SweepEdge Adjacent"] + 506["SweepEdge Opposite"] 507["SweepEdge Opposite"] - 508["SweepEdge Adjacent"] + 508["SweepEdge Opposite"] 509["SweepEdge Opposite"] - 510["SweepEdge Adjacent"] + 510["SweepEdge Opposite"] 511["SweepEdge Opposite"] - 512["SweepEdge Adjacent"] + 512["SweepEdge Opposite"] 513["SweepEdge Opposite"] - 514["SweepEdge Adjacent"] + 514["SweepEdge Opposite"] 515["SweepEdge Opposite"] - 516["SweepEdge Adjacent"] + 516["SweepEdge Opposite"] 517["SweepEdge Opposite"] - 518["SweepEdge Adjacent"] + 518["SweepEdge Opposite"] 519["SweepEdge Opposite"] - 520["SweepEdge Adjacent"] - 521["Plane
[975, 1017, 0]"] - 532["Sweep Extrusion
[2022, 2046, 8]"] - 533[Wall] - 534[Wall] - 535[Wall] - 536[Wall] - 537[Wall] - 538[Wall] - 539["Cap Start"] - 540["Cap End"] + 520["SweepEdge Opposite"] + 521["SweepEdge Opposite"] + 522["SweepEdge Opposite"] + 523["SweepEdge Opposite"] + 524["SweepEdge Opposite"] + 525["SweepEdge Opposite"] + 526["SweepEdge Opposite"] + 527["SweepEdge Opposite"] + 528["SweepEdge Opposite"] + 529["SweepEdge Opposite"] + 530["SweepEdge Opposite"] + 531["SweepEdge Opposite"] + 532["SweepEdge Opposite"] + 533["SweepEdge Opposite"] + 534["SweepEdge Opposite"] + 535["SweepEdge Opposite"] + 536["SweepEdge Opposite"] + 537["SweepEdge Opposite"] + 538["SweepEdge Opposite"] + 539["SweepEdge Opposite"] + 540["SweepEdge Opposite"] 541["SweepEdge Opposite"] - 542["SweepEdge Adjacent"] + 542["SweepEdge Opposite"] 543["SweepEdge Opposite"] - 544["SweepEdge Adjacent"] + 544["SweepEdge Opposite"] 545["SweepEdge Opposite"] - 546["SweepEdge Adjacent"] + 546["SweepEdge Opposite"] 547["SweepEdge Opposite"] - 548["SweepEdge Adjacent"] + 548["SweepEdge Opposite"] 549["SweepEdge Opposite"] - 550["SweepEdge Adjacent"] + 550["SweepEdge Opposite"] 551["SweepEdge Opposite"] - 552["SweepEdge Adjacent"] - 563["Sweep Extrusion
[2088, 2112, 8]"] - 564[Wall] - 565[Wall] - 566[Wall] - 567[Wall] - 568[Wall] - 569[Wall] - 570["Cap Start"] - 571["Cap End"] + 552["SweepEdge Opposite"] + 553["SweepEdge Opposite"] + 554["SweepEdge Opposite"] + 555["SweepEdge Opposite"] + 556["SweepEdge Opposite"] + 557["SweepEdge Opposite"] + 558["SweepEdge Opposite"] + 559["SweepEdge Opposite"] + 560["SweepEdge Opposite"] + 561["SweepEdge Opposite"] + 562["SweepEdge Opposite"] + 563["SweepEdge Opposite"] + 564["SweepEdge Opposite"] + 565["SweepEdge Opposite"] + 566["SweepEdge Opposite"] + 567["SweepEdge Opposite"] + 568["SweepEdge Opposite"] + 569["SweepEdge Opposite"] + 570["SweepEdge Opposite"] + 571["SweepEdge Opposite"] 572["SweepEdge Opposite"] - 573["SweepEdge Adjacent"] + 573["SweepEdge Opposite"] 574["SweepEdge Opposite"] - 575["SweepEdge Adjacent"] + 575["SweepEdge Opposite"] 576["SweepEdge Opposite"] - 577["SweepEdge Adjacent"] + 577["SweepEdge Opposite"] 578["SweepEdge Opposite"] 579["SweepEdge Adjacent"] - 580["SweepEdge Opposite"] + 580["SweepEdge Adjacent"] 581["SweepEdge Adjacent"] - 582["SweepEdge Opposite"] + 582["SweepEdge Adjacent"] 583["SweepEdge Adjacent"] - 584["Plane
[1068, 1135, 0]"] - 594["Sweep Extrusion
[2596, 2620, 8]"] - 595[Wall] - 596[Wall] - 597[Wall] - 598[Wall] - 599[Wall] - 600[Wall] - 601["Cap Start"] - 602["Cap End"] - 603["SweepEdge Opposite"] + 584["SweepEdge Adjacent"] + 585["SweepEdge Adjacent"] + 586["SweepEdge Adjacent"] + 587["SweepEdge Adjacent"] + 588["SweepEdge Adjacent"] + 589["SweepEdge Adjacent"] + 590["SweepEdge Adjacent"] + 591["SweepEdge Adjacent"] + 592["SweepEdge Adjacent"] + 593["SweepEdge Adjacent"] + 594["SweepEdge Adjacent"] + 595["SweepEdge Adjacent"] + 596["SweepEdge Adjacent"] + 597["SweepEdge Adjacent"] + 598["SweepEdge Adjacent"] + 599["SweepEdge Adjacent"] + 600["SweepEdge Adjacent"] + 601["SweepEdge Adjacent"] + 602["SweepEdge Adjacent"] + 603["SweepEdge Adjacent"] 604["SweepEdge Adjacent"] - 605["SweepEdge Opposite"] + 605["SweepEdge Adjacent"] 606["SweepEdge Adjacent"] - 607["SweepEdge Opposite"] + 607["SweepEdge Adjacent"] 608["SweepEdge Adjacent"] - 609["SweepEdge Opposite"] + 609["SweepEdge Adjacent"] 610["SweepEdge Adjacent"] - 611["SweepEdge Opposite"] + 611["SweepEdge Adjacent"] 612["SweepEdge Adjacent"] - 613["SweepEdge Opposite"] + 613["SweepEdge Adjacent"] 614["SweepEdge Adjacent"] - 615["Sweep Extrusion
[2596, 2620, 8]"] - 616["Sweep Extrusion
[2596, 2620, 8]"] - 617["Plane
[1205, 1272, 0]"] - 627["Sweep Extrusion
[3156, 3180, 8]"] - 628[Wall] - 629[Wall] - 630[Wall] - 631[Wall] - 632[Wall] - 633[Wall] - 634["Cap Start"] - 635["Cap End"] - 636["SweepEdge Opposite"] + 615["SweepEdge Adjacent"] + 616["SweepEdge Adjacent"] + 617["SweepEdge Adjacent"] + 618["SweepEdge Adjacent"] + 619["SweepEdge Adjacent"] + 620["SweepEdge Adjacent"] + 621["SweepEdge Adjacent"] + 622["SweepEdge Adjacent"] + 623["SweepEdge Adjacent"] + 624["SweepEdge Adjacent"] + 625["SweepEdge Adjacent"] + 626["SweepEdge Adjacent"] + 627["SweepEdge Adjacent"] + 628["SweepEdge Adjacent"] + 629["SweepEdge Adjacent"] + 630["SweepEdge Adjacent"] + 631["SweepEdge Adjacent"] + 632["SweepEdge Adjacent"] + 633["SweepEdge Adjacent"] + 634["SweepEdge Adjacent"] + 635["SweepEdge Adjacent"] + 636["SweepEdge Adjacent"] 637["SweepEdge Adjacent"] - 638["SweepEdge Opposite"] + 638["SweepEdge Adjacent"] 639["SweepEdge Adjacent"] - 640["SweepEdge Opposite"] + 640["SweepEdge Adjacent"] 641["SweepEdge Adjacent"] - 642["SweepEdge Opposite"] + 642["SweepEdge Adjacent"] 643["SweepEdge Adjacent"] - 644["SweepEdge Opposite"] + 644["SweepEdge Adjacent"] 645["SweepEdge Adjacent"] - 646["SweepEdge Opposite"] + 646["SweepEdge Adjacent"] 647["SweepEdge Adjacent"] - 648["Sweep Extrusion
[3156, 3180, 8]"] - 649["Plane
[3780, 3815, 8]"] - 653["Plane
[3846, 3875, 8]"] - 663["Sweep Sweep
[3888, 3915, 8]"] - 664[Wall] - 665[Wall] - 666[Wall] - 667[Wall] - 668[Wall] - 669[Wall] - 670[Wall] - 671["Cap Start"] - 672["Cap End"] - 673["SweepEdge Opposite"] + 648["SweepEdge Adjacent"] + 649["SweepEdge Adjacent"] + 650["SweepEdge Adjacent"] + 651["SweepEdge Adjacent"] + 652["SweepEdge Adjacent"] + 653["SweepEdge Adjacent"] + 654["SweepEdge Adjacent"] + 655["SweepEdge Adjacent"] + 656["SweepEdge Adjacent"] + 657["SweepEdge Adjacent"] + 658["SweepEdge Adjacent"] + 659["SweepEdge Adjacent"] + 660["SweepEdge Adjacent"] + 661["SweepEdge Adjacent"] + 662["SweepEdge Adjacent"] + 663["SweepEdge Adjacent"] + 664["SweepEdge Adjacent"] + 665["SweepEdge Adjacent"] + 666["SweepEdge Adjacent"] + 667["SweepEdge Adjacent"] + 668["SweepEdge Adjacent"] + 669["SweepEdge Adjacent"] + 670["SweepEdge Adjacent"] + 671["SweepEdge Adjacent"] + 672["SweepEdge Adjacent"] + 673["SweepEdge Adjacent"] 674["SweepEdge Adjacent"] - 675["SweepEdge Opposite"] + 675["SweepEdge Adjacent"] 676["SweepEdge Adjacent"] - 677["SweepEdge Opposite"] + 677["SweepEdge Adjacent"] 678["SweepEdge Adjacent"] - 679["SweepEdge Opposite"] + 679["SweepEdge Adjacent"] 680["SweepEdge Adjacent"] - 681["SweepEdge Opposite"] + 681["SweepEdge Adjacent"] 682["SweepEdge Adjacent"] - 683["SweepEdge Opposite"] + 683["SweepEdge Adjacent"] 684["SweepEdge Adjacent"] - 685["SweepEdge Opposite"] + 685["SweepEdge Adjacent"] 686["SweepEdge Adjacent"] - 687["Plane
[3780, 3815, 8]"] - 691["Plane
[3846, 3875, 8]"] - 701["Sweep Sweep
[3888, 3915, 8]"] - 702[Wall] - 703[Wall] - 704[Wall] - 705[Wall] - 706[Wall] - 707[Wall] - 708[Wall] - 709["Cap Start"] - 710["Cap End"] - 711["SweepEdge Opposite"] + 687["SweepEdge Adjacent"] + 688["SweepEdge Adjacent"] + 689["SweepEdge Adjacent"] + 690["SweepEdge Adjacent"] + 691["SweepEdge Adjacent"] + 692["SweepEdge Adjacent"] + 693["SweepEdge Adjacent"] + 694["SweepEdge Adjacent"] + 695["SweepEdge Adjacent"] + 696["SweepEdge Adjacent"] + 697["SweepEdge Adjacent"] + 698["SweepEdge Adjacent"] + 699["SweepEdge Adjacent"] + 700["SweepEdge Adjacent"] + 701["SweepEdge Adjacent"] + 702["SweepEdge Adjacent"] + 703["SweepEdge Adjacent"] + 704["SweepEdge Adjacent"] + 705["SweepEdge Adjacent"] + 706["SweepEdge Adjacent"] + 707["SweepEdge Adjacent"] + 708["SweepEdge Adjacent"] + 709["SweepEdge Adjacent"] + 710["SweepEdge Adjacent"] + 711["SweepEdge Adjacent"] 712["SweepEdge Adjacent"] - 713["SweepEdge Opposite"] + 713["SweepEdge Adjacent"] 714["SweepEdge Adjacent"] - 715["SweepEdge Opposite"] + 715["SweepEdge Adjacent"] 716["SweepEdge Adjacent"] - 717["SweepEdge Opposite"] + 717["SweepEdge Adjacent"] 718["SweepEdge Adjacent"] - 719["SweepEdge Opposite"] + 719["SweepEdge Adjacent"] 720["SweepEdge Adjacent"] - 721["SweepEdge Opposite"] + 721["SweepEdge Adjacent"] 722["SweepEdge Adjacent"] - 723["SweepEdge Opposite"] + 723["SweepEdge Adjacent"] 724["SweepEdge Adjacent"] - 725["StartSketchOnPlane
[333, 353, 8]"] - 726["StartSketchOnPlane
[333, 353, 8]"] - 727["StartSketchOnPlane
[333, 353, 8]"] - 728["StartSketchOnPlane
[333, 353, 8]"] - 729["StartSketchOnPlane
[1734, 1754, 8]"] - 730["StartSketchOnPlane
[1734, 1754, 8]"] - 731["StartSketchOnPlane
[2168, 2188, 8]"] - 732["StartSketchOnPlane
[2677, 2697, 8]"] - 733["StartSketchOnPlane
[3233, 3253, 8]"] - 734["StartSketchOnPlane
[3444, 3464, 8]"] - 735["StartSketchOnPlane
[3233, 3253, 8]"] - 736["StartSketchOnPlane
[3444, 3464, 8]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 --- 8 - 2 --- 9 - 2 --- 10 - 2 --- 11 - 2 --- 12 - 2 --- 13 - 2 --- 14 - 2 --- 15 - 2 --- 16 - 2 --- 17 - 2 --- 18 - 2 --- 19 - 2 --- 20 - 2 --- 21 - 2 --- 22 - 2 --- 23 - 2 ---- 25 - 2 --- 24 - 3 --- 26 - 3 --- 48 - 3 --- 49 - 3 x--> 46 - 4 --- 27 - 4 --- 50 - 4 --- 51 - 4 x--> 46 - 5 --- 28 - 5 --- 52 - 5 --- 53 - 5 x--> 46 - 6 --- 29 - 6 --- 54 - 6 --- 55 - 6 x--> 46 - 7 --- 30 - 7 --- 56 - 7 --- 57 - 7 x--> 46 - 8 --- 31 - 8 --- 58 - 8 --- 59 - 8 x--> 46 - 9 --- 32 - 9 --- 60 - 9 --- 61 - 9 x--> 46 - 10 --- 33 - 10 --- 62 - 10 --- 63 - 10 x--> 46 - 11 --- 34 - 11 --- 64 - 11 --- 65 - 11 x--> 46 - 12 --- 35 - 12 --- 66 - 12 --- 67 - 12 x--> 46 - 13 --- 36 - 13 --- 68 - 13 --- 69 - 13 x--> 46 - 14 --- 37 - 14 --- 70 - 14 --- 71 - 14 x--> 46 - 15 --- 38 - 15 --- 72 - 15 --- 73 - 15 x--> 46 - 16 --- 39 - 16 --- 74 - 16 --- 75 - 16 x--> 46 - 17 --- 40 - 17 --- 76 - 17 --- 77 - 17 x--> 46 - 18 --- 41 - 18 --- 78 - 18 --- 79 - 18 x--> 46 - 19 --- 42 - 19 --- 80 - 19 --- 81 - 19 x--> 46 - 20 --- 43 - 20 --- 82 - 20 --- 83 - 20 x--> 46 - 21 --- 44 - 21 --- 84 - 21 --- 85 - 21 x--> 46 - 22 --- 45 - 22 --- 86 - 22 --- 87 - 22 x--> 46 - 25 --- 26 - 25 --- 27 - 25 --- 28 - 25 --- 29 - 25 --- 30 - 25 --- 31 - 25 --- 32 - 25 --- 33 - 25 --- 34 - 25 --- 35 - 25 --- 36 - 25 --- 37 - 25 --- 38 - 25 --- 39 - 25 --- 40 - 25 --- 41 - 25 --- 42 - 25 --- 43 + 725["SweepEdge Adjacent"] + 726["SweepEdge Adjacent"] + 727["SweepEdge Adjacent"] + 728["SweepEdge Adjacent"] + 729["SweepEdge Adjacent"] + 730["SweepEdge Adjacent"] + 731["SweepEdge Adjacent"] + 732["SweepEdge Adjacent"] + 733["SweepEdge Adjacent"] + 734["SweepEdge Adjacent"] + 735["SweepEdge Adjacent"] + 736["SweepEdge Adjacent"] + 1 <--x 16 + 1 <--x 23 + 1 --- 24 + 1 --- 28 + 2 <--x 17 + 2 <--x 18 + 2 --- 26 + 2 --- 29 + 3 <--x 14 + 3 <--x 19 + 3 --- 30 + 3 --- 31 + 3 --- 32 + 3 --- 33 + 4 <--x 13 + 4 --- 34 + 5 <--x 21 + 5 --- 35 + 6 --- 27 + 7 --- 25 + 8 <--x 15 + 8 --- 36 + 9 <--x 20 + 9 --- 37 + 10 <--x 22 + 10 --- 39 + 11 <--x 12 + 11 --- 38 + 24 --- 41 + 24 --- 47 + 24 --- 52 + 24 --- 58 + 24 --- 68 + 24 --- 72 + 24 --- 79 + 24 --- 84 + 24 --- 89 + 24 --- 94 + 24 --- 103 + 24 --- 109 + 24 --- 113 + 24 --- 122 + 24 --- 129 + 24 --- 132 + 24 --- 136 + 24 --- 144 + 24 --- 152 + 24 --- 155 + 24 --- 162 + 24 --- 212 + 24 ---- 224 25 --- 44 - 25 --- 45 - 25 --- 46 - 25 --- 47 - 25 --- 48 25 --- 49 - 25 --- 50 - 25 --- 51 - 25 --- 52 - 25 --- 53 - 25 --- 54 25 --- 55 - 25 --- 56 - 25 --- 57 - 25 --- 58 - 25 --- 59 - 25 --- 60 - 25 --- 61 - 25 --- 62 25 --- 63 - 25 --- 64 - 25 --- 65 25 --- 66 - 25 --- 67 - 25 --- 68 - 25 --- 69 - 25 --- 70 25 --- 71 - 25 --- 72 - 25 --- 73 - 25 --- 74 - 25 --- 75 - 25 --- 76 - 25 --- 77 - 25 --- 78 - 25 --- 79 - 25 --- 80 25 --- 81 - 25 --- 82 - 25 --- 83 - 25 --- 84 - 25 --- 85 - 25 --- 86 25 --- 87 - 48 <--x 26 - 48 <--x 47 - 49 <--x 26 - 49 <--x 27 - 50 <--x 27 - 50 <--x 47 - 51 <--x 27 - 51 <--x 28 - 52 <--x 28 - 52 <--x 47 - 53 <--x 28 - 53 <--x 29 - 54 <--x 29 - 54 <--x 47 - 55 <--x 29 - 55 <--x 30 - 56 <--x 30 - 56 <--x 47 - 57 <--x 30 - 57 <--x 31 - 58 <--x 31 - 58 <--x 47 - 59 <--x 31 - 59 <--x 32 - 60 <--x 32 - 60 <--x 47 - 61 <--x 32 - 61 <--x 33 - 62 <--x 33 - 62 <--x 47 - 63 <--x 33 - 63 <--x 34 - 64 <--x 34 - 64 <--x 47 - 65 <--x 34 - 65 <--x 35 - 66 <--x 35 - 66 <--x 47 - 67 <--x 35 - 67 <--x 36 - 68 <--x 36 - 68 <--x 47 - 69 <--x 36 - 69 <--x 37 - 70 <--x 37 - 70 <--x 47 - 71 <--x 37 - 71 <--x 38 - 72 <--x 38 - 72 <--x 47 - 73 <--x 38 - 73 <--x 39 - 74 <--x 39 - 74 <--x 47 - 75 <--x 39 - 75 <--x 40 - 76 <--x 40 - 76 <--x 47 - 77 <--x 40 - 77 <--x 41 - 78 <--x 41 - 78 <--x 47 - 79 <--x 41 - 79 <--x 42 - 80 <--x 42 - 80 <--x 47 - 81 <--x 42 - 81 <--x 43 - 82 <--x 43 - 82 <--x 47 - 83 <--x 43 - 83 <--x 44 - 84 <--x 44 - 84 <--x 47 - 85 <--x 44 - 85 <--x 45 - 86 <--x 45 - 86 <--x 47 - 87 <--x 26 - 87 <--x 45 - 88 --- 89 - 89 --- 90 - 89 --- 91 - 89 --- 92 - 89 --- 93 - 89 --- 94 - 89 --- 95 - 89 --- 96 - 89 --- 97 - 89 --- 98 - 89 --- 99 - 89 --- 100 - 89 --- 101 - 89 --- 102 - 89 --- 103 - 89 --- 104 - 89 --- 105 - 89 --- 106 - 89 --- 107 - 89 --- 108 - 89 --- 109 - 89 --- 110 - 89 ---- 112 - 89 --- 111 - 90 --- 113 - 90 --- 135 - 90 --- 136 - 90 x--> 134 - 91 --- 114 - 91 --- 137 - 91 --- 138 - 91 x--> 134 - 92 --- 115 - 92 --- 139 - 92 --- 140 - 92 x--> 134 - 93 --- 116 - 93 --- 141 - 93 --- 142 - 93 x--> 134 - 94 --- 117 - 94 --- 143 - 94 --- 144 - 94 x--> 134 - 95 --- 118 - 95 --- 145 - 95 --- 146 - 95 x--> 134 - 96 --- 119 - 96 --- 147 - 96 --- 148 - 96 x--> 134 - 97 --- 120 - 97 --- 149 - 97 --- 150 - 97 x--> 134 - 98 --- 121 - 98 --- 151 - 98 --- 152 - 98 x--> 134 - 99 --- 122 - 99 --- 153 - 99 --- 154 - 99 x--> 134 - 100 --- 123 - 100 --- 155 - 100 --- 156 - 100 x--> 134 - 101 --- 124 - 101 --- 157 - 101 --- 158 - 101 x--> 134 - 102 --- 125 - 102 --- 159 - 102 --- 160 - 102 x--> 134 - 103 --- 126 - 103 --- 161 - 103 --- 162 - 103 x--> 134 - 104 --- 127 - 104 --- 163 - 104 --- 164 - 104 x--> 134 - 105 --- 128 - 105 --- 165 - 105 --- 166 - 105 x--> 134 - 106 --- 129 - 106 --- 167 - 106 --- 168 - 106 x--> 134 - 107 --- 130 - 107 --- 169 - 107 --- 170 - 107 x--> 134 - 108 --- 131 - 108 --- 171 - 108 --- 172 - 108 x--> 134 - 109 --- 132 - 109 --- 173 - 109 --- 174 - 109 x--> 134 - 112 --- 113 - 112 --- 114 - 112 --- 115 - 112 --- 116 - 112 --- 117 - 112 --- 118 - 112 --- 119 - 112 --- 120 - 112 --- 121 - 112 --- 122 - 112 --- 123 - 112 --- 124 - 112 --- 125 - 112 --- 126 - 112 --- 127 - 112 --- 128 - 112 --- 129 - 112 --- 130 - 112 --- 131 - 112 --- 132 - 112 --- 133 - 112 --- 134 - 112 --- 135 - 112 --- 136 - 112 --- 137 - 112 --- 138 - 112 --- 139 - 112 --- 140 - 112 --- 141 - 112 --- 142 - 112 --- 143 - 112 --- 144 - 112 --- 145 - 112 --- 146 - 112 --- 147 - 112 --- 148 - 112 --- 149 - 112 --- 150 - 112 --- 151 - 112 --- 152 - 112 --- 153 - 112 --- 154 - 112 --- 155 - 112 --- 156 - 112 --- 157 - 112 --- 158 - 112 --- 159 - 112 --- 160 - 112 --- 161 - 112 --- 162 - 112 --- 163 - 112 --- 164 - 112 --- 165 - 112 --- 166 - 112 --- 167 - 112 --- 168 - 112 --- 169 - 112 --- 170 - 112 --- 171 - 112 --- 172 - 112 --- 173 - 112 --- 174 - 135 <--x 113 - 135 <--x 133 - 136 <--x 113 - 136 <--x 114 - 137 <--x 114 - 137 <--x 133 - 138 <--x 114 - 138 <--x 115 - 139 <--x 115 - 139 <--x 133 - 140 <--x 115 - 140 <--x 116 - 141 <--x 116 - 141 <--x 133 - 142 <--x 116 - 142 <--x 117 - 143 <--x 117 - 143 <--x 133 - 144 <--x 117 - 144 <--x 118 - 145 <--x 118 - 145 <--x 133 - 146 <--x 118 - 146 <--x 119 - 147 <--x 119 - 147 <--x 133 - 148 <--x 119 - 148 <--x 120 - 149 <--x 120 - 149 <--x 133 - 150 <--x 120 - 150 <--x 121 - 151 <--x 121 - 151 <--x 133 - 152 <--x 121 - 152 <--x 122 - 153 <--x 122 - 153 <--x 133 - 154 <--x 122 - 154 <--x 123 - 155 <--x 123 - 155 <--x 133 - 156 <--x 123 - 156 <--x 124 - 157 <--x 124 - 157 <--x 133 - 158 <--x 124 - 158 <--x 125 - 159 <--x 125 - 159 <--x 133 - 160 <--x 125 - 160 <--x 126 - 161 <--x 126 - 161 <--x 133 - 162 <--x 126 - 162 <--x 127 - 163 <--x 127 - 163 <--x 133 - 164 <--x 127 - 164 <--x 128 - 165 <--x 128 - 165 <--x 133 - 166 <--x 128 - 166 <--x 129 - 167 <--x 129 - 167 <--x 133 - 168 <--x 129 - 168 <--x 130 - 169 <--x 130 - 169 <--x 133 - 170 <--x 130 - 170 <--x 131 - 171 <--x 131 - 171 <--x 133 - 172 <--x 131 - 172 <--x 132 - 173 <--x 132 - 173 <--x 133 - 174 <--x 113 - 174 <--x 132 - 175 --- 176 - 175 --- 262 - 176 --- 177 - 176 --- 178 - 176 --- 179 - 176 --- 180 - 176 --- 181 - 176 --- 182 - 176 --- 183 - 176 --- 184 - 176 --- 185 - 176 --- 186 - 176 --- 187 - 176 --- 188 - 176 --- 189 - 176 --- 190 - 176 --- 191 - 176 --- 192 - 176 --- 193 - 176 --- 194 - 176 --- 195 - 176 --- 196 - 176 --- 197 - 176 ---- 199 - 176 --- 198 - 177 --- 200 - 177 --- 222 - 177 --- 223 - 177 x--> 220 - 178 --- 201 - 178 --- 224 - 178 --- 225 - 178 x--> 220 - 179 --- 202 - 179 --- 226 - 179 --- 227 - 179 x--> 220 - 180 --- 203 - 180 --- 228 - 180 --- 229 - 180 x--> 220 - 181 --- 204 - 181 --- 230 - 181 --- 231 - 181 x--> 220 - 182 --- 205 - 182 --- 232 - 182 --- 233 - 182 x--> 220 - 183 --- 206 - 183 --- 234 - 183 --- 235 - 183 x--> 220 - 184 --- 207 - 184 --- 236 - 184 --- 237 - 184 x--> 220 - 185 --- 208 - 185 --- 238 - 185 --- 239 - 185 x--> 220 - 186 --- 209 - 186 --- 240 - 186 --- 241 - 186 x--> 220 - 187 --- 210 - 187 --- 242 - 187 --- 243 - 187 x--> 220 - 188 --- 211 - 188 --- 244 - 188 --- 245 - 188 x--> 220 - 189 --- 212 - 189 --- 246 - 189 --- 247 - 189 x--> 220 - 190 --- 213 - 190 --- 248 - 190 --- 249 - 190 x--> 220 - 191 --- 214 - 191 --- 250 - 191 --- 251 - 191 x--> 220 - 192 --- 215 - 192 --- 252 - 192 --- 253 - 192 x--> 220 - 193 --- 216 - 193 --- 254 - 193 --- 255 - 193 x--> 220 - 194 --- 217 - 194 --- 256 - 194 --- 257 - 194 x--> 220 - 195 --- 218 - 195 --- 258 - 195 --- 259 - 195 x--> 220 - 196 --- 219 - 196 --- 260 - 196 --- 261 - 196 x--> 220 - 199 --- 200 - 199 --- 201 - 199 --- 202 - 199 --- 203 - 199 --- 204 - 199 --- 205 - 199 --- 206 - 199 --- 207 - 199 --- 208 - 199 --- 209 - 199 --- 210 - 199 --- 211 - 199 --- 212 - 199 --- 213 - 199 --- 214 - 199 --- 215 - 199 --- 216 - 199 --- 217 - 199 --- 218 - 199 --- 219 - 199 --- 220 - 199 --- 221 - 199 --- 222 - 199 --- 223 - 199 --- 224 - 199 --- 225 - 199 --- 226 - 199 --- 227 - 199 --- 228 - 199 --- 229 - 199 --- 230 - 199 --- 231 - 199 --- 232 - 199 --- 233 - 199 --- 234 - 199 --- 235 - 199 --- 236 - 199 --- 237 - 199 --- 238 - 199 --- 239 - 199 --- 240 - 199 --- 241 - 199 --- 242 - 199 --- 243 - 199 --- 244 - 199 --- 245 - 199 --- 246 - 199 --- 247 - 199 --- 248 - 199 --- 249 - 199 --- 250 - 199 --- 251 - 199 --- 252 - 199 --- 253 - 199 --- 254 - 199 --- 255 - 199 --- 256 - 199 --- 257 - 199 --- 258 - 199 --- 259 - 199 --- 260 - 199 --- 261 - 222 <--x 200 - 222 <--x 221 - 223 <--x 200 - 223 <--x 201 - 224 <--x 201 - 224 <--x 221 - 225 <--x 201 - 225 <--x 202 - 226 <--x 202 - 226 <--x 221 - 227 <--x 202 - 227 <--x 203 - 228 <--x 203 - 228 <--x 221 - 229 <--x 203 - 229 <--x 204 - 230 <--x 204 - 230 <--x 221 - 231 <--x 204 - 231 <--x 205 - 232 <--x 205 - 232 <--x 221 - 233 <--x 205 - 233 <--x 206 - 234 <--x 206 - 234 <--x 221 - 235 <--x 206 - 235 <--x 207 - 236 <--x 207 - 236 <--x 221 - 237 <--x 207 - 237 <--x 208 - 238 <--x 208 - 238 <--x 221 - 239 <--x 208 - 239 <--x 209 - 240 <--x 209 - 240 <--x 221 - 241 <--x 209 - 241 <--x 210 - 242 <--x 210 - 242 <--x 221 - 243 <--x 210 - 243 <--x 211 - 244 <--x 211 - 244 <--x 221 - 245 <--x 211 - 245 <--x 212 - 246 <--x 212 - 246 <--x 221 - 247 <--x 212 - 247 <--x 213 - 248 <--x 213 - 248 <--x 221 - 249 <--x 213 - 249 <--x 214 - 250 <--x 214 - 250 <--x 221 - 251 <--x 214 - 251 <--x 215 - 252 <--x 215 - 252 <--x 221 - 253 <--x 215 - 253 <--x 216 - 254 <--x 216 - 254 <--x 221 - 255 <--x 216 - 255 <--x 217 - 256 <--x 217 - 256 <--x 221 - 257 <--x 217 - 257 <--x 218 - 258 <--x 218 - 258 <--x 221 - 259 <--x 218 - 259 <--x 219 - 260 <--x 219 - 260 <--x 221 - 261 <--x 200 - 261 <--x 219 - 262 --- 263 - 262 --- 264 - 262 --- 265 - 262 --- 266 - 262 --- 267 - 262 --- 268 - 262 --- 269 - 262 --- 270 - 262 --- 271 - 262 --- 272 - 262 --- 273 - 262 --- 274 - 262 --- 275 - 262 --- 276 - 262 --- 277 - 262 --- 278 - 262 --- 279 - 262 --- 280 - 262 --- 281 - 262 --- 282 - 262 --- 283 - 262 ---- 285 - 262 --- 284 - 263 --- 286 - 263 --- 308 - 263 --- 309 - 263 x--> 307 - 264 --- 287 - 264 --- 310 - 264 --- 311 - 264 x--> 307 - 265 --- 288 - 265 --- 312 - 265 --- 313 - 265 x--> 307 - 266 --- 289 - 266 --- 314 - 266 --- 315 - 266 x--> 307 - 267 --- 290 - 267 --- 316 - 267 --- 317 - 267 x--> 307 - 268 --- 291 - 268 --- 318 - 268 --- 319 - 268 x--> 307 - 269 --- 292 - 269 --- 320 - 269 --- 321 - 269 x--> 307 - 270 --- 293 - 270 --- 322 - 270 --- 323 - 270 x--> 307 - 271 --- 294 - 271 --- 324 - 271 --- 325 - 271 x--> 307 - 272 --- 295 - 272 --- 326 - 272 --- 327 - 272 x--> 307 - 273 --- 296 - 273 --- 328 - 273 --- 329 - 273 x--> 307 - 274 --- 297 - 274 --- 330 - 274 --- 331 - 274 x--> 307 - 275 --- 298 - 275 --- 332 - 275 --- 333 - 275 x--> 307 - 276 --- 299 - 276 --- 334 - 276 --- 335 - 276 x--> 307 - 277 --- 300 - 277 --- 336 - 277 --- 337 - 277 x--> 307 - 278 --- 301 - 278 --- 338 - 278 --- 339 - 278 x--> 307 - 279 --- 302 - 279 --- 340 - 279 --- 341 - 279 x--> 307 - 280 --- 303 - 280 --- 342 - 280 --- 343 - 280 x--> 307 - 281 --- 304 - 281 --- 344 - 281 --- 345 - 281 x--> 307 - 282 --- 305 - 282 --- 346 - 282 --- 347 - 282 x--> 307 - 285 --- 286 - 285 --- 287 - 285 --- 288 - 285 --- 289 - 285 --- 290 - 285 --- 291 - 285 --- 292 - 285 --- 293 - 285 --- 294 - 285 --- 295 - 285 --- 296 - 285 --- 297 - 285 --- 298 - 285 --- 299 - 285 --- 300 - 285 --- 301 - 285 --- 302 - 285 --- 303 - 285 --- 304 - 285 --- 305 - 285 --- 306 - 285 --- 307 - 285 --- 308 - 285 --- 309 - 285 --- 310 - 285 --- 311 - 285 --- 312 - 285 --- 313 - 285 --- 314 - 285 --- 315 - 285 --- 316 - 285 --- 317 - 285 --- 318 - 285 --- 319 - 285 --- 320 - 285 --- 321 - 285 --- 322 - 285 --- 323 - 285 --- 324 - 285 --- 325 - 285 --- 326 - 285 --- 327 - 285 --- 328 - 285 --- 329 - 285 --- 330 - 285 --- 331 - 285 --- 332 - 285 --- 333 - 285 --- 334 - 285 --- 335 - 285 --- 336 - 285 --- 337 - 285 --- 338 - 285 --- 339 - 285 --- 340 - 285 --- 341 - 285 --- 342 - 285 --- 343 - 285 --- 344 - 285 --- 345 - 285 --- 346 - 285 --- 347 - 308 <--x 286 - 308 <--x 306 - 309 <--x 286 - 309 <--x 287 - 310 <--x 287 - 310 <--x 306 - 311 <--x 287 - 311 <--x 288 - 312 <--x 288 - 312 <--x 306 - 313 <--x 288 - 313 <--x 289 - 314 <--x 289 - 314 <--x 306 - 315 <--x 289 - 315 <--x 290 - 316 <--x 290 - 316 <--x 306 - 317 <--x 290 - 317 <--x 291 - 318 <--x 291 - 318 <--x 306 - 319 <--x 291 - 319 <--x 292 - 320 <--x 292 - 320 <--x 306 - 321 <--x 292 - 321 <--x 293 - 322 <--x 293 - 322 <--x 306 - 323 <--x 293 - 323 <--x 294 - 324 <--x 294 - 324 <--x 306 - 325 <--x 294 - 325 <--x 295 - 326 <--x 295 - 326 <--x 306 - 327 <--x 295 - 327 <--x 296 - 328 <--x 296 - 328 <--x 306 - 329 <--x 296 - 329 <--x 297 - 330 <--x 297 - 330 <--x 306 - 331 <--x 297 - 331 <--x 298 - 332 <--x 298 - 332 <--x 306 - 333 <--x 298 - 333 <--x 299 - 334 <--x 299 - 334 <--x 306 - 335 <--x 299 - 335 <--x 300 - 336 <--x 300 - 336 <--x 306 - 337 <--x 300 - 337 <--x 301 - 338 <--x 301 - 338 <--x 306 - 339 <--x 301 - 339 <--x 302 - 340 <--x 302 - 340 <--x 306 - 341 <--x 302 - 341 <--x 303 - 342 <--x 303 - 342 <--x 306 - 343 <--x 303 - 343 <--x 304 - 344 <--x 304 - 344 <--x 306 - 345 <--x 304 - 345 <--x 305 - 346 <--x 305 - 346 <--x 306 - 347 <--x 286 - 347 <--x 305 - 348 --- 349 - 348 --- 435 - 349 --- 350 - 349 --- 351 - 349 --- 352 - 349 --- 353 - 349 --- 354 - 349 --- 355 - 349 --- 356 - 349 --- 357 - 349 --- 358 - 349 --- 359 - 349 --- 360 - 349 --- 361 - 349 --- 362 - 349 --- 363 - 349 --- 364 - 349 --- 365 - 349 --- 366 - 349 --- 367 - 349 --- 368 - 349 --- 369 - 349 --- 370 - 349 ---- 372 - 349 --- 371 - 350 --- 373 - 350 --- 395 - 350 --- 396 - 350 x--> 393 - 351 --- 374 - 351 --- 397 - 351 --- 398 - 351 x--> 393 - 352 --- 375 - 352 --- 399 - 352 --- 400 - 352 x--> 393 - 353 --- 376 - 353 --- 401 - 353 --- 402 - 353 x--> 393 - 354 --- 377 - 354 --- 403 - 354 --- 404 - 354 x--> 393 - 355 --- 378 - 355 --- 405 - 355 --- 406 - 355 x--> 393 - 356 --- 379 - 356 --- 407 - 356 --- 408 - 356 x--> 393 - 357 --- 380 - 357 --- 409 - 357 --- 410 - 357 x--> 393 - 358 --- 381 - 358 --- 411 - 358 --- 412 - 358 x--> 393 - 359 --- 382 - 359 --- 413 - 359 --- 414 - 359 x--> 393 - 360 --- 383 - 360 --- 415 - 360 --- 416 - 360 x--> 393 - 361 --- 384 - 361 --- 417 - 361 --- 418 - 361 x--> 393 - 362 --- 385 - 362 --- 419 - 362 --- 420 - 362 x--> 393 - 363 --- 386 - 363 --- 421 - 363 --- 422 - 363 x--> 393 - 364 --- 387 - 364 --- 423 - 364 --- 424 - 364 x--> 393 - 365 --- 388 - 365 --- 425 - 365 --- 426 - 365 x--> 393 - 366 --- 389 - 366 --- 427 - 366 --- 428 - 366 x--> 393 - 367 --- 390 - 367 --- 429 - 367 --- 430 - 367 x--> 393 - 368 --- 391 - 368 --- 431 - 368 --- 432 - 368 x--> 393 - 369 --- 392 - 369 --- 433 - 369 --- 434 - 369 x--> 393 - 372 --- 373 - 372 --- 374 - 372 --- 375 - 372 --- 376 - 372 --- 377 - 372 --- 378 - 372 --- 379 - 372 --- 380 - 372 --- 381 - 372 --- 382 - 372 --- 383 - 372 --- 384 - 372 --- 385 - 372 --- 386 - 372 --- 387 - 372 --- 388 - 372 --- 389 - 372 --- 390 - 372 --- 391 - 372 --- 392 - 372 --- 393 - 372 --- 394 - 372 --- 395 - 372 --- 396 - 372 --- 397 - 372 --- 398 - 372 --- 399 - 372 --- 400 - 372 --- 401 - 372 --- 402 - 372 --- 403 - 372 --- 404 - 372 --- 405 - 372 --- 406 - 372 --- 407 - 372 --- 408 - 372 --- 409 - 372 --- 410 - 372 --- 411 - 372 --- 412 - 372 --- 413 - 372 --- 414 - 372 --- 415 - 372 --- 416 - 372 --- 417 - 372 --- 418 - 372 --- 419 - 372 --- 420 - 372 --- 421 - 372 --- 422 - 372 --- 423 - 372 --- 424 - 372 --- 425 - 372 --- 426 - 372 --- 427 - 372 --- 428 - 372 --- 429 - 372 --- 430 - 372 --- 431 - 372 --- 432 - 372 --- 433 - 372 --- 434 - 395 <--x 373 - 395 <--x 394 - 396 <--x 373 - 396 <--x 374 - 397 <--x 374 - 397 <--x 394 - 398 <--x 374 - 398 <--x 375 - 399 <--x 375 - 399 <--x 394 - 400 <--x 375 - 400 <--x 376 - 401 <--x 376 - 401 <--x 394 - 402 <--x 376 - 402 <--x 377 - 403 <--x 377 - 403 <--x 394 - 404 <--x 377 - 404 <--x 378 - 405 <--x 378 - 405 <--x 394 - 406 <--x 378 - 406 <--x 379 - 407 <--x 379 - 407 <--x 394 - 408 <--x 379 - 408 <--x 380 - 409 <--x 380 - 409 <--x 394 - 410 <--x 380 - 410 <--x 381 - 411 <--x 381 - 411 <--x 394 - 412 <--x 381 - 412 <--x 382 - 413 <--x 382 - 413 <--x 394 - 414 <--x 382 - 414 <--x 383 - 415 <--x 383 - 415 <--x 394 - 416 <--x 383 - 416 <--x 384 - 417 <--x 384 - 417 <--x 394 - 418 <--x 384 - 418 <--x 385 - 419 <--x 385 - 419 <--x 394 - 420 <--x 385 - 420 <--x 386 - 421 <--x 386 - 421 <--x 394 - 422 <--x 386 - 422 <--x 387 - 423 <--x 387 - 423 <--x 394 - 424 <--x 387 - 424 <--x 388 - 425 <--x 388 - 425 <--x 394 - 426 <--x 388 - 426 <--x 389 - 427 <--x 389 - 427 <--x 394 - 428 <--x 389 - 428 <--x 390 - 429 <--x 390 - 429 <--x 394 - 430 <--x 390 - 430 <--x 391 - 431 <--x 391 - 431 <--x 394 - 432 <--x 391 - 432 <--x 392 - 433 <--x 392 - 433 <--x 394 - 434 <--x 373 - 434 <--x 392 - 435 --- 436 - 435 --- 437 - 435 --- 438 - 435 --- 439 - 435 --- 440 - 435 --- 441 - 435 --- 442 - 435 --- 443 - 435 --- 444 - 435 --- 445 - 435 --- 446 - 435 --- 447 - 435 --- 448 - 435 --- 449 - 435 --- 450 - 435 --- 451 - 435 --- 452 - 435 --- 453 - 435 --- 454 - 435 --- 455 - 435 --- 456 - 435 ---- 458 - 435 --- 457 - 436 --- 459 - 436 --- 481 - 436 --- 482 - 436 x--> 480 - 437 --- 460 - 437 --- 483 - 437 --- 484 - 437 x--> 480 - 438 --- 461 - 438 --- 485 - 438 --- 486 - 438 x--> 480 - 439 --- 462 - 439 --- 487 - 439 --- 488 - 439 x--> 480 - 440 --- 463 - 440 --- 489 - 440 --- 490 - 440 x--> 480 - 441 --- 464 - 441 --- 491 - 441 --- 492 - 441 x--> 480 - 442 --- 465 - 442 --- 493 - 442 --- 494 - 442 x--> 480 - 443 --- 466 - 443 --- 495 - 443 --- 496 - 443 x--> 480 - 444 --- 467 - 444 --- 497 - 444 --- 498 - 444 x--> 480 - 445 --- 468 - 445 --- 499 - 445 --- 500 - 445 x--> 480 - 446 --- 469 - 446 --- 501 - 446 --- 502 - 446 x--> 480 - 447 --- 470 - 447 --- 503 - 447 --- 504 - 447 x--> 480 - 448 --- 471 - 448 --- 505 - 448 --- 506 - 448 x--> 480 - 449 --- 472 - 449 --- 507 - 449 --- 508 - 449 x--> 480 - 450 --- 473 - 450 --- 509 - 450 --- 510 - 450 x--> 480 - 451 --- 474 - 451 --- 511 - 451 --- 512 - 451 x--> 480 - 452 --- 475 - 452 --- 513 - 452 --- 514 - 452 x--> 480 - 453 --- 476 - 453 --- 515 - 453 --- 516 - 453 x--> 480 - 454 --- 477 - 454 --- 517 - 454 --- 518 - 454 x--> 480 - 455 --- 478 - 455 --- 519 - 455 --- 520 - 455 x--> 480 - 458 --- 459 - 458 --- 460 - 458 --- 461 - 458 --- 462 - 458 --- 463 - 458 --- 464 - 458 --- 465 - 458 --- 466 - 458 --- 467 - 458 --- 468 - 458 --- 469 - 458 --- 470 - 458 --- 471 - 458 --- 472 - 458 --- 473 - 458 --- 474 - 458 --- 475 - 458 --- 476 - 458 --- 477 - 458 --- 478 - 458 --- 479 - 458 --- 480 - 458 --- 481 - 458 --- 482 - 458 --- 483 - 458 --- 484 - 458 --- 485 - 458 --- 486 - 458 --- 487 - 458 --- 488 - 458 --- 489 - 458 --- 490 - 458 --- 491 - 458 --- 492 - 458 --- 493 - 458 --- 494 - 458 --- 495 - 458 --- 496 - 458 --- 497 - 458 --- 498 - 458 --- 499 - 458 --- 500 - 458 --- 501 - 458 --- 502 - 458 --- 503 - 458 --- 504 - 458 --- 505 - 458 --- 506 - 458 --- 507 - 458 --- 508 - 458 --- 509 - 458 --- 510 - 458 --- 511 - 458 --- 512 - 458 --- 513 - 458 --- 514 - 458 --- 515 - 458 --- 516 - 458 --- 517 - 458 --- 518 - 458 --- 519 - 458 --- 520 - 481 <--x 459 - 481 <--x 479 - 482 <--x 459 - 482 <--x 460 - 483 <--x 460 - 483 <--x 479 - 484 <--x 460 - 484 <--x 461 - 485 <--x 461 - 485 <--x 479 - 486 <--x 461 - 486 <--x 462 - 487 <--x 462 - 487 <--x 479 - 488 <--x 462 - 488 <--x 463 - 489 <--x 463 - 489 <--x 479 - 490 <--x 463 - 490 <--x 464 - 491 <--x 464 - 491 <--x 479 - 492 <--x 464 - 492 <--x 465 - 493 <--x 465 - 493 <--x 479 - 494 <--x 465 - 494 <--x 466 - 495 <--x 466 - 495 <--x 479 - 496 <--x 466 - 496 <--x 467 - 497 <--x 467 - 497 <--x 479 - 498 <--x 467 - 498 <--x 468 - 499 <--x 468 - 499 <--x 479 - 500 <--x 468 - 500 <--x 469 - 501 <--x 469 - 501 <--x 479 - 502 <--x 469 - 502 <--x 470 - 503 <--x 470 - 503 <--x 479 - 504 <--x 470 - 504 <--x 471 - 505 <--x 471 - 505 <--x 479 - 506 <--x 471 - 506 <--x 472 - 507 <--x 472 - 507 <--x 479 - 508 <--x 472 - 508 <--x 473 - 509 <--x 473 - 509 <--x 479 - 510 <--x 473 - 510 <--x 474 - 511 <--x 474 - 511 <--x 479 - 512 <--x 474 - 512 <--x 475 - 513 <--x 475 - 513 <--x 479 - 514 <--x 475 - 514 <--x 476 - 515 <--x 476 - 515 <--x 479 - 516 <--x 476 - 516 <--x 477 - 517 <--x 477 - 517 <--x 479 - 518 <--x 477 - 518 <--x 478 - 519 <--x 478 - 519 <--x 479 - 520 <--x 459 - 520 <--x 478 - 521 --- 522 - 521 --- 523 - 521 --- 553 - 521 --- 554 - 523 --- 524 - 523 --- 525 - 523 --- 526 - 523 --- 527 - 523 --- 528 - 523 --- 529 - 523 --- 530 - 523 ---- 532 - 523 --- 531 - 524 --- 533 - 524 --- 541 - 524 --- 542 - 524 x--> 539 - 525 --- 534 - 525 --- 543 - 525 --- 544 - 525 x--> 539 - 526 --- 535 - 526 --- 545 - 526 --- 546 - 526 x--> 539 - 527 --- 536 - 527 --- 547 - 527 --- 548 - 527 x--> 539 - 528 --- 537 - 528 --- 549 - 528 --- 550 - 528 x--> 539 - 529 --- 538 - 529 --- 551 - 529 --- 552 - 529 x--> 539 - 532 --- 533 - 532 --- 534 - 532 --- 535 - 532 --- 536 - 532 --- 537 - 532 --- 538 - 532 --- 539 - 532 --- 540 - 532 --- 541 - 532 --- 542 - 532 --- 543 - 532 --- 544 - 532 --- 545 - 532 --- 546 - 532 --- 547 - 532 --- 548 - 532 --- 549 - 532 --- 550 - 532 --- 551 - 532 --- 552 - 541 <--x 533 - 541 <--x 540 - 542 <--x 533 - 542 <--x 534 - 543 <--x 534 - 543 <--x 540 - 544 <--x 534 - 544 <--x 535 - 545 <--x 535 - 545 <--x 540 - 546 <--x 535 - 546 <--x 536 - 547 <--x 536 - 547 <--x 540 - 548 <--x 536 - 548 <--x 537 - 549 <--x 537 - 549 <--x 540 - 550 <--x 537 - 550 <--x 538 - 551 <--x 538 - 551 <--x 540 - 552 <--x 533 - 552 <--x 538 - 554 --- 555 - 554 --- 556 - 554 --- 557 - 554 --- 558 - 554 --- 559 - 554 --- 560 - 554 --- 561 - 554 ---- 563 - 554 --- 562 - 555 --- 564 - 555 --- 572 - 555 --- 573 - 555 x--> 570 - 556 --- 565 - 556 --- 574 - 556 --- 575 - 556 x--> 570 - 557 --- 566 - 557 --- 576 - 557 --- 577 - 557 x--> 570 - 558 --- 567 - 558 --- 578 - 558 --- 579 - 558 x--> 570 - 559 --- 568 - 559 --- 580 - 559 --- 581 - 559 x--> 570 - 560 --- 569 - 560 --- 582 - 560 --- 583 - 560 x--> 570 - 563 --- 564 - 563 --- 565 - 563 --- 566 - 563 --- 567 - 563 --- 568 - 563 --- 569 - 563 --- 570 - 563 --- 571 - 563 --- 572 - 563 --- 573 - 563 --- 574 - 563 --- 575 - 563 --- 576 - 563 --- 577 - 563 --- 578 - 563 --- 579 - 563 --- 580 - 563 --- 581 - 563 --- 582 - 563 --- 583 - 572 <--x 564 - 572 <--x 571 - 573 <--x 564 - 573 <--x 565 - 574 <--x 565 - 574 <--x 571 - 575 <--x 565 - 575 <--x 566 - 576 <--x 566 - 576 <--x 571 - 577 <--x 566 - 577 <--x 567 - 578 <--x 567 - 578 <--x 571 - 579 <--x 567 - 579 <--x 568 - 580 <--x 568 - 580 <--x 571 - 581 <--x 568 - 581 <--x 569 - 582 <--x 569 - 582 <--x 571 - 583 <--x 564 - 583 <--x 569 - 584 --- 585 - 585 --- 586 - 585 --- 587 - 585 --- 588 - 585 --- 589 - 585 --- 590 - 585 --- 591 - 585 --- 592 - 585 ---- 594 - 585 --- 593 - 586 --- 600 - 586 --- 613 - 586 --- 614 - 586 x--> 601 - 587 --- 599 - 587 --- 611 - 587 --- 612 - 587 x--> 601 - 588 --- 598 - 588 --- 609 - 588 --- 610 - 588 x--> 601 - 589 --- 597 - 589 --- 607 - 589 --- 608 - 589 x--> 601 - 590 --- 596 - 590 --- 605 - 590 --- 606 - 590 x--> 601 - 591 --- 595 - 591 --- 603 - 591 --- 604 - 591 x--> 601 - 594 --- 595 - 594 --- 596 - 594 --- 597 - 594 --- 598 - 594 --- 599 - 594 --- 600 - 594 --- 601 - 594 --- 602 - 594 --- 603 - 594 --- 604 - 594 --- 605 - 594 --- 606 - 594 --- 607 - 594 --- 608 - 594 --- 609 - 594 --- 610 - 594 --- 611 - 594 --- 612 - 594 --- 613 - 594 --- 614 - 603 <--x 595 - 603 <--x 602 - 604 <--x 595 - 604 <--x 600 - 605 <--x 596 - 605 <--x 602 - 606 <--x 595 - 606 <--x 596 - 607 <--x 597 - 607 <--x 602 - 608 <--x 596 - 608 <--x 597 - 609 <--x 598 - 609 <--x 602 - 610 <--x 597 - 610 <--x 598 - 611 <--x 599 - 611 <--x 602 - 612 <--x 598 - 612 <--x 599 - 613 <--x 600 - 613 <--x 602 - 614 <--x 599 - 614 <--x 600 - 617 --- 618 - 618 --- 619 - 618 --- 620 - 618 --- 621 - 618 --- 622 - 618 --- 623 - 618 --- 624 - 618 --- 625 - 618 ---- 627 - 618 --- 626 - 619 --- 633 - 619 --- 646 - 619 --- 647 - 619 x--> 634 - 620 --- 632 - 620 --- 644 - 620 --- 645 - 620 x--> 634 - 621 --- 631 - 621 --- 642 - 621 --- 643 - 621 x--> 634 - 622 --- 630 - 622 --- 640 - 622 --- 641 - 622 x--> 634 - 623 --- 629 - 623 --- 638 - 623 --- 639 - 623 x--> 634 - 624 --- 628 - 624 --- 636 - 624 --- 637 - 624 x--> 634 - 627 --- 628 - 627 --- 629 - 627 --- 630 - 627 --- 631 - 627 --- 632 - 627 --- 633 - 627 --- 634 - 627 --- 635 - 627 --- 636 - 627 --- 637 - 627 --- 638 - 627 --- 639 - 627 --- 640 - 627 --- 641 - 627 --- 642 - 627 --- 643 - 627 --- 644 - 627 --- 645 - 627 --- 646 - 627 --- 647 - 636 <--x 628 - 636 <--x 635 - 637 <--x 628 - 637 <--x 633 - 638 <--x 629 - 638 <--x 635 - 639 <--x 628 - 639 <--x 629 - 640 <--x 630 - 640 <--x 635 - 641 <--x 629 - 641 <--x 630 - 642 <--x 631 - 642 <--x 635 - 643 <--x 630 - 643 <--x 631 - 644 <--x 632 - 644 <--x 635 - 645 <--x 631 - 645 <--x 632 - 646 <--x 633 - 646 <--x 635 - 647 <--x 632 - 647 <--x 633 - 649 --- 650 - 650 --- 651 - 650 --- 652 - 653 --- 654 - 654 --- 655 - 654 --- 656 - 654 --- 657 - 654 --- 658 - 654 --- 659 - 654 --- 660 - 654 --- 661 - 654 ---- 663 - 654 --- 662 - 655 --- 664 - 655 --- 673 - 655 --- 674 - 655 x--> 671 - 656 --- 665 - 656 --- 675 - 656 --- 676 - 656 x--> 671 - 657 --- 666 - 657 --- 677 - 657 --- 678 - 657 x--> 671 - 658 --- 667 - 658 --- 679 - 658 --- 680 - 658 x--> 671 - 659 --- 668 - 659 --- 681 - 659 --- 682 - 659 x--> 671 - 660 --- 669 - 660 --- 683 - 660 --- 684 - 660 x--> 671 - 661 --- 670 - 661 --- 685 - 661 --- 686 - 661 x--> 671 - 663 --- 664 - 663 --- 665 - 663 --- 666 - 663 --- 667 - 663 --- 668 - 663 --- 669 - 663 --- 670 - 663 --- 671 - 663 --- 672 - 663 --- 673 - 663 --- 674 - 663 --- 675 - 663 --- 676 - 663 --- 677 - 663 --- 678 - 663 --- 679 - 663 --- 680 - 663 --- 681 - 663 --- 682 - 663 --- 683 - 663 --- 684 - 663 --- 685 - 663 --- 686 - 673 <--x 664 - 673 <--x 672 - 674 <--x 670 - 674 <--x 664 - 675 <--x 665 - 675 <--x 672 - 676 <--x 664 - 676 <--x 665 - 677 <--x 666 - 677 <--x 672 - 678 <--x 665 - 678 <--x 666 - 679 <--x 667 - 679 <--x 672 - 680 <--x 666 - 680 <--x 667 - 681 <--x 668 - 681 <--x 672 - 682 <--x 667 - 682 <--x 668 - 683 <--x 669 - 683 <--x 672 - 684 <--x 668 - 684 <--x 669 - 685 <--x 670 - 685 <--x 672 - 686 <--x 669 - 686 <--x 670 - 687 --- 688 - 688 --- 689 - 688 --- 690 - 691 --- 692 - 692 --- 693 - 692 --- 694 - 692 --- 695 - 692 --- 696 - 692 --- 697 - 692 --- 698 - 692 --- 699 - 692 ---- 701 - 692 --- 700 - 693 --- 702 - 693 --- 711 - 693 --- 712 - 693 x--> 709 - 694 --- 703 - 694 --- 713 - 694 --- 714 - 694 x--> 709 - 695 --- 704 - 695 --- 715 - 695 --- 716 - 695 x--> 709 - 696 --- 705 - 696 --- 717 - 696 --- 718 - 696 x--> 709 - 697 --- 706 - 697 --- 719 - 697 --- 720 - 697 x--> 709 - 698 --- 707 - 698 --- 721 - 698 --- 722 - 698 x--> 709 - 699 --- 708 - 699 --- 723 - 699 --- 724 - 699 x--> 709 - 701 --- 702 - 701 --- 703 - 701 --- 704 - 701 --- 705 - 701 --- 706 - 701 --- 707 - 701 --- 708 - 701 --- 709 - 701 --- 710 - 701 --- 711 - 701 --- 712 - 701 --- 713 - 701 --- 714 - 701 --- 715 - 701 --- 716 - 701 --- 717 - 701 --- 718 - 701 --- 719 - 701 --- 720 - 701 --- 721 - 701 --- 722 - 701 --- 723 - 701 --- 724 - 711 <--x 702 - 711 <--x 710 - 712 <--x 708 - 712 <--x 702 - 713 <--x 703 - 713 <--x 710 - 714 <--x 702 - 714 <--x 703 - 715 <--x 704 - 715 <--x 710 - 716 <--x 703 - 716 <--x 704 - 717 <--x 705 - 717 <--x 710 - 718 <--x 704 - 718 <--x 705 - 719 <--x 706 - 719 <--x 710 - 720 <--x 705 - 720 <--x 706 - 721 <--x 707 - 721 <--x 710 - 722 <--x 706 - 722 <--x 707 - 723 <--x 708 - 723 <--x 710 - 724 <--x 707 - 724 <--x 708 - 175 <--x 725 - 175 <--x 726 - 348 <--x 727 - 348 <--x 728 - 521 <--x 729 - 521 <--x 730 - 584 <--x 731 - 617 <--x 732 - 649 <--x 733 - 653 <--x 734 - 687 <--x 735 - 691 <--x 736 + 25 --- 91 + 25 --- 96 + 25 --- 101 + 25 --- 111 + 25 --- 116 + 25 --- 120 + 25 --- 124 + 25 --- 134 + 25 --- 137 + 25 --- 147 + 25 --- 148 + 25 --- 158 + 25 --- 164 + 25 --- 216 + 25 ---- 226 + 26 --- 40 + 26 --- 50 + 26 --- 53 + 26 --- 60 + 26 --- 67 + 26 --- 74 + 26 --- 77 + 26 --- 83 + 26 --- 88 + 26 --- 95 + 26 --- 105 + 26 --- 106 + 26 --- 117 + 26 --- 118 + 26 --- 125 + 26 --- 133 + 26 --- 141 + 26 --- 145 + 26 --- 150 + 26 --- 157 + 26 --- 160 + 26 --- 217 + 26 ---- 225 + 27 --- 43 + 27 --- 46 + 27 --- 56 + 27 --- 59 + 27 --- 64 + 27 --- 75 + 27 --- 76 + 27 --- 85 + 27 --- 92 + 27 --- 99 + 27 --- 102 + 27 --- 110 + 27 --- 115 + 27 --- 119 + 27 --- 126 + 27 --- 131 + 27 --- 138 + 27 --- 146 + 27 --- 153 + 27 --- 159 + 27 --- 161 + 27 --- 218 + 27 ---- 228 + 28 --- 42 + 28 --- 51 + 28 --- 57 + 28 --- 62 + 28 --- 65 + 28 --- 73 + 28 --- 80 + 28 --- 82 + 28 --- 90 + 28 --- 97 + 28 --- 100 + 28 --- 108 + 28 --- 114 + 28 --- 123 + 28 --- 127 + 28 --- 135 + 28 --- 139 + 28 --- 143 + 28 --- 149 + 28 --- 154 + 28 --- 165 + 28 --- 219 + 28 ---- 229 + 29 --- 45 + 29 --- 48 + 29 --- 54 + 29 --- 61 + 29 --- 69 + 29 --- 70 + 29 --- 78 + 29 --- 86 + 29 --- 93 + 29 --- 98 + 29 --- 104 + 29 --- 107 + 29 --- 112 + 29 --- 121 + 29 --- 128 + 29 --- 130 + 29 --- 140 + 29 --- 142 + 29 --- 151 + 29 --- 156 + 29 --- 163 + 29 --- 223 + 29 ---- 227 + 32 --- 166 + 32 --- 169 + 32 --- 170 + 32 --- 172 + 32 --- 173 + 32 --- 178 + 32 --- 179 + 32 --- 221 + 32 ---- 230 + 33 --- 167 + 33 --- 168 + 33 --- 171 + 33 --- 174 + 33 --- 175 + 33 --- 176 + 33 --- 177 + 33 --- 222 + 33 ---- 231 + 34 --- 180 + 34 --- 181 + 34 --- 182 + 34 --- 183 + 34 --- 184 + 34 --- 185 + 34 --- 186 + 34 --- 213 + 34 ---- 233 + 35 --- 187 + 35 --- 188 + 35 --- 189 + 35 --- 190 + 35 --- 191 + 35 --- 192 + 35 --- 193 + 35 --- 215 + 35 ---- 236 + 36 --- 194 + 36 --- 196 + 37 --- 195 + 37 --- 197 + 38 --- 198 + 38 --- 200 + 38 --- 202 + 38 --- 204 + 38 --- 207 + 38 --- 208 + 38 --- 211 + 38 --- 214 + 38 ---- 237 + 39 --- 199 + 39 --- 201 + 39 --- 203 + 39 --- 205 + 39 --- 206 + 39 --- 209 + 39 --- 210 + 39 --- 220 + 39 ---- 238 + 40 --- 262 + 40 x--> 398 + 40 --- 456 + 40 --- 612 + 41 --- 244 + 41 x--> 397 + 41 --- 434 + 41 --- 598 + 42 --- 377 + 42 x--> 419 + 42 --- 569 + 42 --- 723 + 43 --- 357 + 43 x--> 418 + 43 --- 540 + 43 --- 695 + 44 --- 307 + 44 x--> 401 + 44 --- 474 + 44 --- 650 + 45 --- 330 + 45 x--> 414 + 45 --- 513 + 45 --- 662 + 46 --- 353 + 46 x--> 418 + 46 --- 532 + 46 --- 697 + 47 --- 246 + 47 x--> 397 + 47 --- 421 + 47 --- 580 + 48 --- 319 + 48 x--> 414 + 48 --- 508 + 48 --- 652 + 49 --- 301 + 49 x--> 401 + 49 --- 483 + 49 --- 645 + 50 --- 277 + 50 x--> 398 + 50 --- 454 + 50 --- 618 + 51 --- 388 + 51 x--> 419 + 51 --- 565 + 51 --- 713 + 52 --- 241 + 52 x--> 397 + 52 --- 433 + 52 --- 596 + 53 --- 269 + 53 x--> 398 + 53 --- 445 + 53 --- 613 + 54 --- 324 + 54 x--> 414 + 54 --- 509 + 54 --- 671 + 55 --- 300 + 55 x--> 401 + 55 --- 485 + 55 --- 639 + 56 --- 358 + 56 x--> 418 + 56 --- 541 + 56 --- 692 + 57 --- 386 + 57 x--> 419 + 57 --- 553 + 57 --- 719 + 58 --- 250 + 58 x--> 397 + 58 --- 440 + 58 --- 597 + 59 --- 359 + 59 x--> 418 + 59 --- 545 + 59 --- 699 + 60 --- 271 + 60 x--> 398 + 60 --- 447 + 60 --- 599 + 61 --- 326 + 61 x--> 414 + 61 --- 498 + 61 --- 670 + 62 --- 385 + 62 x--> 419 + 62 --- 555 + 62 --- 721 + 63 --- 303 + 63 x--> 401 + 63 --- 479 + 63 --- 649 + 64 --- 351 + 64 x--> 418 + 64 --- 535 + 64 --- 691 + 65 --- 372 + 65 x--> 419 + 65 --- 563 + 65 --- 727 + 66 --- 298 + 66 x--> 401 + 66 --- 488 + 66 --- 633 + 67 --- 268 + 67 x--> 398 + 67 --- 453 + 67 --- 610 + 68 --- 257 + 68 x--> 397 + 68 --- 435 + 68 --- 579 + 69 --- 329 + 69 x--> 414 + 69 --- 496 + 69 --- 669 + 70 --- 315 + 70 x--> 414 + 70 --- 500 + 70 --- 663 + 71 --- 297 + 71 x--> 401 + 71 --- 484 + 71 --- 648 + 72 --- 245 + 72 x--> 397 + 72 --- 424 + 72 --- 589 + 73 --- 380 + 73 x--> 419 + 73 --- 560 + 73 --- 717 + 74 --- 274 + 74 x--> 398 + 74 --- 449 + 74 --- 605 + 75 --- 368 + 75 x--> 418 + 75 --- 537 + 75 --- 708 + 76 --- 350 + 76 x--> 418 + 76 --- 546 + 76 --- 693 + 77 --- 263 + 77 x--> 398 + 77 --- 444 + 77 --- 611 + 78 --- 318 + 78 x--> 414 + 78 --- 506 + 78 --- 657 + 79 --- 251 + 79 x--> 397 + 79 --- 427 + 79 --- 592 + 80 --- 382 + 80 x--> 419 + 80 --- 564 + 80 --- 710 + 81 --- 306 + 81 x--> 401 + 81 --- 482 + 81 --- 646 + 82 --- 371 + 82 x--> 419 + 82 --- 571 + 82 --- 716 + 83 --- 270 + 83 x--> 398 + 83 --- 458 + 83 --- 603 + 84 --- 256 + 84 x--> 397 + 84 --- 439 + 84 --- 588 + 85 --- 362 + 85 x--> 418 + 85 --- 536 + 85 --- 707 + 86 --- 328 + 86 x--> 414 + 86 --- 502 + 86 --- 655 + 87 --- 310 + 87 x--> 401 + 87 --- 487 + 87 --- 647 + 88 --- 266 + 88 x--> 398 + 88 --- 442 + 88 --- 608 + 89 --- 248 + 89 x--> 397 + 89 --- 431 + 89 --- 594 + 90 --- 384 + 90 x--> 419 + 90 --- 558 + 90 --- 718 + 91 --- 309 + 91 x--> 401 + 91 --- 480 + 91 --- 632 + 92 --- 369 + 92 x--> 418 + 92 --- 538 + 92 --- 704 + 93 --- 331 + 93 x--> 414 + 93 --- 497 + 93 --- 654 + 94 --- 240 + 94 x--> 397 + 94 --- 426 + 94 --- 581 + 95 --- 260 + 95 x--> 398 + 95 --- 457 + 95 --- 602 + 96 --- 295 + 96 x--> 401 + 96 --- 489 + 96 --- 651 + 97 --- 379 + 97 x--> 419 + 97 --- 562 + 97 --- 726 + 98 --- 321 + 98 x--> 414 + 98 --- 501 + 98 --- 661 + 99 --- 363 + 99 x--> 418 + 99 --- 534 + 99 --- 705 + 100 --- 374 + 100 x--> 419 + 100 --- 556 + 100 --- 714 + 101 --- 296 + 101 x--> 401 + 101 --- 481 + 101 --- 636 + 102 --- 356 + 102 x--> 418 + 102 --- 539 + 102 --- 709 + 103 --- 247 + 103 x--> 397 + 103 --- 430 + 103 --- 591 + 104 --- 322 + 104 x--> 414 + 104 --- 504 + 104 --- 659 + 105 --- 276 + 105 x--> 398 + 105 --- 460 + 105 --- 616 + 106 --- 261 + 106 x--> 398 + 106 --- 450 + 106 --- 617 + 107 --- 314 + 107 x--> 414 + 107 --- 494 + 107 --- 668 + 108 --- 378 + 108 x--> 419 + 108 --- 561 + 108 --- 725 + 109 --- 249 + 109 x--> 397 + 109 --- 438 + 109 --- 595 + 110 --- 364 + 110 x--> 418 + 110 --- 550 + 110 --- 706 + 111 --- 311 + 111 x--> 401 + 111 --- 478 + 111 --- 640 + 112 --- 312 + 112 x--> 414 + 112 --- 503 + 112 --- 660 + 113 --- 243 + 113 x--> 397 + 113 --- 436 + 113 --- 590 + 114 --- 376 + 114 x--> 419 + 114 --- 567 + 114 --- 715 + 115 --- 361 + 115 x--> 418 + 115 --- 543 + 115 --- 698 + 116 --- 304 + 116 x--> 401 + 116 --- 492 + 116 --- 637 + 117 --- 278 + 117 x--> 398 + 117 --- 451 + 117 --- 606 + 118 --- 259 + 118 x--> 398 + 118 --- 452 + 118 --- 604 + 119 --- 352 + 119 x--> 418 + 119 --- 533 + 119 --- 700 + 120 --- 299 + 120 x--> 401 + 120 --- 476 + 120 --- 634 + 121 --- 323 + 121 x--> 414 + 121 --- 510 + 121 --- 658 + 122 --- 252 + 122 x--> 397 + 122 --- 432 + 122 --- 586 + 123 --- 389 + 123 x--> 419 + 123 --- 554 + 123 --- 728 + 124 --- 293 + 124 x--> 401 + 124 --- 491 + 124 --- 642 + 125 --- 264 + 125 x--> 398 + 125 --- 441 + 125 --- 615 + 126 --- 360 + 126 x--> 418 + 126 --- 547 + 126 --- 703 + 127 --- 383 + 127 x--> 419 + 127 --- 557 + 127 --- 729 + 128 --- 327 + 128 x--> 414 + 128 --- 512 + 128 --- 664 + 129 --- 258 + 129 x--> 397 + 129 --- 437 + 129 --- 583 + 130 --- 317 + 130 x--> 414 + 130 --- 507 + 130 --- 656 + 131 --- 355 + 131 x--> 418 + 131 --- 542 + 131 --- 690 + 132 --- 255 + 132 x--> 397 + 132 --- 428 + 132 --- 593 + 133 --- 275 + 133 x--> 398 + 133 --- 443 + 133 --- 609 + 134 --- 305 + 134 x--> 401 + 134 --- 477 + 134 --- 638 + 135 --- 387 + 135 x--> 419 + 135 --- 552 + 135 --- 711 + 136 --- 239 + 136 x--> 397 + 136 --- 425 + 136 --- 584 + 137 --- 294 + 137 x--> 401 + 137 --- 490 + 137 --- 644 + 138 --- 354 + 138 x--> 418 + 138 --- 544 + 138 --- 701 + 139 --- 381 + 139 x--> 419 + 139 --- 570 + 139 --- 720 + 140 --- 325 + 140 x--> 414 + 140 --- 495 + 140 --- 653 + 141 --- 273 + 141 x--> 398 + 141 --- 459 + 141 --- 600 + 142 --- 313 + 142 x--> 414 + 142 --- 499 + 142 --- 667 + 143 --- 373 + 143 x--> 419 + 143 --- 566 + 143 --- 722 + 144 --- 254 + 144 x--> 397 + 144 --- 429 + 144 --- 585 + 145 --- 272 + 145 x--> 398 + 145 --- 446 + 145 --- 607 + 146 --- 366 + 146 x--> 418 + 146 --- 548 + 146 --- 694 + 147 --- 308 + 147 x--> 401 + 147 --- 486 + 147 --- 643 + 148 --- 292 + 148 x--> 401 + 148 --- 493 + 148 --- 635 + 149 --- 375 + 149 x--> 419 + 149 --- 559 + 149 --- 712 + 150 --- 267 + 150 x--> 398 + 150 --- 448 + 150 --- 614 + 151 --- 320 + 151 x--> 414 + 151 --- 511 + 151 --- 665 + 152 --- 253 + 152 x--> 397 + 152 --- 422 + 152 --- 582 + 153 --- 367 + 153 x--> 418 + 153 --- 549 + 153 --- 702 + 154 --- 370 + 154 x--> 419 + 154 --- 568 + 154 --- 724 + 155 --- 242 + 155 x--> 397 + 155 --- 423 + 155 --- 587 + 156 --- 316 + 156 x--> 414 + 156 --- 505 + 156 --- 666 + 157 --- 265 + 157 x--> 398 + 157 --- 455 + 157 --- 601 + 158 --- 302 + 158 x--> 401 + 158 --- 475 + 158 --- 641 + 159 --- 365 + 159 x--> 418 + 159 --- 551 + 159 --- 696 + 166 --- 286 + 166 x--> 400 + 166 --- 470 + 166 --- 628 + 167 --- 344 + 167 x--> 405 + 167 --- 527 + 167 --- 684 + 168 --- 345 + 168 x--> 405 + 168 --- 526 + 168 --- 689 + 169 --- 287 + 169 x--> 400 + 169 --- 468 + 169 --- 630 + 170 --- 288 + 170 x--> 400 + 170 --- 469 + 170 --- 631 + 172 --- 289 + 172 x--> 400 + 172 --- 473 + 172 --- 627 + 173 --- 290 + 173 x--> 400 + 173 --- 471 + 173 --- 626 + 174 --- 346 + 174 x--> 405 + 174 --- 531 + 174 --- 685 + 175 --- 347 + 175 x--> 405 + 175 --- 530 + 175 --- 686 + 176 --- 348 + 176 x--> 405 + 176 --- 529 + 176 --- 687 + 177 --- 349 + 177 x--> 405 + 177 --- 528 + 177 --- 688 + 179 --- 291 + 179 x--> 400 + 179 --- 472 + 179 --- 629 + 180 --- 337 + 180 x--> 403 + 180 --- 516 + 180 --- 673 + 181 --- 333 + 181 x--> 403 + 181 --- 519 + 181 --- 675 + 182 --- 334 + 182 x--> 403 + 182 --- 514 + 182 --- 676 + 183 --- 335 + 183 x--> 403 + 183 --- 518 + 183 --- 674 + 184 --- 336 + 184 x--> 403 + 184 --- 517 + 184 --- 672 + 185 --- 332 + 185 x--> 403 + 185 --- 515 + 185 --- 677 + 187 --- 338 + 187 x--> 404 + 187 --- 520 + 187 --- 682 + 188 --- 339 + 188 x--> 404 + 188 --- 524 + 188 --- 681 + 189 --- 343 + 189 x--> 404 + 189 --- 525 + 189 --- 679 + 190 --- 340 + 190 x--> 404 + 190 --- 523 + 190 --- 680 + 191 --- 341 + 191 x--> 404 + 191 --- 522 + 191 --- 683 + 192 --- 342 + 192 x--> 404 + 192 --- 521 + 192 --- 678 + 198 --- 279 + 198 x--> 399 + 198 --- 462 + 198 --- 622 + 199 --- 393 + 199 x--> 408 + 199 --- 572 + 199 --- 732 + 200 --- 281 + 200 x--> 399 + 200 --- 467 + 200 --- 625 + 201 --- 395 + 201 x--> 408 + 201 --- 576 + 201 --- 734 + 202 --- 280 + 202 x--> 399 + 202 --- 465 + 202 --- 620 + 203 --- 391 + 203 x--> 408 + 203 --- 574 + 203 --- 731 + 204 --- 283 + 204 x--> 399 + 204 --- 464 + 204 --- 621 + 205 --- 394 + 205 x--> 408 + 205 --- 575 + 205 --- 730 + 206 --- 392 + 206 x--> 408 + 206 --- 577 + 206 --- 736 + 207 --- 282 + 207 x--> 399 + 207 --- 463 + 207 --- 619 + 208 --- 284 + 208 x--> 399 + 208 --- 461 + 208 --- 624 + 209 --- 396 + 209 x--> 408 + 209 --- 578 + 209 --- 735 + 210 --- 390 + 210 x--> 408 + 210 --- 573 + 210 --- 733 + 211 --- 285 + 211 x--> 399 + 211 --- 466 + 211 --- 623 + 224 --- 239 + 224 --- 240 + 224 --- 241 + 224 --- 242 + 224 --- 243 + 224 --- 244 + 224 --- 245 + 224 --- 246 + 224 --- 247 + 224 --- 248 + 224 --- 249 + 224 --- 250 + 224 --- 251 + 224 --- 252 + 224 --- 253 + 224 --- 254 + 224 --- 255 + 224 --- 256 + 224 --- 257 + 224 --- 258 + 224 --- 397 + 224 --- 409 + 224 --- 421 + 224 --- 422 + 224 --- 423 + 224 --- 424 + 224 --- 425 + 224 --- 426 + 224 --- 427 + 224 --- 428 + 224 --- 429 + 224 --- 430 + 224 --- 431 + 224 --- 432 + 224 --- 433 + 224 --- 434 + 224 --- 435 + 224 --- 436 + 224 --- 437 + 224 --- 438 + 224 --- 439 + 224 --- 440 + 224 --- 579 + 224 --- 580 + 224 --- 581 + 224 --- 582 + 224 --- 583 + 224 --- 584 + 224 --- 585 + 224 --- 586 + 224 --- 587 + 224 --- 588 + 224 --- 589 + 224 --- 590 + 224 --- 591 + 224 --- 592 + 224 --- 593 + 224 --- 594 + 224 --- 595 + 224 --- 596 + 224 --- 597 + 224 --- 598 + 225 --- 259 + 225 --- 260 + 225 --- 261 + 225 --- 262 + 225 --- 263 + 225 --- 264 + 225 --- 265 + 225 --- 266 + 225 --- 267 + 225 --- 268 + 225 --- 269 + 225 --- 270 + 225 --- 271 + 225 --- 272 + 225 --- 273 + 225 --- 274 + 225 --- 275 + 225 --- 276 + 225 --- 277 + 225 --- 278 + 225 --- 398 + 225 --- 410 + 225 --- 441 + 225 --- 442 + 225 --- 443 + 225 --- 444 + 225 --- 445 + 225 --- 446 + 225 --- 447 + 225 --- 448 + 225 --- 449 + 225 --- 450 + 225 --- 451 + 225 --- 452 + 225 --- 453 + 225 --- 454 + 225 --- 455 + 225 --- 456 + 225 --- 457 + 225 --- 458 + 225 --- 459 + 225 --- 460 + 225 --- 599 + 225 --- 600 + 225 --- 601 + 225 --- 602 + 225 --- 603 + 225 --- 604 + 225 --- 605 + 225 --- 606 + 225 --- 607 + 225 --- 608 + 225 --- 609 + 225 --- 610 + 225 --- 611 + 225 --- 612 + 225 --- 613 + 225 --- 614 + 225 --- 615 + 225 --- 616 + 225 --- 617 + 225 --- 618 + 226 --- 292 + 226 --- 293 + 226 --- 294 + 226 --- 295 + 226 --- 296 + 226 --- 297 + 226 --- 298 + 226 --- 299 + 226 --- 300 + 226 --- 301 + 226 --- 302 + 226 --- 303 + 226 --- 304 + 226 --- 305 + 226 --- 306 + 226 --- 307 + 226 --- 308 + 226 --- 309 + 226 --- 310 + 226 --- 311 + 226 --- 401 + 226 --- 413 + 226 --- 474 + 226 --- 475 + 226 --- 476 + 226 --- 477 + 226 --- 478 + 226 --- 479 + 226 --- 480 + 226 --- 481 + 226 --- 482 + 226 --- 483 + 226 --- 484 + 226 --- 485 + 226 --- 486 + 226 --- 487 + 226 --- 488 + 226 --- 489 + 226 --- 490 + 226 --- 491 + 226 --- 492 + 226 --- 493 + 226 --- 632 + 226 --- 633 + 226 --- 634 + 226 --- 635 + 226 --- 636 + 226 --- 637 + 226 --- 638 + 226 --- 639 + 226 --- 640 + 226 --- 641 + 226 --- 642 + 226 --- 643 + 226 --- 644 + 226 --- 645 + 226 --- 646 + 226 --- 647 + 226 --- 648 + 226 --- 649 + 226 --- 650 + 226 --- 651 + 227 --- 312 + 227 --- 313 + 227 --- 314 + 227 --- 315 + 227 --- 316 + 227 --- 317 + 227 --- 318 + 227 --- 319 + 227 --- 320 + 227 --- 321 + 227 --- 322 + 227 --- 323 + 227 --- 324 + 227 --- 325 + 227 --- 326 + 227 --- 327 + 227 --- 328 + 227 --- 329 + 227 --- 330 + 227 --- 331 + 227 --- 402 + 227 --- 414 + 227 --- 494 + 227 --- 495 + 227 --- 496 + 227 --- 497 + 227 --- 498 + 227 --- 499 + 227 --- 500 + 227 --- 501 + 227 --- 502 + 227 --- 503 + 227 --- 504 + 227 --- 505 + 227 --- 506 + 227 --- 507 + 227 --- 508 + 227 --- 509 + 227 --- 510 + 227 --- 511 + 227 --- 512 + 227 --- 513 + 227 --- 652 + 227 --- 653 + 227 --- 654 + 227 --- 655 + 227 --- 656 + 227 --- 657 + 227 --- 658 + 227 --- 659 + 227 --- 660 + 227 --- 661 + 227 --- 662 + 227 --- 663 + 227 --- 664 + 227 --- 665 + 227 --- 666 + 227 --- 667 + 227 --- 668 + 227 --- 669 + 227 --- 670 + 227 --- 671 + 228 --- 350 + 228 --- 351 + 228 --- 352 + 228 --- 353 + 228 --- 354 + 228 --- 355 + 228 --- 356 + 228 --- 357 + 228 --- 358 + 228 --- 359 + 228 --- 360 + 228 --- 361 + 228 --- 362 + 228 --- 363 + 228 --- 364 + 228 --- 365 + 228 --- 366 + 228 --- 367 + 228 --- 368 + 228 --- 369 + 228 --- 406 + 228 --- 418 + 228 --- 532 + 228 --- 533 + 228 --- 534 + 228 --- 535 + 228 --- 536 + 228 --- 537 + 228 --- 538 + 228 --- 539 + 228 --- 540 + 228 --- 541 + 228 --- 542 + 228 --- 543 + 228 --- 544 + 228 --- 545 + 228 --- 546 + 228 --- 547 + 228 --- 548 + 228 --- 549 + 228 --- 550 + 228 --- 551 + 228 --- 690 + 228 --- 691 + 228 --- 692 + 228 --- 693 + 228 --- 694 + 228 --- 695 + 228 --- 696 + 228 --- 697 + 228 --- 698 + 228 --- 699 + 228 --- 700 + 228 --- 701 + 228 --- 702 + 228 --- 703 + 228 --- 704 + 228 --- 705 + 228 --- 706 + 228 --- 707 + 228 --- 708 + 228 --- 709 + 229 --- 370 + 229 --- 371 + 229 --- 372 + 229 --- 373 + 229 --- 374 + 229 --- 375 + 229 --- 376 + 229 --- 377 + 229 --- 378 + 229 --- 379 + 229 --- 380 + 229 --- 381 + 229 --- 382 + 229 --- 383 + 229 --- 384 + 229 --- 385 + 229 --- 386 + 229 --- 387 + 229 --- 388 + 229 --- 389 + 229 --- 407 + 229 --- 419 + 229 --- 552 + 229 --- 553 + 229 --- 554 + 229 --- 555 + 229 --- 556 + 229 --- 557 + 229 --- 558 + 229 --- 559 + 229 --- 560 + 229 --- 561 + 229 --- 562 + 229 --- 563 + 229 --- 564 + 229 --- 565 + 229 --- 566 + 229 --- 567 + 229 --- 568 + 229 --- 569 + 229 --- 570 + 229 --- 571 + 229 --- 710 + 229 --- 711 + 229 --- 712 + 229 --- 713 + 229 --- 714 + 229 --- 715 + 229 --- 716 + 229 --- 717 + 229 --- 718 + 229 --- 719 + 229 --- 720 + 229 --- 721 + 229 --- 722 + 229 --- 723 + 229 --- 724 + 229 --- 725 + 229 --- 726 + 229 --- 727 + 229 --- 728 + 229 --- 729 + 230 --- 286 + 230 --- 287 + 230 --- 288 + 230 --- 289 + 230 --- 290 + 230 --- 291 + 230 --- 400 + 230 --- 412 + 230 --- 468 + 230 --- 469 + 230 --- 470 + 230 --- 471 + 230 --- 472 + 230 --- 473 + 230 --- 626 + 230 --- 627 + 230 --- 628 + 230 --- 629 + 230 --- 630 + 230 --- 631 + 231 --- 344 + 231 --- 345 + 231 --- 346 + 231 --- 347 + 231 --- 348 + 231 --- 349 + 231 --- 405 + 231 --- 417 + 231 --- 526 + 231 --- 527 + 231 --- 528 + 231 --- 529 + 231 --- 530 + 231 --- 531 + 231 --- 684 + 231 --- 685 + 231 --- 686 + 231 --- 687 + 231 --- 688 + 231 --- 689 + 233 --- 332 + 233 --- 333 + 233 --- 334 + 233 --- 335 + 233 --- 336 + 233 --- 337 + 233 --- 403 + 233 --- 415 + 233 --- 514 + 233 --- 515 + 233 --- 516 + 233 --- 517 + 233 --- 518 + 233 --- 519 + 233 --- 672 + 233 --- 673 + 233 --- 674 + 233 --- 675 + 233 --- 676 + 233 --- 677 + 236 --- 338 + 236 --- 339 + 236 --- 340 + 236 --- 341 + 236 --- 342 + 236 --- 343 + 236 --- 404 + 236 --- 416 + 236 --- 520 + 236 --- 521 + 236 --- 522 + 236 --- 523 + 236 --- 524 + 236 --- 525 + 236 --- 678 + 236 --- 679 + 236 --- 680 + 236 --- 681 + 236 --- 682 + 236 --- 683 + 237 --- 279 + 237 --- 280 + 237 --- 281 + 237 --- 282 + 237 --- 283 + 237 --- 284 + 237 --- 285 + 237 --- 399 + 237 --- 411 + 237 --- 461 + 237 --- 462 + 237 --- 463 + 237 --- 464 + 237 --- 465 + 237 --- 466 + 237 --- 467 + 237 --- 619 + 237 --- 620 + 237 --- 621 + 237 --- 622 + 237 --- 623 + 237 --- 624 + 237 --- 625 + 238 --- 390 + 238 --- 391 + 238 --- 392 + 238 --- 393 + 238 --- 394 + 238 --- 395 + 238 --- 396 + 238 --- 408 + 238 --- 420 + 238 --- 572 + 238 --- 573 + 238 --- 574 + 238 --- 575 + 238 --- 576 + 238 --- 577 + 238 --- 578 + 238 --- 730 + 238 --- 731 + 238 --- 732 + 238 --- 733 + 238 --- 734 + 238 --- 735 + 238 --- 736 + 425 <--x 239 + 584 <--x 239 + 593 <--x 239 + 426 <--x 240 + 581 <--x 240 + 594 <--x 240 + 433 <--x 241 + 580 <--x 241 + 596 <--x 241 + 423 <--x 242 + 582 <--x 242 + 587 <--x 242 + 436 <--x 243 + 590 <--x 243 + 595 <--x 243 + 434 <--x 244 + 587 <--x 244 + 598 <--x 244 + 424 <--x 245 + 579 <--x 245 + 589 <--x 245 + 421 <--x 246 + 580 <--x 246 + 598 <--x 246 + 430 <--x 247 + 581 <--x 247 + 591 <--x 247 + 431 <--x 248 + 588 <--x 248 + 594 <--x 248 + 438 <--x 249 + 591 <--x 249 + 595 <--x 249 + 440 <--x 250 + 596 <--x 250 + 597 <--x 250 + 427 <--x 251 + 589 <--x 251 + 592 <--x 251 + 432 <--x 252 + 586 <--x 252 + 590 <--x 252 + 422 <--x 253 + 582 <--x 253 + 585 <--x 253 + 429 <--x 254 + 584 <--x 254 + 585 <--x 254 + 428 <--x 255 + 583 <--x 255 + 593 <--x 255 + 439 <--x 256 + 588 <--x 256 + 592 <--x 256 + 435 <--x 257 + 579 <--x 257 + 597 <--x 257 + 437 <--x 258 + 583 <--x 258 + 586 <--x 258 + 452 <--x 259 + 604 <--x 259 + 606 <--x 259 + 457 <--x 260 + 602 <--x 260 + 608 <--x 260 + 450 <--x 261 + 616 <--x 261 + 617 <--x 261 + 456 <--x 262 + 601 <--x 262 + 612 <--x 262 + 444 <--x 263 + 605 <--x 263 + 611 <--x 263 + 441 <--x 264 + 604 <--x 264 + 615 <--x 264 + 455 <--x 265 + 601 <--x 265 + 614 <--x 265 + 442 <--x 266 + 603 <--x 266 + 608 <--x 266 + 448 <--x 267 + 607 <--x 267 + 614 <--x 267 + 453 <--x 268 + 599 <--x 268 + 610 <--x 268 + 445 <--x 269 + 613 <--x 269 + 618 <--x 269 + 458 <--x 270 + 603 <--x 270 + 611 <--x 270 + 447 <--x 271 + 599 <--x 271 + 613 <--x 271 + 446 <--x 272 + 600 <--x 272 + 607 <--x 272 + 459 <--x 273 + 600 <--x 273 + 609 <--x 273 + 449 <--x 274 + 605 <--x 274 + 610 <--x 274 + 443 <--x 275 + 609 <--x 275 + 615 <--x 275 + 460 <--x 276 + 602 <--x 276 + 616 <--x 276 + 454 <--x 277 + 612 <--x 277 + 618 <--x 277 + 451 <--x 278 + 606 <--x 278 + 617 <--x 278 + 462 <--x 279 + 622 <--x 279 + 625 <--x 279 + 465 <--x 280 + 620 <--x 280 + 621 <--x 280 + 467 <--x 281 + 620 <--x 281 + 625 <--x 281 + 463 <--x 282 + 619 <--x 282 + 624 <--x 282 + 464 <--x 283 + 619 <--x 283 + 621 <--x 283 + 461 <--x 284 + 623 <--x 284 + 624 <--x 284 + 466 <--x 285 + 622 <--x 285 + 623 <--x 285 + 470 <--x 286 + 628 <--x 286 + 631 <--x 286 + 468 <--x 287 + 628 <--x 287 + 630 <--x 287 + 469 <--x 288 + 629 <--x 288 + 631 <--x 288 + 473 <--x 289 + 627 <--x 289 + 630 <--x 289 + 471 <--x 290 + 626 <--x 290 + 627 <--x 290 + 472 <--x 291 + 626 <--x 291 + 629 <--x 291 + 493 <--x 292 + 635 <--x 292 + 643 <--x 292 + 491 <--x 293 + 634 <--x 293 + 642 <--x 293 + 490 <--x 294 + 638 <--x 294 + 644 <--x 294 + 489 <--x 295 + 632 <--x 295 + 651 <--x 295 + 481 <--x 296 + 636 <--x 296 + 651 <--x 296 + 484 <--x 297 + 633 <--x 297 + 648 <--x 297 + 488 <--x 298 + 633 <--x 298 + 649 <--x 298 + 476 <--x 299 + 634 <--x 299 + 637 <--x 299 + 485 <--x 300 + 639 <--x 300 + 645 <--x 300 + 483 <--x 301 + 645 <--x 301 + 650 <--x 301 + 475 <--x 302 + 635 <--x 302 + 641 <--x 302 + 479 <--x 303 + 639 <--x 303 + 649 <--x 303 + 492 <--x 304 + 637 <--x 304 + 640 <--x 304 + 477 <--x 305 + 638 <--x 305 + 642 <--x 305 + 482 <--x 306 + 646 <--x 306 + 648 <--x 306 + 474 <--x 307 + 641 <--x 307 + 650 <--x 307 + 486 <--x 308 + 643 <--x 308 + 644 <--x 308 + 480 <--x 309 + 632 <--x 309 + 647 <--x 309 + 487 <--x 310 + 646 <--x 310 + 647 <--x 310 + 478 <--x 311 + 636 <--x 311 + 640 <--x 311 + 503 <--x 312 + 660 <--x 312 + 668 <--x 312 + 499 <--x 313 + 653 <--x 313 + 667 <--x 313 + 494 <--x 314 + 659 <--x 314 + 668 <--x 314 + 500 <--x 315 + 663 <--x 315 + 669 <--x 315 + 505 <--x 316 + 665 <--x 316 + 666 <--x 316 + 507 <--x 317 + 656 <--x 317 + 664 <--x 317 + 506 <--x 318 + 657 <--x 318 + 663 <--x 318 + 508 <--x 319 + 652 <--x 319 + 662 <--x 319 + 511 <--x 320 + 665 <--x 320 + 667 <--x 320 + 501 <--x 321 + 654 <--x 321 + 661 <--x 321 + 504 <--x 322 + 659 <--x 322 + 661 <--x 322 + 510 <--x 323 + 658 <--x 323 + 660 <--x 323 + 509 <--x 324 + 652 <--x 324 + 671 <--x 324 + 495 <--x 325 + 653 <--x 325 + 656 <--x 325 + 498 <--x 326 + 670 <--x 326 + 671 <--x 326 + 512 <--x 327 + 658 <--x 327 + 664 <--x 327 + 502 <--x 328 + 655 <--x 328 + 657 <--x 328 + 496 <--x 329 + 669 <--x 329 + 670 <--x 329 + 513 <--x 330 + 662 <--x 330 + 666 <--x 330 + 497 <--x 331 + 654 <--x 331 + 655 <--x 331 + 515 <--x 332 + 672 <--x 332 + 677 <--x 332 + 519 <--x 333 + 673 <--x 333 + 675 <--x 333 + 514 <--x 334 + 675 <--x 334 + 676 <--x 334 + 518 <--x 335 + 674 <--x 335 + 676 <--x 335 + 517 <--x 336 + 672 <--x 336 + 674 <--x 336 + 516 <--x 337 + 673 <--x 337 + 677 <--x 337 + 520 <--x 338 + 678 <--x 338 + 682 <--x 338 + 524 <--x 339 + 681 <--x 339 + 682 <--x 339 + 523 <--x 340 + 679 <--x 340 + 680 <--x 340 + 522 <--x 341 + 680 <--x 341 + 683 <--x 341 + 521 <--x 342 + 678 <--x 342 + 683 <--x 342 + 525 <--x 343 + 679 <--x 343 + 681 <--x 343 + 527 <--x 344 + 684 <--x 344 + 687 <--x 344 + 526 <--x 345 + 688 <--x 345 + 689 <--x 345 + 531 <--x 346 + 684 <--x 346 + 685 <--x 346 + 530 <--x 347 + 685 <--x 347 + 686 <--x 347 + 529 <--x 348 + 687 <--x 348 + 689 <--x 348 + 528 <--x 349 + 686 <--x 349 + 688 <--x 349 + 546 <--x 350 + 693 <--x 350 + 708 <--x 350 + 535 <--x 351 + 691 <--x 351 + 699 <--x 351 + 533 <--x 352 + 698 <--x 352 + 700 <--x 352 + 532 <--x 353 + 695 <--x 353 + 697 <--x 353 + 544 <--x 354 + 690 <--x 354 + 701 <--x 354 + 542 <--x 355 + 690 <--x 355 + 703 <--x 355 + 539 <--x 356 + 705 <--x 356 + 709 <--x 356 + 540 <--x 357 + 695 <--x 357 + 696 <--x 357 + 541 <--x 358 + 692 <--x 358 + 697 <--x 358 + 545 <--x 359 + 692 <--x 359 + 699 <--x 359 + 547 <--x 360 + 700 <--x 360 + 703 <--x 360 + 543 <--x 361 + 698 <--x 361 + 706 <--x 361 + 536 <--x 362 + 693 <--x 362 + 707 <--x 362 + 534 <--x 363 + 704 <--x 363 + 705 <--x 363 + 550 <--x 364 + 706 <--x 364 + 709 <--x 364 + 551 <--x 365 + 696 <--x 365 + 702 <--x 365 + 548 <--x 366 + 694 <--x 366 + 701 <--x 366 + 549 <--x 367 + 694 <--x 367 + 702 <--x 367 + 537 <--x 368 + 691 <--x 368 + 708 <--x 368 + 538 <--x 369 + 704 <--x 369 + 707 <--x 369 + 568 <--x 370 + 712 <--x 370 + 724 <--x 370 + 571 <--x 371 + 710 <--x 371 + 716 <--x 371 + 563 <--x 372 + 721 <--x 372 + 727 <--x 372 + 566 <--x 373 + 720 <--x 373 + 722 <--x 373 + 556 <--x 374 + 714 <--x 374 + 726 <--x 374 + 559 <--x 375 + 712 <--x 375 + 722 <--x 375 + 567 <--x 376 + 715 <--x 376 + 725 <--x 376 + 569 <--x 377 + 723 <--x 377 + 724 <--x 377 + 561 <--x 378 + 714 <--x 378 + 725 <--x 378 + 562 <--x 379 + 718 <--x 379 + 726 <--x 379 + 560 <--x 380 + 717 <--x 380 + 727 <--x 380 + 570 <--x 381 + 711 <--x 381 + 720 <--x 381 + 564 <--x 382 + 710 <--x 382 + 717 <--x 382 + 557 <--x 383 + 728 <--x 383 + 729 <--x 383 + 558 <--x 384 + 716 <--x 384 + 718 <--x 384 + 555 <--x 385 + 719 <--x 385 + 721 <--x 385 + 553 <--x 386 + 713 <--x 386 + 719 <--x 386 + 552 <--x 387 + 711 <--x 387 + 729 <--x 387 + 565 <--x 388 + 713 <--x 388 + 723 <--x 388 + 554 <--x 389 + 715 <--x 389 + 728 <--x 389 + 573 <--x 390 + 732 <--x 390 + 733 <--x 390 + 574 <--x 391 + 730 <--x 391 + 731 <--x 391 + 577 <--x 392 + 735 <--x 392 + 736 <--x 392 + 572 <--x 393 + 732 <--x 393 + 734 <--x 393 + 575 <--x 394 + 730 <--x 394 + 736 <--x 394 + 576 <--x 395 + 731 <--x 395 + 734 <--x 395 + 578 <--x 396 + 733 <--x 396 + 735 <--x 396 + 494 <--x 402 + 495 <--x 402 + 496 <--x 402 + 497 <--x 402 + 498 <--x 402 + 499 <--x 402 + 500 <--x 402 + 501 <--x 402 + 502 <--x 402 + 503 <--x 402 + 504 <--x 402 + 505 <--x 402 + 506 <--x 402 + 507 <--x 402 + 508 <--x 402 + 509 <--x 402 + 510 <--x 402 + 511 <--x 402 + 512 <--x 402 + 513 <--x 402 + 532 <--x 406 + 533 <--x 406 + 534 <--x 406 + 535 <--x 406 + 536 <--x 406 + 537 <--x 406 + 538 <--x 406 + 539 <--x 406 + 540 <--x 406 + 541 <--x 406 + 542 <--x 406 + 543 <--x 406 + 544 <--x 406 + 545 <--x 406 + 546 <--x 406 + 547 <--x 406 + 548 <--x 406 + 549 <--x 406 + 550 <--x 406 + 551 <--x 406 + 552 <--x 407 + 553 <--x 407 + 554 <--x 407 + 555 <--x 407 + 556 <--x 407 + 557 <--x 407 + 558 <--x 407 + 559 <--x 407 + 560 <--x 407 + 561 <--x 407 + 562 <--x 407 + 563 <--x 407 + 564 <--x 407 + 565 <--x 407 + 566 <--x 407 + 567 <--x 407 + 568 <--x 407 + 569 <--x 407 + 570 <--x 407 + 571 <--x 407 + 421 <--x 409 + 422 <--x 409 + 423 <--x 409 + 424 <--x 409 + 425 <--x 409 + 426 <--x 409 + 427 <--x 409 + 428 <--x 409 + 429 <--x 409 + 430 <--x 409 + 431 <--x 409 + 432 <--x 409 + 433 <--x 409 + 434 <--x 409 + 435 <--x 409 + 436 <--x 409 + 437 <--x 409 + 438 <--x 409 + 439 <--x 409 + 440 <--x 409 + 441 <--x 410 + 442 <--x 410 + 443 <--x 410 + 444 <--x 410 + 445 <--x 410 + 446 <--x 410 + 447 <--x 410 + 448 <--x 410 + 449 <--x 410 + 450 <--x 410 + 451 <--x 410 + 452 <--x 410 + 453 <--x 410 + 454 <--x 410 + 455 <--x 410 + 456 <--x 410 + 457 <--x 410 + 458 <--x 410 + 459 <--x 410 + 460 <--x 410 + 461 <--x 411 + 462 <--x 411 + 463 <--x 411 + 464 <--x 411 + 465 <--x 411 + 466 <--x 411 + 467 <--x 411 + 468 <--x 412 + 469 <--x 412 + 470 <--x 412 + 471 <--x 412 + 472 <--x 412 + 473 <--x 412 + 474 <--x 413 + 475 <--x 413 + 476 <--x 413 + 477 <--x 413 + 478 <--x 413 + 479 <--x 413 + 480 <--x 413 + 481 <--x 413 + 482 <--x 413 + 483 <--x 413 + 484 <--x 413 + 485 <--x 413 + 486 <--x 413 + 487 <--x 413 + 488 <--x 413 + 489 <--x 413 + 490 <--x 413 + 491 <--x 413 + 492 <--x 413 + 493 <--x 413 + 514 <--x 415 + 515 <--x 415 + 516 <--x 415 + 517 <--x 415 + 518 <--x 415 + 519 <--x 415 + 520 <--x 416 + 521 <--x 416 + 522 <--x 416 + 523 <--x 416 + 524 <--x 416 + 525 <--x 416 + 526 <--x 417 + 527 <--x 417 + 528 <--x 417 + 529 <--x 417 + 530 <--x 417 + 531 <--x 417 + 572 <--x 420 + 573 <--x 420 + 574 <--x 420 + 575 <--x 420 + 576 <--x 420 + 577 <--x 420 + 578 <--x 420 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/bench/ops.snap b/rust/kcl-lib/tests/kcl_samples/bench/ops.snap index 5a9d60ddb..73894ee29 100644 --- a/rust/kcl-lib/tests/kcl_samples/bench/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/bench/ops.snap @@ -18,225 +18,13 @@ description: Operations executed bench.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "dividerSketch", + "name": "divider", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "dividerSketch", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "shell", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - }, - "labeledArgs": { - "faces": { - "value": { - "type": "Array", - "value": [ - { - "type": "String", - "value": "end" - } - ] - }, - "sourceRange": [] - }, - "thickness": { - "value": { - "type": "Number", - "value": 1.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "KclStdLibCall", - "name": "shell", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - }, - "labeledArgs": { - "faces": { - "value": { - "type": "Array", - "value": [ - { - "type": "String", - "value": "start" - } - ] - }, - "sourceRange": [] - }, - "thickness": { - "value": { - "type": "Number", - "value": 1.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -278,493 +66,6 @@ description: Operations executed bench.kcl }, "sourceRange": [] }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "dividerSketch", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "dividerSketch", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "shell", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - }, - "labeledArgs": { - "faces": { - "value": { - "type": "Array", - "value": [ - { - "type": "String", - "value": "end" - } - ] - }, - "sourceRange": [] - }, - "thickness": { - "value": { - "type": "Number", - "value": 1.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "KclStdLibCall", - "name": "shell", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - }, - "labeledArgs": { - "faces": { - "value": { - "type": "Array", - "value": [ - { - "type": "String", - "value": "start" - } - ] - }, - "sourceRange": [] - }, - "thickness": { - "value": { - "type": "Number", - "value": 1.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": -28.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "divider", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "dividerSketch", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "dividerSketch", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "shell", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - }, - "labeledArgs": { - "faces": { - "value": { - "type": "Array", - "value": [ - { - "type": "String", - "value": "end" - } - ] - }, - "sourceRange": [] - }, - "thickness": { - "value": { - "type": "Number", - "value": 1.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "KclStdLibCall", - "name": "shell", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - }, - "labeledArgs": { - "faces": { - "value": { - "type": "Array", - "value": [ - { - "type": "String", - "value": "start" - } - ] - }, - "sourceRange": [] - }, - "thickness": { - "value": { - "type": "Number", - "value": 1.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -806,131 +107,6 @@ description: Operations executed bench.kcl }, "sourceRange": [] }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "connectorSketch", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 56.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "connectorSketch", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 56.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -945,7 +121,7 @@ description: Operations executed bench.kcl "offset": { "value": { "type": "Number", - "value": -30.0, + "value": -28.0, "ty": { "type": "Default", "len": { @@ -972,87 +148,6 @@ description: Operations executed bench.kcl }, "sourceRange": [] }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "seatSlatSketch", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 60.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -1094,11 +189,52 @@ description: Operations executed bench.kcl }, "sourceRange": [] }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": -30.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "backSlatsSketch", + "name": "armRest", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "armRest", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} @@ -1121,7 +257,848 @@ description: Operations executed bench.kcl "unlabeledArg": null }, { - "type": "GroupEnd" + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "dividerSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "dividerSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "dividerSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "dividerSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "dividerSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "dividerSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "KclStdLibCall", + "name": "shell", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + }, + "labeledArgs": { + "faces": { + "value": { + "type": "Array", + "value": [ + { + "type": "String", + "value": "end" + } + ] + }, + "sourceRange": [] + }, + "thickness": { + "value": { + "type": "Number", + "value": 1.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "shell", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + }, + "labeledArgs": { + "faces": { + "value": { + "type": "Array", + "value": [ + { + "type": "String", + "value": "end" + } + ] + }, + "sourceRange": [] + }, + "thickness": { + "value": { + "type": "Number", + "value": 1.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "shell", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + }, + "labeledArgs": { + "faces": { + "value": { + "type": "Array", + "value": [ + { + "type": "String", + "value": "end" + } + ] + }, + "sourceRange": [] + }, + "thickness": { + "value": { + "type": "Number", + "value": 1.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "shell", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + }, + "labeledArgs": { + "faces": { + "value": { + "type": "Array", + "value": [ + { + "type": "String", + "value": "start" + } + ] + }, + "sourceRange": [] + }, + "thickness": { + "value": { + "type": "Number", + "value": 1.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "shell", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + }, + "labeledArgs": { + "faces": { + "value": { + "type": "Array", + "value": [ + { + "type": "String", + "value": "start" + } + ] + }, + "sourceRange": [] + }, + "thickness": { + "value": { + "type": "Number", + "value": 1.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "shell", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + }, + "labeledArgs": { + "faces": { + "value": { + "type": "Array", + "value": [ + { + "type": "String", + "value": "start" + } + ] + }, + "sourceRange": [] + }, + "thickness": { + "value": { + "type": "Number", + "value": 1.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "connectorSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 56.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "connectorSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 56.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "seatSlatSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 60.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "backSlatsSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -1167,13 +1144,81 @@ description: Operations executed bench.kcl } }, { - "type": "GroupEnd" + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "armRest", + "name": "armRestPath", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "armRestPath", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} @@ -1210,133 +1255,6 @@ description: Operations executed bench.kcl }, "sourceRange": [] }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "armRestPath", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 20.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "armRestProfile", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "path": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "sweep", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "armRest", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -1371,7 +1289,7 @@ description: Operations executed bench.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "armRestPath", + "name": "armRestProfile", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} @@ -1379,22 +1297,15 @@ description: Operations executed bench.kcl "sourceRange": [] }, { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "armRestProfile", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" + "sourceRange": [] }, { "type": "KclStdLibCall", @@ -1427,33 +1338,59 @@ description: Operations executed bench.kcl "sourceRange": [] }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "armRestProfile", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 20.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } }, "sourceRange": [] }, { "labeledArgs": { - "planeOrSolid": { + "path": { "value": { - "type": "Plane", - "artifact_id": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, "sourceRange": [] } }, - "name": "startSketchOn", + "name": "sweep", "sourceRange": [], "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } }, { "labeledArgs": { @@ -1480,6 +1417,69 @@ description: Operations executed bench.kcl "sourceRange": [] } }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/kcl_samples/bottle/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/bottle/artifact_commands.snap index 9516e3f42..0b291baa8 100644 --- a/rust/kcl-lib/tests/kcl_samples/bottle/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/bottle/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands bottle.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands bottle.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -153,6 +153,14 @@ description: Artifact commands bottle.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_get_all_child_uuids", + "entity_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -173,14 +181,6 @@ description: Artifact commands bottle.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "entity_get_all_child_uuids", - "entity_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -216,6 +216,14 @@ description: Artifact commands bottle.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -227,8 +235,135 @@ description: Artifact commands bottle.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -244,30 +379,12 @@ description: Artifact commands bottle.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -282,39 +399,12 @@ description: Artifact commands bottle.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -329,18 +419,10 @@ description: Artifact commands bottle.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -357,39 +439,12 @@ description: Artifact commands bottle.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -404,39 +459,12 @@ description: Artifact commands bottle.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -451,28 +479,8 @@ description: Artifact commands bottle.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -487,33 +495,6 @@ description: Artifact commands bottle.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 22.5, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -543,8 +524,27 @@ description: Artifact commands bottle.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 22.5, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -570,13 +570,6 @@ description: Artifact commands bottle.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -585,6 +578,40 @@ description: Artifact commands bottle.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -594,34 +621,6 @@ description: Artifact commands bottle.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -636,9 +635,10 @@ description: Artifact commands bottle.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { diff --git a/rust/kcl-lib/tests/kcl_samples/bottle/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/bottle/artifact_graph_flowchart.snap.md index 5c1709bea..566acd678 100644 --- a/rust/kcl-lib/tests/kcl_samples/bottle/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/bottle/artifact_graph_flowchart.snap.md @@ -1,48 +1,48 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[337, 378, 0]"] - 3["Segment
[384, 415, 0]"] - 4["Segment
[421, 516, 0]"] - 5["Segment
[522, 544, 0]"] - 6["Segment
[574, 581, 0]"] - 7[Solid2d] + subgraph path4 [Path] + 4["Path
[337, 378, 0]"] + 6["Segment
[384, 415, 0]"] + 7["Segment
[421, 516, 0]"] + 8["Segment
[522, 544, 0]"] + 9["Segment
[574, 581, 0]"] + 11[Solid2d] end - subgraph path10 [Path] - 10["Path
[738, 788, 0]"] - 11["Segment
[738, 788, 0]"] + subgraph path5 [Path] + 5["Path
[738, 788, 0]"] + 10["Segment
[738, 788, 0]"] 12[Solid2d] end 1["Plane
[314, 331, 0]"] - 8["Sweep Extrusion
[587, 629, 0]"] - 9["Plane
[738, 788, 0]"] - 13["Sweep Extrusion
[794, 821, 0]"] - 14[Wall] - 15["Cap End"] - 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] - 18["StartSketchOnFace
[695, 732, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 + 2["Plane
[738, 788, 0]"] + 3["StartSketchOnFace
[695, 732, 0]"] + 13["Sweep Extrusion
[587, 629, 0]"] + 14["Sweep Extrusion
[794, 821, 0]"] + 15[Wall] + 16["Cap End"] + 17["SweepEdge Opposite"] + 18["SweepEdge Adjacent"] + 1 --- 4 + 2 <--x 3 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 9 --- 10 - 10 --- 11 - 10 ---- 13 - 10 --- 12 - 11 --- 14 - 11 --- 16 - 11 --- 17 - 11 <--x 9 - 13 --- 14 - 13 --- 15 - 13 --- 16 - 13 --- 17 - 16 <--x 14 - 16 <--x 15 - 17 <--x 14 - 9 <--x 18 + 10 <--x 2 + 4 --- 6 + 4 --- 7 + 4 --- 8 + 4 --- 9 + 4 --- 11 + 4 ---- 13 + 5 --- 10 + 5 --- 12 + 5 ---- 14 + 10 --- 15 + 10 --- 17 + 10 --- 18 + 14 --- 15 + 14 --- 16 + 14 --- 17 + 14 --- 18 + 17 <--x 15 + 18 <--x 15 + 17 <--x 16 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/bracket/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/bracket/artifact_commands.snap index 53640ad02..d11878bd1 100644 --- a/rust/kcl-lib/tests/kcl_samples/bracket/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/bracket/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands bracket.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands bracket.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -234,6 +234,14 @@ description: Artifact commands bracket.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -245,8 +253,162 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -262,30 +424,12 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -300,39 +444,12 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -347,39 +464,12 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -394,18 +484,10 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -422,39 +504,12 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -469,39 +524,12 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -516,28 +544,8 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -552,33 +560,6 @@ description: Artifact commands bracket.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -19.049999999999997, - "y": 19.049999999999997, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -608,8 +589,27 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -19.049999999999997, + "y": 19.049999999999997, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -748,82 +748,24 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -10.029347184188834, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -853,83 +795,11 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -10.029347184188834, + "faces": null, + "opposite": "None" } }, { @@ -943,89 +813,6 @@ description: Artifact commands bracket.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -1041,7 +828,8 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -1052,6 +840,158 @@ description: Artifact commands bracket.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1065,7 +1005,7 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1074,17 +1014,16 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1103,9 +1042,78 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -1120,33 +1128,6 @@ description: Artifact commands bracket.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 34.925, - "y": 23.8125, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1176,8 +1157,27 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 34.925, + "y": 23.8125, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -1232,88 +1232,6 @@ description: Artifact commands bracket.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -12.315347184188834, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1341,7 +1259,11 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": -12.315347184188834, + "faces": null, + "opposite": "None" } }, { @@ -1352,6 +1274,82 @@ description: Artifact commands bracket.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1365,45 +1363,7 @@ description: Artifact commands bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1460,6 +1420,16 @@ description: Artifact commands bracket.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1472,6 +1442,16 @@ description: Artifact commands bracket.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1519,5 +1499,25 @@ description: Artifact commands bracket.kcl "tolerance": 0.0000001, "cut_type": "fillet" } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/bracket/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/bracket/artifact_graph_flowchart.snap.md index 4ba0f8653..9e503f0b1 100644 --- a/rust/kcl-lib/tests/kcl_samples/bracket/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/bracket/artifact_graph_flowchart.snap.md @@ -1,172 +1,172 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[2065, 2090, 0]"] - 3["Segment
[2096, 2154, 0]"] - 4["Segment
[2160, 2199, 0]"] - 5["Segment
[2205, 2252, 0]"] - 6["Segment
[2258, 2304, 0]"] - 7["Segment
[2310, 2349, 0]"] - 8["Segment
[2355, 2425, 0]"] - 9["Segment
[2431, 2438, 0]"] - 10[Solid2d] + subgraph path4 [Path] + 4["Path
[2065, 2090, 0]"] + 7["Segment
[2096, 2154, 0]"] + 8["Segment
[2160, 2199, 0]"] + 9["Segment
[2205, 2252, 0]"] + 10["Segment
[2258, 2304, 0]"] + 11["Segment
[2310, 2349, 0]"] + 12["Segment
[2355, 2425, 0]"] + 13["Segment
[2431, 2438, 0]"] + 17[Solid2d] end - subgraph path32 [Path] - 32["Path
[2583, 2773, 0]"] - 33["Segment
[2583, 2773, 0]"] - 34[Solid2d] + subgraph path5 [Path] + 5["Path
[2583, 2773, 0]"] + 14["Segment
[2583, 2773, 0]"] + 16[Solid2d] end - subgraph path42 [Path] - 42["Path
[3207, 3409, 0]"] - 43["Segment
[3207, 3409, 0]"] - 44[Solid2d] + subgraph path6 [Path] + 6["Path
[3207, 3409, 0]"] + 15["Segment
[3207, 3409, 0]"] + 18[Solid2d] end 1["Plane
[2042, 2059, 0]"] - 11["Sweep Extrusion
[2444, 2470, 0]"] - 12[Wall] - 13[Wall] - 14[Wall] - 15[Wall] - 16[Wall] - 17[Wall] - 18["Cap Start"] - 19["Cap End"] - 20["SweepEdge Opposite"] - 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] - 23["SweepEdge Adjacent"] - 24["SweepEdge Opposite"] - 25["SweepEdge Adjacent"] - 26["SweepEdge Opposite"] - 27["SweepEdge Adjacent"] - 28["SweepEdge Opposite"] - 29["SweepEdge Adjacent"] - 30["SweepEdge Opposite"] - 31["SweepEdge Adjacent"] - 35["Sweep Extrusion
[3059, 3096, 0]"] - 36[Wall] + 2["StartSketchOnFace
[3161, 3201, 0]"] + 3["StartSketchOnFace
[2537, 2577, 0]"] + 19["Sweep Extrusion
[2444, 2470, 0]"] + 20["Sweep Extrusion
[3059, 3096, 0]"] + 21["Sweep Extrusion
[3059, 3096, 0]"] + 22["Sweep Extrusion
[3059, 3096, 0]"] + 23["Sweep Extrusion
[3059, 3096, 0]"] + 24["Sweep Extrusion
[3524, 3561, 0]"] + 25["Sweep Extrusion
[3524, 3561, 0]"] + 26[Wall] + 27[Wall] + 28[Wall] + 29[Wall] + 30[Wall] + 31[Wall] + 32[Wall] + 33[Wall] + 34["Cap Start"] + 35["Cap End"] + 36["SweepEdge Opposite"] 37["SweepEdge Opposite"] - 38["SweepEdge Adjacent"] - 39["Sweep Extrusion
[3059, 3096, 0]"] - 40["Sweep Extrusion
[3059, 3096, 0]"] - 41["Sweep Extrusion
[3059, 3096, 0]"] - 45["Sweep Extrusion
[3524, 3561, 0]"] - 46[Wall] - 47["SweepEdge Opposite"] + 38["SweepEdge Opposite"] + 39["SweepEdge Opposite"] + 40["SweepEdge Opposite"] + 41["SweepEdge Opposite"] + 42["SweepEdge Opposite"] + 43["SweepEdge Opposite"] + 44["SweepEdge Adjacent"] + 45["SweepEdge Adjacent"] + 46["SweepEdge Adjacent"] + 47["SweepEdge Adjacent"] 48["SweepEdge Adjacent"] - 49["Sweep Extrusion
[3524, 3561, 0]"] - 50["EdgeCut Fillet
[3578, 3658, 0]"] - 51["EdgeCut Fillet
[3659, 3736, 0]"] - 52["EdgeCut Fillet
[3762, 3904, 0]"] - 53["EdgeCut Fillet
[3762, 3904, 0]"] + 49["SweepEdge Adjacent"] + 50["SweepEdge Adjacent"] + 51["SweepEdge Adjacent"] + 52["EdgeCut Fillet
[3578, 3658, 0]"] + 53["EdgeCut Fillet
[3659, 3736, 0]"] 54["EdgeCut Fillet
[3762, 3904, 0]"] 55["EdgeCut Fillet
[3762, 3904, 0]"] - 56["StartSketchOnFace
[2537, 2577, 0]"] - 57["StartSketchOnFace
[3161, 3201, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 --- 8 - 2 --- 9 - 2 ---- 11 - 2 --- 10 - 3 --- 12 - 3 --- 20 - 3 --- 21 - 3 x--> 18 + 56["EdgeCut Fillet
[3762, 3904, 0]"] + 57["EdgeCut Fillet
[3762, 3904, 0]"] + 1 --- 4 + 33 x--> 2 + 32 x--> 3 + 4 --- 7 + 4 --- 8 + 4 --- 9 + 4 --- 10 + 4 --- 11 + 4 --- 12 4 --- 13 - 4 --- 22 - 4 --- 23 - 4 --- 52 - 4 x--> 18 + 4 --- 17 + 4 ---- 19 5 --- 14 - 5 --- 24 - 5 --- 25 - 5 x--> 18 + 5 --- 16 + 5 ---- 21 + 32 --- 5 6 --- 15 - 6 --- 26 - 6 --- 27 - 6 x--> 18 - 7 --- 16 - 7 --- 28 - 7 --- 29 - 7 --- 54 - 7 x--> 18 - 8 --- 17 + 6 --- 18 + 6 ---- 24 + 33 --- 6 + 7 --- 31 + 7 x--> 34 + 7 --- 42 + 7 --- 50 8 --- 30 - 8 --- 31 - 8 x--> 18 - 11 --- 12 - 11 --- 13 - 11 --- 14 - 11 --- 15 - 11 --- 16 - 11 --- 17 - 11 --- 18 - 11 --- 19 - 11 --- 20 - 11 --- 21 - 11 --- 22 - 11 --- 23 - 11 --- 24 - 11 --- 25 - 11 --- 26 - 11 --- 27 - 11 --- 28 + 8 x--> 34 + 8 --- 40 + 8 --- 47 + 8 --- 54 + 9 --- 32 + 9 x--> 34 + 9 --- 41 + 9 --- 51 + 10 --- 33 + 10 x--> 34 + 10 --- 43 + 10 --- 46 11 --- 29 - 11 --- 30 - 11 --- 31 - 14 --- 32 - 15 --- 42 - 20 <--x 12 - 20 <--x 19 - 21 <--x 12 - 21 <--x 13 - 23 <--x 13 - 23 <--x 14 - 24 <--x 14 - 24 <--x 19 - 26 <--x 15 - 26 <--x 19 - 27 <--x 15 - 27 <--x 16 - 29 <--x 16 - 29 <--x 17 - 30 <--x 17 - 30 <--x 19 - 32 --- 33 - 32 ---- 35 - 32 --- 34 - 33 --- 36 - 33 --- 37 - 33 --- 38 - 33 <--x 14 - 35 --- 36 - 35 --- 37 - 35 --- 38 - 37 <--x 36 - 37 <--x 12 - 38 <--x 36 - 42 --- 43 - 42 ---- 45 - 42 --- 44 - 43 --- 46 - 43 --- 47 - 43 --- 48 - 43 <--x 15 - 45 --- 46 - 45 --- 47 - 45 --- 48 - 47 <--x 46 - 47 <--x 17 - 48 <--x 46 - 25 <--x 50 - 31 <--x 51 - 22 <--x 53 - 28 <--x 55 - 14 <--x 56 - 15 <--x 57 + 11 x--> 34 + 11 --- 38 + 11 --- 48 + 11 --- 56 + 12 --- 28 + 12 x--> 34 + 12 --- 39 + 12 --- 49 + 14 --- 27 + 14 x--> 32 + 14 --- 37 + 14 --- 45 + 15 --- 26 + 15 x--> 33 + 15 --- 36 + 15 --- 44 + 19 --- 28 + 19 --- 29 + 19 --- 30 + 19 --- 31 + 19 --- 32 + 19 --- 33 + 19 --- 34 + 19 --- 35 + 19 --- 38 + 19 --- 39 + 19 --- 40 + 19 --- 41 + 19 --- 42 + 19 --- 43 + 19 --- 46 + 19 --- 47 + 19 --- 48 + 19 --- 49 + 19 --- 50 + 19 --- 51 + 21 --- 27 + 21 --- 37 + 21 --- 45 + 24 --- 26 + 24 --- 36 + 24 --- 44 + 36 <--x 26 + 44 <--x 26 + 37 <--x 27 + 45 <--x 27 + 36 <--x 28 + 39 <--x 28 + 48 <--x 28 + 46 <--x 29 + 48 <--x 29 + 47 <--x 30 + 50 <--x 30 + 37 <--x 31 + 42 <--x 31 + 50 <--x 31 + 41 <--x 32 + 47 <--x 32 + 43 <--x 33 + 46 <--x 33 + 39 <--x 35 + 41 <--x 35 + 42 <--x 35 + 43 <--x 35 + 38 <--x 57 + 40 <--x 55 + 49 <--x 53 + 51 <--x 52 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/artifact_commands.snap index e0736bfb2..2b531e986 100644 --- a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/artifact_commands.snap @@ -219,6 +219,14 @@ description: Artifact commands car-wheel-assembly.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -235,33 +243,6 @@ description: Artifact commands car-wheel-assembly.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 76.19999999999999, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -287,6 +268,51 @@ description: Artifact commands car-wheel-assembly.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 76.19999999999999, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -311,33 +337,6 @@ description: Artifact commands car-wheel-assembly.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 38.1, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -367,26 +366,27 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 38.1, + "y": 0.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "start_path" } }, { @@ -416,6 +416,14 @@ description: Artifact commands car-wheel-assembly.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -427,8 +435,54 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -444,30 +498,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -482,18 +518,10 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -510,28 +538,8 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -546,33 +554,6 @@ description: Artifact commands car-wheel-assembly.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 76.19999999999999, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -598,6 +579,51 @@ description: Artifact commands car-wheel-assembly.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 76.19999999999999, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -618,33 +644,6 @@ description: Artifact commands car-wheel-assembly.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 38.1, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -674,26 +673,27 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 38.1, + "y": 0.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "start_path" } }, { @@ -719,6 +719,14 @@ description: Artifact commands car-wheel-assembly.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -730,8 +738,54 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -747,30 +801,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -785,18 +821,10 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -813,28 +841,8 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -849,33 +857,6 @@ description: Artifact commands car-wheel-assembly.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 72.39, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -905,8 +886,27 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 72.39, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -946,82 +946,36 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -24.13, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -1051,83 +1005,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -24.13, + "faces": null, + "opposite": "None" } }, { @@ -1145,83 +1027,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -24.13, + "faces": null, + "opposite": "None" } }, { @@ -1239,7 +1049,8 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -1250,6 +1061,200 @@ description: Artifact commands car-wheel-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1263,7 +1268,7 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1272,17 +1277,25 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1301,86 +1314,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -24.13, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1395,9 +1334,78 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -1412,33 +1420,6 @@ description: Artifact commands car-wheel-assembly.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 65.15, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1468,8 +1449,27 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 65.15, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -1509,82 +1509,36 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -12.065, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -1614,83 +1568,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -12.065, + "faces": null, + "opposite": "None" } }, { @@ -1708,83 +1590,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -12.065, + "faces": null, + "opposite": "None" } }, { @@ -1802,7 +1612,8 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -1813,6 +1624,200 @@ description: Artifact commands car-wheel-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1826,7 +1831,7 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1835,17 +1840,25 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1864,86 +1877,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -12.065, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1958,9 +1897,70 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2089,13 +2089,6 @@ description: Artifact commands car-wheel-assembly.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2116,6 +2109,13 @@ description: Artifact commands car-wheel-assembly.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2202,6 +2202,14 @@ description: Artifact commands car-wheel-assembly.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2231,8 +2239,108 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -2248,30 +2356,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2286,39 +2376,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2333,18 +2396,10 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2357,43 +2412,6 @@ description: Artifact commands car-wheel-assembly.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2408,30 +2426,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2490,13 +2490,6 @@ description: Artifact commands car-wheel-assembly.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2517,6 +2510,13 @@ description: Artifact commands car-wheel-assembly.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2603,6 +2603,14 @@ description: Artifact commands car-wheel-assembly.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2632,8 +2640,108 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -2649,30 +2757,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2687,39 +2777,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2734,18 +2797,10 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2758,43 +2813,6 @@ description: Artifact commands car-wheel-assembly.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2809,30 +2827,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2875,507 +2875,6 @@ description: Artifact commands car-wheel-assembly.kcl "hide": true } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": -0.01999600119960014, - "y": 0.0, - "z": 0.9998000599800071 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 82.55, - "y": -17.779999999999998, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "bezier", - "control1": { - "x": 84.1829, - "y": -5.0, - "z": 0.0 - }, - "control2": { - "x": 73.66, - "y": -23.3333, - "z": 0.0 - }, - "end": { - "x": 147.32, - "y": -35.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -16.0867, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "bezier", - "control1": { - "x": -58.928, - "y": 5.0, - "z": 0.0 - }, - "control2": { - "x": -58.928, - "y": 23.3333, - "z": 0.0 - }, - "end": { - "x": -147.32, - "y": 35.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 82.55, - "y": -17.78, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": -0.01999600119960014, - "y": 0.0, - "z": 0.9998000599800071 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 24.13, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "entity_circular_pattern", - "entity_id": "[uuid]", - "axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "center": { - "x": 0.0, - "y": -50800.0, - "z": 0.0 - }, - "num_repetitions": 5, - "arc_degrees": 360.0, - "rotate_duplicates": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -3411,8 +2910,8 @@ description: Artifact commands car-wheel-assembly.kcl "animated": false, "adjust_camera": false, "planar_normal": { - "x": 0.01999600119960014, - "y": -0.0, + "x": -0.01999600119960014, + "y": 0.0, "z": 0.9998000599800071 } } @@ -3421,7 +2920,16 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.01999600119960014, + "y": -0.0, + "z": 0.9998000599800071 + } } }, { @@ -3437,6 +2945,37 @@ description: Artifact commands car-wheel-assembly.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 82.55, + "y": -17.779999999999998, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -3444,6 +2983,27 @@ description: Artifact commands car-wheel-assembly.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3471,6 +3031,50 @@ description: Artifact commands car-wheel-assembly.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "bezier", + "control1": { + "x": 84.1829, + "y": -5.0, + "z": 0.0 + }, + "control2": { + "x": 73.66, + "y": -23.3333, + "z": 0.0 + }, + "end": { + "x": 147.32, + "y": -35.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -16.0867, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -3515,6 +3119,50 @@ description: Artifact commands car-wheel-assembly.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "bezier", + "control1": { + "x": -58.928, + "y": 5.0, + "z": 0.0 + }, + "control2": { + "x": -58.928, + "y": 23.3333, + "z": 0.0 + }, + "end": { + "x": -147.32, + "y": 35.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 82.55, + "y": -17.78, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -3540,6 +3188,30 @@ description: Artifact commands car-wheel-assembly.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": -0.01999600119960014, + "y": 0.0, + "z": 0.9998000599800071 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -3556,6 +3228,17 @@ description: Artifact commands car-wheel-assembly.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 24.13, + "faces": null, + "opposite": "None" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3567,6 +3250,22 @@ description: Artifact commands car-wheel-assembly.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3578,8 +3277,223 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -3595,26 +3509,7 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -3633,39 +3528,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3680,39 +3548,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3727,39 +3568,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3774,9 +3588,90 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3800,6 +3695,129 @@ description: Artifact commands car-wheel-assembly.kcl "rotate_duplicates": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": -50800.0, + "z": 0.0 + }, + "num_repetitions": 5, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, { "cmdId": "[uuid]", "range": [], @@ -3943,13 +3961,6 @@ description: Artifact commands car-wheel-assembly.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3970,6 +3981,13 @@ description: Artifact commands car-wheel-assembly.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4369,6 +4387,14 @@ description: Artifact commands car-wheel-assembly.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4398,8 +4424,648 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -4415,30 +5081,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4453,39 +5101,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4500,39 +5121,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4547,39 +5141,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4594,39 +5161,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4641,39 +5181,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4688,39 +5201,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4735,39 +5221,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4782,39 +5241,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4829,39 +5261,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4876,39 +5281,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4923,39 +5301,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4970,18 +5321,10 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4998,39 +5341,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5045,39 +5361,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5092,39 +5381,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5139,39 +5401,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5186,39 +5421,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5233,39 +5441,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5280,39 +5461,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5327,39 +5481,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5374,39 +5501,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5421,39 +5521,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5464,43 +5537,6 @@ description: Artifact commands car-wheel-assembly.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5515,30 +5551,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5556,24 +5574,6 @@ description: Artifact commands car-wheel-assembly.kcl "ambient_occlusion": 0.0 } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -5599,6 +5599,14 @@ description: Artifact commands car-wheel-assembly.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5615,33 +5623,6 @@ description: Artifact commands car-wheel-assembly.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 152.39999999999998, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5671,8 +5652,27 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 152.39999999999998, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -5702,13 +5702,6 @@ description: Artifact commands car-wheel-assembly.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5717,6 +5710,40 @@ description: Artifact commands car-wheel-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5726,34 +5753,6 @@ description: Artifact commands car-wheel-assembly.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5768,9 +5767,10 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5790,6 +5790,14 @@ description: Artifact commands car-wheel-assembly.kcl "ambient_occlusion": 0.0 } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5802,33 +5810,6 @@ description: Artifact commands car-wheel-assembly.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 76.19999999999999, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5858,8 +5839,27 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 76.19999999999999, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -5885,13 +5885,6 @@ description: Artifact commands car-wheel-assembly.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5900,6 +5893,40 @@ description: Artifact commands car-wheel-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5909,34 +5936,6 @@ description: Artifact commands car-wheel-assembly.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5951,9 +5950,18 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -5968,33 +5976,6 @@ description: Artifact commands car-wheel-assembly.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -49.149, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6024,8 +6005,27 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -49.149, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -6065,82 +6065,36 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -19.049999999999997, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -6170,83 +6124,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -19.049999999999997, + "faces": null, + "opposite": "None" } }, { @@ -6264,83 +6146,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -19.049999999999997, + "faces": null, + "opposite": "None" } }, { @@ -6358,7 +6168,8 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -6369,6 +6180,200 @@ description: Artifact commands car-wheel-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6382,7 +6387,7 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -6391,17 +6396,25 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -6420,86 +6433,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -19.049999999999997, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6514,9 +6453,70 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6604,6 +6604,14 @@ description: Artifact commands car-wheel-assembly.kcl "ambient_occlusion": 0.0 } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6616,33 +6624,6 @@ description: Artifact commands car-wheel-assembly.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 6.35, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6672,8 +6653,27 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 6.35, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -6699,13 +6699,6 @@ description: Artifact commands car-wheel-assembly.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6714,6 +6707,40 @@ description: Artifact commands car-wheel-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6723,34 +6750,6 @@ description: Artifact commands car-wheel-assembly.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6765,9 +6764,18 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -6782,33 +6790,6 @@ description: Artifact commands car-wheel-assembly.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 152.39999999999998, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6838,8 +6819,27 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 152.39999999999998, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -6865,13 +6865,6 @@ description: Artifact commands car-wheel-assembly.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6880,6 +6873,40 @@ description: Artifact commands car-wheel-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6889,34 +6916,6 @@ description: Artifact commands car-wheel-assembly.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6931,9 +6930,18 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -6948,33 +6956,6 @@ description: Artifact commands car-wheel-assembly.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -49.149, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7004,8 +6985,27 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -49.149, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -7045,82 +7045,36 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -6.35, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -7150,83 +7104,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -6.35, + "faces": null, + "opposite": "None" } }, { @@ -7244,83 +7126,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -6.35, + "faces": null, + "opposite": "None" } }, { @@ -7338,7 +7148,8 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -7349,6 +7160,200 @@ description: Artifact commands car-wheel-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -7362,7 +7367,7 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -7371,17 +7376,25 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -7400,86 +7413,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -6.35, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7494,9 +7433,78 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -7511,33 +7519,6 @@ description: Artifact commands car-wheel-assembly.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 146.04999999999998, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7567,8 +7548,27 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 146.04999999999998, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -7608,82 +7608,168 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 12.7, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -7713,83 +7799,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 12.7, + "faces": null, + "opposite": "None" } }, { @@ -7807,83 +7821,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 12.7, + "faces": null, + "opposite": "None" } }, { @@ -7901,83 +7843,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 12.7, + "faces": null, + "opposite": "None" } }, { @@ -7995,83 +7865,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 12.7, + "faces": null, + "opposite": "None" } }, { @@ -8089,83 +7887,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 12.7, + "faces": null, + "opposite": "None" } }, { @@ -8183,83 +7909,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 12.7, + "faces": null, + "opposite": "None" } }, { @@ -8277,83 +7931,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 12.7, + "faces": null, + "opposite": "None" } }, { @@ -8367,89 +7949,6 @@ description: Artifact commands car-wheel-assembly.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -8465,7 +7964,8 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -8476,6 +7976,662 @@ description: Artifact commands car-wheel-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -8489,7 +8645,7 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -8498,17 +8654,124 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -8527,86 +8790,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 12.7, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8621,86 +8810,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 12.7, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8715,86 +8830,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 12.7, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8809,86 +8850,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 12.7, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8903,86 +8870,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 12.7, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8997,86 +8890,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 12.7, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -9091,9 +8910,190 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -9108,13 +9108,6 @@ description: Artifact commands car-wheel-assembly.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -9135,6 +9128,13 @@ description: Artifact commands car-wheel-assembly.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -9248,223 +9248,36 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -3.175, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -9494,224 +9307,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -3.175, + "faces": null, + "opposite": "None" } }, { @@ -9729,224 +9329,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -3.175, + "faces": null, + "opposite": "None" } }, { @@ -9964,7 +9351,8 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -9975,6 +9363,605 @@ description: Artifact commands car-wheel-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -9988,228 +9975,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -3.175, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -10223,7 +9993,7 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -10232,17 +10002,7 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -10261,39 +10021,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -10308,39 +10041,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -10355,39 +10061,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -10402,9 +10081,330 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10419,13 +10419,6 @@ description: Artifact commands car-wheel-assembly.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -10446,6 +10439,13 @@ description: Artifact commands car-wheel-assembly.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -10559,223 +10559,36 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -3.175, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -10805,224 +10618,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -3.175, + "faces": null, + "opposite": "None" } }, { @@ -11040,224 +10640,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -3.175, + "faces": null, + "opposite": "None" } }, { @@ -11275,7 +10662,8 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -11286,6 +10674,605 @@ description: Artifact commands car-wheel-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -11299,228 +11286,11 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -3.175, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11534,7 +11304,7 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -11543,17 +11313,7 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -11572,39 +11332,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11619,39 +11352,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11666,39 +11372,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11713,9 +11392,330 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11844,13 +11844,6 @@ description: Artifact commands car-wheel-assembly.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11871,6 +11864,13 @@ description: Artifact commands car-wheel-assembly.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -12143,6 +12143,14 @@ description: Artifact commands car-wheel-assembly.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -12172,8 +12180,459 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -12189,30 +12648,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12227,39 +12668,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12274,39 +12688,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12321,39 +12708,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12368,39 +12728,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12415,39 +12748,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12462,39 +12768,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12509,39 +12788,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12556,18 +12808,10 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12584,39 +12828,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12631,39 +12848,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12678,39 +12868,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12725,39 +12888,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12772,39 +12908,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12819,39 +12928,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12866,39 +12948,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12909,43 +12964,6 @@ description: Artifact commands car-wheel-assembly.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12960,30 +12978,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -13042,13 +13042,6 @@ description: Artifact commands car-wheel-assembly.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -13062,6 +13055,15 @@ description: Artifact commands car-wheel-assembly.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -13069,6 +13071,13 @@ description: Artifact commands car-wheel-assembly.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -13212,6 +13221,14 @@ description: Artifact commands car-wheel-assembly.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -13241,8 +13258,243 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -13258,30 +13510,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -13296,39 +13530,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -13343,39 +13550,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -13390,39 +13570,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -13437,18 +13590,10 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13465,39 +13610,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -13512,39 +13630,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -13559,39 +13650,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -13602,43 +13666,6 @@ description: Artifact commands car-wheel-assembly.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -13653,30 +13680,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -13694,15 +13703,6 @@ description: Artifact commands car-wheel-assembly.kcl "ambient_occlusion": 0.0 } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -13744,13 +13744,6 @@ description: Artifact commands car-wheel-assembly.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -13771,6 +13764,13 @@ description: Artifact commands car-wheel-assembly.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -13998,6 +13998,14 @@ description: Artifact commands car-wheel-assembly.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -14027,8 +14035,378 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -14044,30 +14422,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -14082,39 +14442,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -14129,39 +14462,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -14176,39 +14482,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -14223,39 +14502,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -14270,39 +14522,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -14317,39 +14542,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -14364,18 +14562,10 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -14392,39 +14582,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -14439,39 +14602,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -14486,39 +14622,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -14533,39 +14642,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -14580,39 +14662,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -14623,43 +14678,6 @@ description: Artifact commands car-wheel-assembly.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -14674,30 +14692,12 @@ description: Artifact commands car-wheel-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], diff --git a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/artifact_graph_flowchart.snap.md index 78a897cb2..214b86b96 100644 --- a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/artifact_graph_flowchart.snap.md @@ -1,381 +1,335 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[571, 622, 9]"] - 3["Segment
[571, 622, 9]"] - 4[Solid2d] - end subgraph path11 [Path] - 11["Path
[812, 868, 9]"] - 12["Segment
[812, 868, 9]"] - 13[Solid2d] + 11["Path
[354, 410, 8]"] + 34["Segment
[354, 410, 8]"] + 154[Solid2d] end - subgraph path19 [Path] - 19["Path
[998, 1051, 9]"] - 20["Segment
[998, 1051, 9]"] - 21[Solid2d] + subgraph path12 [Path] + 12["Path
[434, 490, 8]"] + 35["Segment
[434, 490, 8]"] + 162[Solid2d] end - subgraph path30 [Path] - 30["Path
[1439, 1479, 9]"] - 31["Segment
[1439, 1479, 9]"] - 32[Solid2d] + subgraph path13 [Path] + 13["Path
[657, 713, 8]"] + 36["Segment
[657, 713, 8]"] + 148[Solid2d] end - subgraph path38 [Path] - 38["Path
[1588, 1639, 9]"] - 39["Segment
[1588, 1639, 9]"] - 40[Solid2d] - end - subgraph path47 [Path] - 47["Path
[1777, 1830, 9]"] - 48["Segment
[1777, 1830, 9]"] - 49[Solid2d] - end - subgraph path58 [Path] - 58["Path
[2078, 2150, 9]"] - 59["Segment
[2078, 2150, 9]"] - 60[Solid2d] - end - subgraph path81 [Path] - 81["Path
[2412, 2443, 9]"] - 82["Segment
[2449, 2469, 9]"] - 83["Segment
[2475, 2495, 9]"] - 84["Segment
[2501, 2522, 9]"] - 85["Segment
[2528, 2584, 9]"] - 86["Segment
[2590, 2597, 9]"] - 87[Solid2d] - end - subgraph path106 [Path] - 106["Path
[2904, 2936, 9]"] - 107["Segment
[2942, 2963, 9]"] - 108["Segment
[2969, 2989, 9]"] - 109["Segment
[2995, 3015, 9]"] - 110["Segment
[3021, 3077, 9]"] - 111["Segment
[3083, 3090, 9]"] - 112[Solid2d] - end - subgraph path132 [Path] - 132["Path
[354, 410, 8]"] - 133["Segment
[354, 410, 8]"] - 134[Solid2d] - end - subgraph path135 [Path] - 135["Path
[434, 490, 8]"] - 136["Segment
[434, 490, 8]"] - 137[Solid2d] - end - subgraph path144 [Path] - 144["Path
[657, 713, 8]"] - 145["Segment
[657, 713, 8]"] - 146[Solid2d] - end - subgraph path147 [Path] - 147["Path
[737, 793, 8]"] - 148["Segment
[737, 793, 8]"] - 149[Solid2d] - end - subgraph path156 [Path] - 156["Path
[939, 993, 8]"] - 157["Segment
[939, 993, 8]"] + subgraph path14 [Path] + 14["Path
[737, 793, 8]"] + 37["Segment
[737, 793, 8]"] 158[Solid2d] end - subgraph path167 [Path] - 167["Path
[1276, 1331, 8]"] - 168["Segment
[1276, 1331, 8]"] - 169[Solid2d] + subgraph path15 [Path] + 15["Path
[939, 993, 8]"] + 38["Segment
[939, 993, 8]"] + 153[Solid2d] end - subgraph path179 [Path] - 179["Path
[1689, 1735, 8]"] - 180["Segment
[1741, 1793, 8]"] - 181["Segment
[1799, 1872, 8]"] - 182["Segment
[1878, 1900, 8]"] - 183["Segment
[1906, 1962, 8]"] - 184["Segment
[1968, 1975, 8]"] - 185[Solid2d] + subgraph path16 [Path] + 16["Path
[1276, 1331, 8]"] + 39["Segment
[1276, 1331, 8]"] + 145[Solid2d] end - subgraph path195 [Path] - 195["Path
[2107, 2153, 8]"] - 196["Segment
[2159, 2211, 8]"] - 197["Segment
[2217, 2292, 8]"] - 198["Segment
[2298, 2335, 8]"] - 199["Segment
[2341, 2397, 8]"] - 200["Segment
[2403, 2410, 8]"] - 201[Solid2d] + subgraph path17 [Path] + 17["Path
[1689, 1735, 8]"] + 40["Segment
[1741, 1793, 8]"] + 41["Segment
[1799, 1872, 8]"] + 42["Segment
[1878, 1900, 8]"] + 43["Segment
[1906, 1962, 8]"] + 44["Segment
[1968, 1975, 8]"] + 150[Solid2d] end - subgraph path212 [Path] - 212["Path
[2891, 2938, 8]"] - 213["Segment
[2946, 3283, 8]"] - 214["Segment
[3291, 3323, 8]"] - 215["Segment
[3331, 3672, 8]"] - 216["Segment
[3680, 3736, 8]"] - 217["Segment
[3744, 3751, 8]"] - 218[Solid2d] + subgraph path18 [Path] + 18["Path
[2107, 2153, 8]"] + 45["Segment
[2159, 2211, 8]"] + 46["Segment
[2217, 2292, 8]"] + 47["Segment
[2298, 2335, 8]"] + 48["Segment
[2341, 2397, 8]"] + 49["Segment
[2403, 2410, 8]"] + 146[Solid2d] end - subgraph path235 [Path] - 235["Path
[2891, 2938, 8]"] - 236["Segment
[2946, 3283, 8]"] - 237["Segment
[3291, 3323, 8]"] - 238["Segment
[3331, 3672, 8]"] - 239["Segment
[3680, 3736, 8]"] - 240["Segment
[3744, 3751, 8]"] - 241[Solid2d] + subgraph path19 [Path] + 19["Path
[2891, 2938, 8]"] + 50["Segment
[2946, 3283, 8]"] + 52["Segment
[3291, 3323, 8]"] + 54["Segment
[3331, 3672, 8]"] + 56["Segment
[3680, 3736, 8]"] + 59["Segment
[3744, 3751, 8]"] + 149[Solid2d] end - subgraph path258 [Path] - 258["Path
[4279, 4374, 8]"] - 259["Segment
[4380, 4413, 8]"] - 260["Segment
[4419, 4470, 8]"] - 261["Segment
[4476, 4509, 8]"] - 262["Segment
[4515, 4565, 8]"] - 263["Segment
[4571, 4612, 8]"] - 264["Segment
[4618, 4667, 8]"] - 265["Segment
[4673, 4706, 8]"] - 266["Segment
[4712, 4746, 8]"] - 267["Segment
[4752, 4786, 8]"] - 268["Segment
[4792, 4844, 8]"] - 269["Segment
[4850, 4884, 8]"] - 270["Segment
[4890, 4966, 8]"] - 271["Segment
[4972, 5005, 8]"] - 272["Segment
[5011, 5087, 8]"] - 273["Segment
[5093, 5127, 8]"] - 274["Segment
[5133, 5207, 8]"] - 275["Segment
[5213, 5247, 8]"] - 276["Segment
[5253, 5304, 8]"] - 277["Segment
[5310, 5372, 8]"] - 278["Segment
[5378, 5429, 8]"] - 279["Segment
[5435, 5469, 8]"] - 280["Segment
[5475, 5508, 8]"] - 281["Segment
[5514, 5547, 8]"] - 282["Segment
[5553, 5560, 8]"] - 283[Solid2d] + subgraph path20 [Path] + 20["Path
[2891, 2938, 8]"] + 51["Segment
[2946, 3283, 8]"] + 53["Segment
[3291, 3323, 8]"] + 55["Segment
[3331, 3672, 8]"] + 57["Segment
[3680, 3736, 8]"] + 58["Segment
[3744, 3751, 8]"] + 159[Solid2d] end - subgraph path334 [Path] - 334["Path
[693, 733, 11]"] - 335["Segment
[741, 788, 11]"] - 336["Segment
[796, 832, 11]"] - 337["Segment
[840, 870, 11]"] - 338["Segment
[878, 917, 11]"] - 339["Segment
[925, 965, 11]"] - 340["Segment
[973, 1008, 11]"] - 341["Segment
[1016, 1054, 11]"] - 342["Segment
[1062, 1084, 11]"] - 343["Segment
[1092, 1099, 11]"] - 344[Solid2d] + subgraph path21 [Path] + 21["Path
[4279, 4374, 8]"] + 60["Segment
[4380, 4413, 8]"] + 61["Segment
[4419, 4470, 8]"] + 62["Segment
[4476, 4509, 8]"] + 63["Segment
[4515, 4565, 8]"] + 64["Segment
[4571, 4612, 8]"] + 65["Segment
[4618, 4667, 8]"] + 66["Segment
[4673, 4706, 8]"] + 67["Segment
[4712, 4746, 8]"] + 68["Segment
[4752, 4786, 8]"] + 69["Segment
[4792, 4844, 8]"] + 70["Segment
[4850, 4884, 8]"] + 71["Segment
[4890, 4966, 8]"] + 72["Segment
[4972, 5005, 8]"] + 73["Segment
[5011, 5087, 8]"] + 74["Segment
[5093, 5127, 8]"] + 75["Segment
[5133, 5207, 8]"] + 76["Segment
[5213, 5247, 8]"] + 77["Segment
[5253, 5304, 8]"] + 78["Segment
[5310, 5372, 8]"] + 79["Segment
[5378, 5429, 8]"] + 80["Segment
[5435, 5469, 8]"] + 81["Segment
[5475, 5508, 8]"] + 82["Segment
[5514, 5547, 8]"] + 83["Segment
[5553, 5560, 8]"] + 155[Solid2d] end - subgraph path365 [Path] - 365["Path
[511, 592, 10]"] - 366["Segment
[598, 699, 10]"] - 367["Segment
[705, 763, 10]"] - 368["Segment
[769, 853, 10]"] - 369["Segment
[859, 918, 10]"] - 370["Segment
[924, 1009, 10]"] - 371["Segment
[1015, 1074, 10]"] - 372["Segment
[1080, 1203, 10]"] - 373["Segment
[1209, 1268, 10]"] - 374["Segment
[1274, 1409, 10]"] - 375["Segment
[1415, 1474, 10]"] - 376["Segment
[1480, 1604, 10]"] - 377["Segment
[1610, 1669, 10]"] - 378["Segment
[1675, 1760, 10]"] - 379["Segment
[1766, 1825, 10]"] - 380["Segment
[1831, 1916, 10]"] - 381["Segment
[1922, 1980, 10]"] - 382["Segment
[1986, 1993, 10]"] - 383[Solid2d] + subgraph path22 [Path] + 22["Path
[571, 622, 10]"] + 84["Segment
[571, 622, 10]"] + 161[Solid2d] end - subgraph path439 [Path] - 439["Path
[487, 544, 12]"] - 440["Segment
[550, 684, 12]"] - 441["Segment
[690, 737, 12]"] - 442["Segment
[743, 840, 12]"] - 443["Segment
[846, 878, 12]"] - 444["Segment
[884, 916, 12]"] - 445["Segment
[922, 953, 12]"] - 446["Segment
[959, 1074, 12]"] - 447["Segment
[1080, 1112, 12]"] - 448["Segment
[1118, 1150, 12]"] - 449["Segment
[1156, 1187, 12]"] - 450["Segment
[1193, 1286, 12]"] - 451["Segment
[1292, 1339, 12]"] - 452["Segment
[1345, 1418, 12]"] - 453["Segment
[1424, 1431, 12]"] - 454[Solid2d] + subgraph path23 [Path] + 23["Path
[812, 868, 10]"] + 85["Segment
[812, 868, 10]"] + 142[Solid2d] end - 1["Plane
[548, 565, 9]"] - 5["Sweep Extrusion
[631, 687, 9]"] - 6[Wall] - 7["Cap Start"] - 8["Cap End"] - 9["SweepEdge Opposite"] - 10["SweepEdge Adjacent"] - 14["Sweep Extrusion
[881, 943, 9]"] - 15[Wall] - 16["Cap End"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 22["Sweep Extrusion
[1198, 1277, 9]"] - 23[Wall] - 24["SweepEdge Opposite"] - 25["SweepEdge Adjacent"] - 26["Sweep Extrusion
[1198, 1277, 9]"] - 27["Sweep Extrusion
[1198, 1277, 9]"] - 28["Sweep Extrusion
[1198, 1277, 9]"] - 29["Sweep Extrusion
[1198, 1277, 9]"] - 33["Sweep Extrusion
[1485, 1518, 9]"] - 34[Wall] - 35["Cap End"] - 36["SweepEdge Opposite"] - 37["SweepEdge Adjacent"] - 41["Sweep Extrusion
[1654, 1719, 9]"] - 42[Wall] - 43["Cap Start"] - 44["Cap End"] - 45["SweepEdge Opposite"] - 46["SweepEdge Adjacent"] - 50["Sweep Extrusion
[1977, 2021, 9]"] - 51[Wall] - 52["SweepEdge Opposite"] - 53["SweepEdge Adjacent"] - 54["Sweep Extrusion
[1977, 2021, 9]"] - 55["Sweep Extrusion
[1977, 2021, 9]"] - 56["Sweep Extrusion
[1977, 2021, 9]"] - 57["Sweep Extrusion
[1977, 2021, 9]"] - 61["Sweep Extrusion
[2305, 2349, 9]"] - 62[Wall] - 63["Cap End"] - 64["SweepEdge Opposite"] - 65["SweepEdge Adjacent"] - 66["Sweep Extrusion
[2305, 2349, 9]"] - 67["Sweep Extrusion
[2305, 2349, 9]"] - 68["Sweep Extrusion
[2305, 2349, 9]"] - 69["Sweep Extrusion
[2305, 2349, 9]"] - 70["Sweep Extrusion
[2305, 2349, 9]"] - 71["Sweep Extrusion
[2305, 2349, 9]"] - 72["Sweep Extrusion
[2305, 2349, 9]"] - 73["Sweep Extrusion
[2305, 2349, 9]"] - 74["Sweep Extrusion
[2305, 2349, 9]"] - 75["Sweep Extrusion
[2305, 2349, 9]"] - 76["Sweep Extrusion
[2305, 2349, 9]"] - 77["Sweep Extrusion
[2305, 2349, 9]"] - 78["Sweep Extrusion
[2305, 2349, 9]"] - 79["Sweep Extrusion
[2305, 2349, 9]"] - 80["Sweep Extrusion
[2305, 2349, 9]"] - 88["Sweep Extrusion
[2763, 2831, 9]"] - 89[Wall] - 90[Wall] - 91[Wall] - 92[Wall] - 93["Cap Start"] - 94["SweepEdge Opposite"] - 95["SweepEdge Adjacent"] - 96["SweepEdge Opposite"] - 97["SweepEdge Adjacent"] - 98["SweepEdge Opposite"] - 99["SweepEdge Adjacent"] - 100["SweepEdge Opposite"] - 101["SweepEdge Adjacent"] - 102["Sweep Extrusion
[2763, 2831, 9]"] - 103["Sweep Extrusion
[2763, 2831, 9]"] - 104["Sweep Extrusion
[2763, 2831, 9]"] - 105["Sweep Extrusion
[2763, 2831, 9]"] - 113["Sweep Extrusion
[3253, 3327, 9]"] - 114[Wall] - 115[Wall] - 116[Wall] - 117[Wall] - 118["Cap Start"] - 119["SweepEdge Opposite"] - 120["SweepEdge Adjacent"] - 121["SweepEdge Opposite"] - 122["SweepEdge Adjacent"] - 123["SweepEdge Opposite"] - 124["SweepEdge Adjacent"] - 125["SweepEdge Opposite"] - 126["SweepEdge Adjacent"] - 127["Sweep Extrusion
[3253, 3327, 9]"] - 128["Sweep Extrusion
[3253, 3327, 9]"] - 129["Sweep Extrusion
[3253, 3327, 9]"] - 130["Sweep Extrusion
[3253, 3327, 9]"] - 131["Plane
[331, 348, 8]"] - 138["Sweep Extrusion
[497, 530, 8]"] - 139[Wall] - 140["Cap Start"] - 141["Cap End"] - 142["SweepEdge Opposite"] - 143["SweepEdge Adjacent"] - 150["Sweep Extrusion
[800, 833, 8]"] - 151[Wall] - 152["Cap Start"] - 153["Cap End"] - 154["SweepEdge Opposite"] - 155["SweepEdge Adjacent"] - 159["Sweep Extrusion
[1140, 1174, 8]"] - 160[Wall] - 161["SweepEdge Opposite"] - 162["SweepEdge Adjacent"] - 163["Sweep Extrusion
[1140, 1174, 8]"] - 164["Sweep Extrusion
[1140, 1174, 8]"] - 165["Sweep Extrusion
[1140, 1174, 8]"] + subgraph path24 [Path] + 24["Path
[998, 1051, 10]"] + 86["Segment
[998, 1051, 10]"] + 147[Solid2d] + end + subgraph path25 [Path] + 25["Path
[1439, 1479, 10]"] + 87["Segment
[1439, 1479, 10]"] + 156[Solid2d] + end + subgraph path26 [Path] + 26["Path
[1588, 1639, 10]"] + 88["Segment
[1588, 1639, 10]"] + 160[Solid2d] + end + subgraph path27 [Path] + 27["Path
[1777, 1830, 10]"] + 89["Segment
[1777, 1830, 10]"] + 152[Solid2d] + end + subgraph path28 [Path] + 28["Path
[2078, 2150, 10]"] + 90["Segment
[2078, 2150, 10]"] + 157[Solid2d] + end + subgraph path29 [Path] + 29["Path
[2412, 2443, 10]"] + 91["Segment
[2449, 2469, 10]"] + 92["Segment
[2475, 2495, 10]"] + 93["Segment
[2501, 2522, 10]"] + 94["Segment
[2528, 2584, 10]"] + 95["Segment
[2590, 2597, 10]"] + 151[Solid2d] + end + subgraph path30 [Path] + 30["Path
[2904, 2936, 10]"] + 96["Segment
[2942, 2963, 10]"] + 97["Segment
[2969, 2989, 10]"] + 98["Segment
[2995, 3015, 10]"] + 99["Segment
[3021, 3077, 10]"] + 100["Segment
[3083, 3090, 10]"] + 163[Solid2d] + end + subgraph path31 [Path] + 31["Path
[511, 592, 11]"] + 101["Segment
[598, 699, 11]"] + 102["Segment
[705, 763, 11]"] + 103["Segment
[769, 853, 11]"] + 104["Segment
[859, 918, 11]"] + 105["Segment
[924, 1009, 11]"] + 106["Segment
[1015, 1074, 11]"] + 107["Segment
[1080, 1203, 11]"] + 108["Segment
[1209, 1268, 11]"] + 109["Segment
[1274, 1409, 11]"] + 110["Segment
[1415, 1474, 11]"] + 111["Segment
[1480, 1604, 11]"] + 112["Segment
[1610, 1669, 11]"] + 113["Segment
[1675, 1760, 11]"] + 114["Segment
[1766, 1825, 11]"] + 115["Segment
[1831, 1916, 11]"] + 116["Segment
[1922, 1980, 11]"] + 117["Segment
[1986, 1993, 11]"] + 143[Solid2d] + end + subgraph path32 [Path] + 32["Path
[693, 733, 12]"] + 118["Segment
[741, 788, 12]"] + 119["Segment
[796, 832, 12]"] + 120["Segment
[840, 870, 12]"] + 121["Segment
[878, 917, 12]"] + 122["Segment
[925, 965, 12]"] + 123["Segment
[973, 1008, 12]"] + 124["Segment
[1016, 1054, 12]"] + 125["Segment
[1062, 1084, 12]"] + 126["Segment
[1092, 1099, 12]"] + 144[Solid2d] + end + subgraph path33 [Path] + 33["Path
[487, 544, 13]"] + 127["Segment
[550, 684, 13]"] + 128["Segment
[690, 737, 13]"] + 129["Segment
[743, 840, 13]"] + 130["Segment
[846, 878, 13]"] + 131["Segment
[884, 916, 13]"] + 132["Segment
[922, 953, 13]"] + 133["Segment
[959, 1074, 13]"] + 134["Segment
[1080, 1112, 13]"] + 135["Segment
[1118, 1150, 13]"] + 136["Segment
[1156, 1187, 13]"] + 137["Segment
[1193, 1286, 13]"] + 138["Segment
[1292, 1339, 13]"] + 139["Segment
[1345, 1418, 13]"] + 140["Segment
[1424, 1431, 13]"] + 141[Solid2d] + end + 1["Plane
[331, 348, 8]"] + 2["Plane
[1666, 1683, 8]"] + 3["Plane
[2084, 2101, 8]"] + 4["Plane
[2860, 2883, 8]"] + 5["Plane
[2860, 2883, 8]"] + 6["Plane
[4256, 4273, 8]"] + 7["Plane
[548, 565, 10]"] + 8["Plane
[488, 505, 11]"] + 9["Plane
[659, 685, 12]"] + 10["Plane
[464, 481, 13]"] + 164["Sweep Extrusion
[497, 530, 8]"] + 165["Sweep Extrusion
[800, 833, 8]"] 166["Sweep Extrusion
[1140, 1174, 8]"] - 170["Sweep Extrusion
[1478, 1512, 8]"] - 171[Wall] - 172["SweepEdge Opposite"] - 173["SweepEdge Adjacent"] + 167["Sweep Extrusion
[1140, 1174, 8]"] + 168["Sweep Extrusion
[1140, 1174, 8]"] + 169["Sweep Extrusion
[1140, 1174, 8]"] + 170["Sweep Extrusion
[1140, 1174, 8]"] + 171["Sweep Extrusion
[1478, 1512, 8]"] + 172["Sweep Extrusion
[1478, 1512, 8]"] + 173["Sweep Extrusion
[1478, 1512, 8]"] 174["Sweep Extrusion
[1478, 1512, 8]"] 175["Sweep Extrusion
[1478, 1512, 8]"] - 176["Sweep Extrusion
[1478, 1512, 8]"] - 177["Sweep Extrusion
[1478, 1512, 8]"] - 178["Plane
[1666, 1683, 8]"] - 186["Sweep Revolve
[1981, 1998, 8]"] - 187[Wall] - 188[Wall] - 189[Wall] - 190[Wall] - 191["SweepEdge Adjacent"] - 192["SweepEdge Adjacent"] - 193["SweepEdge Adjacent"] - 194["Plane
[2084, 2101, 8]"] - 202["Sweep Revolve
[2416, 2433, 8]"] - 203[Wall] - 204[Wall] - 205[Wall] - 206[Wall] - 207["SweepEdge Adjacent"] - 208["SweepEdge Adjacent"] - 209["SweepEdge Adjacent"] - 210["SweepEdge Adjacent"] - 211["Plane
[2860, 2883, 8]"] - 219["Sweep Extrusion
[3799, 3845, 8]"] - 220[Wall] - 221[Wall] - 222[Wall] - 223[Wall] - 224["Cap Start"] - 225["Cap End"] - 226["SweepEdge Opposite"] - 227["SweepEdge Adjacent"] - 228["SweepEdge Opposite"] - 229["SweepEdge Adjacent"] - 230["SweepEdge Opposite"] - 231["SweepEdge Adjacent"] - 232["SweepEdge Opposite"] - 233["SweepEdge Adjacent"] - 234["Plane
[2860, 2883, 8]"] - 242["Sweep Extrusion
[3799, 3845, 8]"] + 176["Sweep Revolve
[1981, 1998, 8]"] + 177["Sweep Revolve
[2416, 2433, 8]"] + 178["Sweep Extrusion
[3799, 3845, 8]"] + 179["Sweep Extrusion
[3799, 3845, 8]"] + 180["Sweep Revolve
[5566, 5583, 8]"] + 181["Sweep Extrusion
[631, 687, 10]"] + 182["Sweep Extrusion
[881, 943, 10]"] + 183["Sweep Extrusion
[1198, 1277, 10]"] + 184["Sweep Extrusion
[1198, 1277, 10]"] + 185["Sweep Extrusion
[1198, 1277, 10]"] + 186["Sweep Extrusion
[1198, 1277, 10]"] + 187["Sweep Extrusion
[1198, 1277, 10]"] + 188["Sweep Extrusion
[1485, 1518, 10]"] + 189["Sweep Extrusion
[1654, 1719, 10]"] + 190["Sweep Extrusion
[1977, 2021, 10]"] + 191["Sweep Extrusion
[1977, 2021, 10]"] + 192["Sweep Extrusion
[1977, 2021, 10]"] + 193["Sweep Extrusion
[1977, 2021, 10]"] + 194["Sweep Extrusion
[1977, 2021, 10]"] + 195["Sweep Extrusion
[2305, 2349, 10]"] + 196["Sweep Extrusion
[2305, 2349, 10]"] + 197["Sweep Extrusion
[2305, 2349, 10]"] + 198["Sweep Extrusion
[2305, 2349, 10]"] + 199["Sweep Extrusion
[2305, 2349, 10]"] + 200["Sweep Extrusion
[2305, 2349, 10]"] + 201["Sweep Extrusion
[2305, 2349, 10]"] + 202["Sweep Extrusion
[2305, 2349, 10]"] + 203["Sweep Extrusion
[2305, 2349, 10]"] + 204["Sweep Extrusion
[2305, 2349, 10]"] + 205["Sweep Extrusion
[2305, 2349, 10]"] + 206["Sweep Extrusion
[2305, 2349, 10]"] + 207["Sweep Extrusion
[2305, 2349, 10]"] + 208["Sweep Extrusion
[2305, 2349, 10]"] + 209["Sweep Extrusion
[2305, 2349, 10]"] + 210["Sweep Extrusion
[2305, 2349, 10]"] + 211["Sweep Extrusion
[2763, 2831, 10]"] + 212["Sweep Extrusion
[2763, 2831, 10]"] + 213["Sweep Extrusion
[2763, 2831, 10]"] + 214["Sweep Extrusion
[2763, 2831, 10]"] + 215["Sweep Extrusion
[2763, 2831, 10]"] + 216["Sweep Extrusion
[3253, 3327, 10]"] + 217["Sweep Extrusion
[3253, 3327, 10]"] + 218["Sweep Extrusion
[3253, 3327, 10]"] + 219["Sweep Extrusion
[3253, 3327, 10]"] + 220["Sweep Extrusion
[3253, 3327, 10]"] + 221["Sweep Revolve
[2031, 2081, 11]"] + 222["Sweep Revolve
[1107, 1124, 12]"] + 223["Sweep Revolve
[1484, 1513, 13]"] + 224[Wall] + 225[Wall] + 226[Wall] + 227[Wall] + 228[Wall] + 229[Wall] + 230[Wall] + 231[Wall] + 232[Wall] + 233[Wall] + 234[Wall] + 235[Wall] + 236[Wall] + 237[Wall] + 238[Wall] + 239[Wall] + 240[Wall] + 241[Wall] + 242[Wall] 243[Wall] 244[Wall] 245[Wall] 246[Wall] - 247["Cap Start"] - 248["Cap End"] - 249["SweepEdge Opposite"] - 250["SweepEdge Adjacent"] - 251["SweepEdge Opposite"] - 252["SweepEdge Adjacent"] - 253["SweepEdge Opposite"] - 254["SweepEdge Adjacent"] - 255["SweepEdge Opposite"] - 256["SweepEdge Adjacent"] - 257["Plane
[4256, 4273, 8]"] - 284["Sweep Revolve
[5566, 5583, 8]"] + 247[Wall] + 248[Wall] + 249[Wall] + 250[Wall] + 251[Wall] + 252[Wall] + 253[Wall] + 254[Wall] + 255[Wall] + 256[Wall] + 257[Wall] + 258[Wall] + 259[Wall] + 260[Wall] + 261[Wall] + 262[Wall] + 263[Wall] + 264[Wall] + 265[Wall] + 266[Wall] + 267[Wall] + 268[Wall] + 269[Wall] + 270[Wall] + 271[Wall] + 272[Wall] + 273[Wall] + 274[Wall] + 275[Wall] + 276[Wall] + 277[Wall] + 278[Wall] + 279[Wall] + 280[Wall] + 281[Wall] + 282[Wall] + 283[Wall] + 284[Wall] 285[Wall] 286[Wall] 287[Wall] @@ -400,121 +354,167 @@ flowchart LR 306[Wall] 307[Wall] 308[Wall] - 309["SweepEdge Adjacent"] - 310["SweepEdge Adjacent"] - 311["SweepEdge Adjacent"] - 312["SweepEdge Adjacent"] - 313["SweepEdge Adjacent"] - 314["SweepEdge Adjacent"] - 315["SweepEdge Adjacent"] - 316["SweepEdge Adjacent"] - 317["SweepEdge Adjacent"] - 318["SweepEdge Adjacent"] - 319["SweepEdge Adjacent"] - 320["SweepEdge Adjacent"] - 321["SweepEdge Adjacent"] - 322["SweepEdge Adjacent"] - 323["SweepEdge Adjacent"] - 324["SweepEdge Adjacent"] - 325["SweepEdge Adjacent"] - 326["SweepEdge Adjacent"] - 327["SweepEdge Adjacent"] - 328["SweepEdge Adjacent"] - 329["SweepEdge Adjacent"] - 330["SweepEdge Adjacent"] - 331["SweepEdge Adjacent"] - 332["SweepEdge Adjacent"] - 333["Plane
[659, 685, 11]"] - 345["Sweep Revolve
[1107, 1124, 11]"] - 346[Wall] - 347[Wall] - 348[Wall] - 349[Wall] - 350[Wall] - 351[Wall] - 352[Wall] - 353[Wall] - 354[Wall] - 355["SweepEdge Adjacent"] - 356["SweepEdge Adjacent"] - 357["SweepEdge Adjacent"] - 358["SweepEdge Adjacent"] - 359["SweepEdge Adjacent"] - 360["SweepEdge Adjacent"] - 361["SweepEdge Adjacent"] - 362["SweepEdge Adjacent"] - 363["SweepEdge Adjacent"] - 364["Plane
[488, 505, 10]"] - 384["Sweep Revolve
[2031, 2081, 10]"] - 385[Wall] - 386[Wall] - 387[Wall] - 388[Wall] - 389[Wall] - 390[Wall] - 391[Wall] - 392[Wall] - 393[Wall] - 394[Wall] - 395[Wall] - 396[Wall] - 397[Wall] - 398[Wall] - 399[Wall] - 400[Wall] - 401[Wall] - 402["Cap Start"] - 403["Cap End"] - 404["SweepEdge Opposite"] + 309[Wall] + 310[Wall] + 311[Wall] + 312[Wall] + 313[Wall] + 314[Wall] + 315[Wall] + 316[Wall] + 317[Wall] + 318[Wall] + 319[Wall] + 320[Wall] + 321[Wall] + 322[Wall] + 323["Cap Start"] + 324["Cap Start"] + 325["Cap Start"] + 326["Cap Start"] + 327["Cap Start"] + 328["Cap Start"] + 329["Cap Start"] + 330["Cap Start"] + 331["Cap Start"] + 332["Cap End"] + 333["Cap End"] + 334["Cap End"] + 335["Cap End"] + 336["Cap End"] + 337["Cap End"] + 338["Cap End"] + 339["Cap End"] + 340["Cap End"] + 341["Cap End"] + 342["SweepEdge Opposite"] + 343["SweepEdge Opposite"] + 344["SweepEdge Opposite"] + 345["SweepEdge Opposite"] + 346["SweepEdge Opposite"] + 347["SweepEdge Opposite"] + 348["SweepEdge Opposite"] + 349["SweepEdge Opposite"] + 350["SweepEdge Opposite"] + 351["SweepEdge Opposite"] + 352["SweepEdge Opposite"] + 353["SweepEdge Opposite"] + 354["SweepEdge Opposite"] + 355["SweepEdge Opposite"] + 356["SweepEdge Opposite"] + 357["SweepEdge Opposite"] + 358["SweepEdge Opposite"] + 359["SweepEdge Opposite"] + 360["SweepEdge Opposite"] + 361["SweepEdge Opposite"] + 362["SweepEdge Opposite"] + 363["SweepEdge Opposite"] + 364["SweepEdge Opposite"] + 365["SweepEdge Opposite"] + 366["SweepEdge Opposite"] + 367["SweepEdge Opposite"] + 368["SweepEdge Opposite"] + 369["SweepEdge Opposite"] + 370["SweepEdge Opposite"] + 371["SweepEdge Opposite"] + 372["SweepEdge Opposite"] + 373["SweepEdge Opposite"] + 374["SweepEdge Opposite"] + 375["SweepEdge Opposite"] + 376["SweepEdge Opposite"] + 377["SweepEdge Opposite"] + 378["SweepEdge Opposite"] + 379["SweepEdge Opposite"] + 380["SweepEdge Opposite"] + 381["SweepEdge Opposite"] + 382["SweepEdge Opposite"] + 383["SweepEdge Opposite"] + 384["SweepEdge Opposite"] + 385["SweepEdge Opposite"] + 386["SweepEdge Adjacent"] + 387["SweepEdge Adjacent"] + 388["SweepEdge Adjacent"] + 389["SweepEdge Adjacent"] + 390["SweepEdge Adjacent"] + 391["SweepEdge Adjacent"] + 392["SweepEdge Adjacent"] + 393["SweepEdge Adjacent"] + 394["SweepEdge Adjacent"] + 395["SweepEdge Adjacent"] + 396["SweepEdge Adjacent"] + 397["SweepEdge Adjacent"] + 398["SweepEdge Adjacent"] + 399["SweepEdge Adjacent"] + 400["SweepEdge Adjacent"] + 401["SweepEdge Adjacent"] + 402["SweepEdge Adjacent"] + 403["SweepEdge Adjacent"] + 404["SweepEdge Adjacent"] 405["SweepEdge Adjacent"] - 406["SweepEdge Opposite"] + 406["SweepEdge Adjacent"] 407["SweepEdge Adjacent"] - 408["SweepEdge Opposite"] + 408["SweepEdge Adjacent"] 409["SweepEdge Adjacent"] - 410["SweepEdge Opposite"] + 410["SweepEdge Adjacent"] 411["SweepEdge Adjacent"] - 412["SweepEdge Opposite"] + 412["SweepEdge Adjacent"] 413["SweepEdge Adjacent"] - 414["SweepEdge Opposite"] + 414["SweepEdge Adjacent"] 415["SweepEdge Adjacent"] - 416["SweepEdge Opposite"] + 416["SweepEdge Adjacent"] 417["SweepEdge Adjacent"] - 418["SweepEdge Opposite"] + 418["SweepEdge Adjacent"] 419["SweepEdge Adjacent"] - 420["SweepEdge Opposite"] + 420["SweepEdge Adjacent"] 421["SweepEdge Adjacent"] - 422["SweepEdge Opposite"] + 422["SweepEdge Adjacent"] 423["SweepEdge Adjacent"] - 424["SweepEdge Opposite"] + 424["SweepEdge Adjacent"] 425["SweepEdge Adjacent"] - 426["SweepEdge Opposite"] + 426["SweepEdge Adjacent"] 427["SweepEdge Adjacent"] - 428["SweepEdge Opposite"] + 428["SweepEdge Adjacent"] 429["SweepEdge Adjacent"] - 430["SweepEdge Opposite"] + 430["SweepEdge Adjacent"] 431["SweepEdge Adjacent"] - 432["SweepEdge Opposite"] + 432["SweepEdge Adjacent"] 433["SweepEdge Adjacent"] - 434["SweepEdge Opposite"] + 434["SweepEdge Adjacent"] 435["SweepEdge Adjacent"] - 436["SweepEdge Opposite"] + 436["SweepEdge Adjacent"] 437["SweepEdge Adjacent"] - 438["Plane
[464, 481, 12]"] - 455["Sweep Revolve
[1484, 1513, 12]"] - 456[Wall] - 457[Wall] - 458[Wall] - 459[Wall] - 460[Wall] - 461[Wall] - 462[Wall] - 463[Wall] - 464[Wall] - 465[Wall] - 466[Wall] - 467[Wall] - 468[Wall] - 469[Wall] + 438["SweepEdge Adjacent"] + 439["SweepEdge Adjacent"] + 440["SweepEdge Adjacent"] + 441["SweepEdge Adjacent"] + 442["SweepEdge Adjacent"] + 443["SweepEdge Adjacent"] + 444["SweepEdge Adjacent"] + 445["SweepEdge Adjacent"] + 446["SweepEdge Adjacent"] + 447["SweepEdge Adjacent"] + 448["SweepEdge Adjacent"] + 449["SweepEdge Adjacent"] + 450["SweepEdge Adjacent"] + 451["SweepEdge Adjacent"] + 452["SweepEdge Adjacent"] + 453["SweepEdge Adjacent"] + 454["SweepEdge Adjacent"] + 455["SweepEdge Adjacent"] + 456["SweepEdge Adjacent"] + 457["SweepEdge Adjacent"] + 458["SweepEdge Adjacent"] + 459["SweepEdge Adjacent"] + 460["SweepEdge Adjacent"] + 461["SweepEdge Adjacent"] + 462["SweepEdge Adjacent"] + 463["SweepEdge Adjacent"] + 464["SweepEdge Adjacent"] + 465["SweepEdge Adjacent"] + 466["SweepEdge Adjacent"] + 467["SweepEdge Adjacent"] + 468["SweepEdge Adjacent"] + 469["SweepEdge Adjacent"] 470["SweepEdge Adjacent"] 471["SweepEdge Adjacent"] 472["SweepEdge Adjacent"] @@ -529,1074 +529,1052 @@ flowchart LR 481["SweepEdge Adjacent"] 482["SweepEdge Adjacent"] 483["SweepEdge Adjacent"] - 484["StartSketchOnFace
[774, 806, 9]"] - 485["StartSketchOnFace
[956, 992, 9]"] - 486["StartSketchOnFace
[1399, 1433, 9]"] - 487["StartSketchOnFace
[1543, 1582, 9]"] - 488["StartSketchOnFace
[1733, 1771, 9]"] - 489["StartSketchOnFace
[2038, 2072, 9]"] - 490["StartSketchOnFace
[2372, 2406, 9]"] - 491["StartSketchOnFace
[2860, 2898, 9]"] - 492["StartSketchOnFace
[617, 651, 8]"] - 493["StartSketchOnFace
[894, 933, 8]"] - 494["StartSketchOnFace
[1236, 1270, 8]"] - 1 --- 2 - 2 --- 3 - 2 ---- 5 - 2 --- 4 - 3 --- 6 - 3 --- 9 - 3 --- 10 - 3 x--> 7 - 5 --- 6 - 5 --- 7 - 5 --- 8 - 5 --- 9 - 5 --- 10 - 7 --- 30 - 7 --- 58 - 7 --- 81 - 8 --- 11 - 9 <--x 6 - 9 <--x 8 - 10 <--x 6 - 11 --- 12 - 11 ---- 14 - 11 --- 13 - 12 --- 15 - 12 --- 17 - 12 --- 18 - 12 <--x 8 - 14 --- 15 - 14 --- 16 - 14 --- 17 - 14 --- 18 - 16 --- 19 - 17 <--x 15 - 17 <--x 16 - 18 <--x 15 - 19 --- 20 - 19 ---- 22 - 19 --- 21 - 20 --- 23 - 20 --- 24 - 20 --- 25 - 20 <--x 16 - 22 --- 23 - 22 --- 24 - 22 --- 25 - 24 <--x 23 - 24 <--x 7 - 25 <--x 23 - 30 --- 31 - 30 ---- 33 - 30 --- 32 - 31 --- 34 - 31 --- 36 - 31 --- 37 - 31 <--x 7 - 33 --- 34 - 33 --- 35 - 33 --- 36 - 33 --- 37 - 35 --- 38 - 36 <--x 34 - 36 <--x 35 - 37 <--x 34 - 38 --- 39 - 38 ---- 41 - 38 --- 40 - 39 --- 42 - 39 --- 45 - 39 --- 46 - 39 x--> 43 - 41 --- 42 - 41 --- 43 - 41 --- 44 - 41 --- 45 - 41 --- 46 - 44 --- 47 - 44 --- 106 - 45 <--x 42 - 45 <--x 44 - 46 <--x 42 - 47 --- 48 - 47 ---- 50 - 47 --- 49 - 48 --- 51 - 48 --- 52 - 48 --- 53 - 48 <--x 44 - 50 --- 51 - 50 --- 52 - 50 --- 53 - 52 <--x 51 - 52 <--x 43 - 53 <--x 51 - 58 --- 59 - 58 ---- 61 - 58 --- 60 - 59 --- 62 - 59 --- 64 - 59 --- 65 - 59 <--x 7 - 61 --- 62 - 61 --- 63 - 61 --- 64 - 61 --- 65 - 64 <--x 62 - 64 <--x 63 - 65 <--x 62 - 81 --- 82 - 81 --- 83 - 81 --- 84 - 81 --- 85 - 81 --- 86 - 81 ---- 88 - 81 --- 87 - 82 --- 89 - 82 --- 94 - 82 --- 95 - 82 <--x 7 - 83 --- 90 - 83 --- 96 - 83 --- 97 - 83 <--x 7 - 84 --- 91 - 84 --- 98 - 84 --- 99 - 84 <--x 7 - 85 --- 92 - 85 --- 100 - 85 --- 101 - 85 <--x 7 - 88 --- 89 - 88 --- 90 - 88 --- 91 - 88 --- 92 - 88 --- 93 - 88 --- 94 - 88 --- 95 - 88 --- 96 - 88 --- 97 - 88 --- 98 - 88 --- 99 - 88 --- 100 - 88 --- 101 - 94 <--x 89 - 94 <--x 93 - 95 <--x 89 - 95 <--x 90 - 96 <--x 90 - 96 <--x 93 - 97 <--x 90 - 97 <--x 91 - 98 <--x 91 - 98 <--x 93 - 99 <--x 91 - 99 <--x 92 - 100 <--x 92 - 100 <--x 93 - 101 <--x 89 - 101 <--x 92 - 106 --- 107 - 106 --- 108 - 106 --- 109 - 106 --- 110 - 106 --- 111 - 106 ---- 113 - 106 --- 112 - 107 --- 117 - 107 --- 125 - 107 --- 126 - 107 <--x 44 - 108 --- 116 - 108 --- 123 - 108 --- 124 - 108 <--x 44 - 109 --- 115 - 109 --- 121 - 109 --- 122 - 109 <--x 44 - 110 --- 114 - 110 --- 119 - 110 --- 120 - 110 <--x 44 - 113 --- 114 - 113 --- 115 - 113 --- 116 - 113 --- 117 - 113 --- 118 - 113 --- 119 - 113 --- 120 - 113 --- 121 - 113 --- 122 - 113 --- 123 - 113 --- 124 - 113 --- 125 - 113 --- 126 - 119 <--x 114 - 119 <--x 118 - 120 <--x 114 - 120 <--x 117 - 121 <--x 115 - 121 <--x 118 - 122 <--x 114 - 122 <--x 115 - 123 <--x 116 - 123 <--x 118 - 124 <--x 115 - 124 <--x 116 - 125 <--x 117 - 125 <--x 118 - 126 <--x 116 - 126 <--x 117 - 131 --- 132 - 131 --- 135 - 132 --- 133 - 132 ---- 138 - 132 --- 134 - 133 --- 139 - 133 --- 142 - 133 --- 143 - 133 x--> 140 - 135 --- 136 - 135 --- 137 - 138 --- 139 - 138 --- 140 - 138 --- 141 - 138 --- 142 - 138 --- 143 - 141 --- 144 - 141 --- 147 - 141 --- 167 - 142 <--x 139 - 142 <--x 141 - 143 <--x 139 - 144 --- 145 - 144 ---- 150 - 144 --- 146 - 145 --- 151 - 145 --- 154 - 145 --- 155 - 145 x--> 152 - 147 --- 148 - 147 --- 149 - 150 --- 151 - 150 --- 152 - 150 --- 153 - 150 --- 154 - 150 --- 155 - 153 --- 156 - 154 <--x 151 - 154 <--x 153 - 155 <--x 151 - 156 --- 157 - 156 ---- 159 - 156 --- 158 - 157 --- 160 - 157 --- 161 - 157 --- 162 - 157 <--x 153 - 159 --- 160 - 159 --- 161 - 159 --- 162 - 161 <--x 160 - 161 <--x 152 - 162 <--x 160 - 167 --- 168 - 167 ---- 170 - 167 --- 169 - 168 --- 171 - 168 --- 172 - 168 --- 173 - 168 <--x 141 - 170 --- 171 - 170 --- 172 - 170 --- 173 - 172 <--x 171 - 172 <--x 140 - 173 <--x 171 - 178 --- 179 - 179 --- 180 - 179 --- 181 - 179 --- 182 - 179 --- 183 - 179 --- 184 - 179 ---- 186 - 179 --- 185 - 180 --- 187 - 180 x--> 191 - 181 --- 188 - 181 --- 191 - 182 --- 189 - 182 --- 192 - 183 --- 190 - 183 --- 193 - 186 --- 187 - 186 --- 188 - 186 --- 189 - 186 --- 190 - 186 <--x 180 - 186 --- 191 - 186 <--x 181 - 186 <--x 182 - 186 --- 192 - 186 <--x 183 - 186 --- 193 - 191 <--x 187 - 191 <--x 188 - 192 <--x 189 - 192 <--x 190 - 193 <--x 190 - 193 <--x 187 - 194 --- 195 - 195 --- 196 - 195 --- 197 - 195 --- 198 - 195 --- 199 - 195 --- 200 - 195 ---- 202 - 195 --- 201 - 196 --- 203 - 196 --- 207 - 197 --- 204 - 197 --- 208 - 198 --- 205 - 198 --- 209 - 199 --- 206 - 199 --- 210 - 202 --- 203 - 202 --- 204 - 202 --- 205 - 202 --- 206 - 202 <--x 196 - 202 --- 207 - 202 <--x 197 - 202 --- 208 - 202 <--x 198 - 202 --- 209 - 202 <--x 199 - 202 --- 210 - 207 <--x 203 - 207 <--x 204 - 208 <--x 204 - 208 <--x 205 - 209 <--x 205 - 209 <--x 206 - 210 <--x 206 - 210 <--x 203 - 211 --- 212 - 212 --- 213 - 212 --- 214 - 212 --- 215 - 212 --- 216 - 212 --- 217 - 212 ---- 219 - 212 --- 218 - 213 --- 223 - 213 --- 232 - 213 --- 233 - 213 x--> 224 - 214 --- 222 - 214 --- 230 - 214 --- 231 - 214 x--> 224 - 215 --- 221 - 215 --- 228 - 215 --- 229 - 215 x--> 224 - 216 --- 220 - 216 --- 226 - 216 --- 227 - 216 x--> 224 - 219 --- 220 - 219 --- 221 - 219 --- 222 - 219 --- 223 - 219 --- 224 - 219 --- 225 - 219 --- 226 - 219 --- 227 - 219 --- 228 - 219 --- 229 - 219 --- 230 - 219 --- 231 - 219 --- 232 - 219 --- 233 - 226 <--x 220 - 226 <--x 225 - 227 <--x 220 - 227 <--x 221 - 228 <--x 221 - 228 <--x 225 - 229 <--x 221 - 229 <--x 222 - 230 <--x 222 - 230 <--x 225 - 231 <--x 222 - 231 <--x 223 - 232 <--x 223 - 232 <--x 225 - 233 <--x 220 - 233 <--x 223 - 234 --- 235 - 235 --- 236 - 235 --- 237 - 235 --- 238 - 235 --- 239 - 235 --- 240 - 235 ---- 242 - 235 --- 241 - 236 --- 246 - 236 --- 255 - 236 --- 256 - 236 x--> 248 - 237 --- 245 - 237 --- 253 - 237 --- 254 - 237 x--> 248 - 238 --- 244 - 238 --- 251 - 238 --- 252 - 238 x--> 248 - 239 --- 243 - 239 --- 249 - 239 --- 250 - 239 x--> 248 - 242 --- 243 - 242 --- 244 - 242 --- 245 - 242 --- 246 - 242 --- 247 - 242 --- 248 - 242 --- 249 - 242 --- 250 - 242 --- 251 - 242 --- 252 - 242 --- 253 - 242 --- 254 - 242 --- 255 - 242 --- 256 - 249 <--x 243 - 249 <--x 247 - 250 <--x 243 - 250 <--x 246 - 251 <--x 244 - 251 <--x 247 - 252 <--x 243 - 252 <--x 244 - 253 <--x 245 - 253 <--x 247 - 254 <--x 244 - 254 <--x 245 - 255 <--x 246 - 255 <--x 247 - 256 <--x 245 - 256 <--x 246 - 257 --- 258 - 258 --- 259 - 258 --- 260 - 258 --- 261 - 258 --- 262 - 258 --- 263 - 258 --- 264 - 258 --- 265 - 258 --- 266 - 258 --- 267 - 258 --- 268 - 258 --- 269 - 258 --- 270 - 258 --- 271 - 258 --- 272 - 258 --- 273 - 258 --- 274 - 258 --- 275 - 258 --- 276 - 258 --- 277 - 258 --- 278 - 258 --- 279 - 258 --- 280 - 258 --- 281 - 258 --- 282 - 258 ---- 284 - 258 --- 283 - 259 --- 285 - 259 --- 309 - 260 --- 286 - 260 --- 310 - 261 --- 287 - 261 --- 311 - 262 --- 288 - 262 --- 312 - 263 --- 289 - 263 --- 313 - 264 --- 290 - 264 --- 314 - 265 --- 291 - 265 --- 315 - 266 --- 292 - 266 --- 316 - 267 --- 293 - 267 --- 317 - 268 --- 294 - 268 --- 318 - 269 --- 295 - 269 --- 319 - 270 --- 296 - 270 --- 320 - 271 --- 297 - 271 --- 321 - 272 --- 298 - 272 --- 322 - 273 --- 299 - 273 --- 323 - 274 --- 300 - 274 --- 324 - 275 --- 301 - 275 --- 325 - 276 --- 302 - 276 --- 326 - 277 --- 303 - 277 --- 327 - 278 --- 304 - 278 --- 328 - 279 --- 305 - 279 --- 329 - 280 --- 306 - 280 --- 330 - 281 --- 307 - 281 --- 331 - 282 --- 308 - 282 --- 332 - 284 --- 285 - 284 --- 286 - 284 --- 287 - 284 --- 288 - 284 --- 289 - 284 --- 290 - 284 --- 291 - 284 --- 292 - 284 --- 293 - 284 --- 294 - 284 --- 295 - 284 --- 296 - 284 --- 297 - 284 --- 298 - 284 --- 299 - 284 --- 300 - 284 --- 301 - 284 --- 302 - 284 --- 303 - 284 --- 304 - 284 --- 305 - 284 --- 306 - 284 --- 307 - 284 --- 308 - 284 <--x 259 - 284 --- 309 - 284 <--x 260 - 284 --- 310 - 284 <--x 261 - 284 --- 311 - 284 <--x 262 - 284 --- 312 - 284 <--x 263 - 284 --- 313 - 284 <--x 264 - 284 --- 314 - 284 <--x 265 - 284 --- 315 - 284 <--x 266 - 284 --- 316 - 284 <--x 267 - 284 --- 317 - 284 <--x 268 - 284 --- 318 - 284 <--x 269 - 284 --- 319 - 284 <--x 270 - 284 --- 320 - 284 <--x 271 - 284 --- 321 - 284 <--x 272 - 284 --- 322 - 284 <--x 273 - 284 --- 323 - 284 <--x 274 - 284 --- 324 - 284 <--x 275 - 284 --- 325 - 284 <--x 276 - 284 --- 326 - 284 <--x 277 - 284 --- 327 - 284 <--x 278 - 284 --- 328 - 284 <--x 279 - 284 --- 329 - 284 <--x 280 - 284 --- 330 - 284 <--x 281 - 284 --- 331 - 284 <--x 282 - 284 --- 332 - 309 <--x 285 - 309 <--x 286 - 310 <--x 286 - 310 <--x 287 - 311 <--x 287 - 311 <--x 288 - 312 <--x 288 - 312 <--x 289 - 313 <--x 289 - 313 <--x 290 - 314 <--x 290 - 314 <--x 291 - 315 <--x 291 - 315 <--x 292 - 316 <--x 292 - 316 <--x 293 - 317 <--x 293 - 317 <--x 294 - 318 <--x 294 - 318 <--x 295 - 319 <--x 295 - 319 <--x 296 - 320 <--x 296 - 320 <--x 297 - 321 <--x 297 - 321 <--x 298 - 322 <--x 298 - 322 <--x 299 - 323 <--x 299 - 323 <--x 300 - 324 <--x 300 - 324 <--x 301 - 325 <--x 301 - 325 <--x 302 - 326 <--x 302 - 326 <--x 303 - 327 <--x 303 - 327 <--x 304 - 328 <--x 304 - 328 <--x 305 - 329 <--x 305 - 329 <--x 306 - 330 <--x 306 - 330 <--x 307 - 331 <--x 307 - 331 <--x 308 - 332 <--x 308 - 332 <--x 285 - 333 --- 334 - 334 --- 335 - 334 --- 336 - 334 --- 337 - 334 --- 338 - 334 --- 339 - 334 --- 340 - 334 --- 341 - 334 --- 342 - 334 --- 343 - 334 ---- 345 - 334 --- 344 - 335 --- 346 - 335 --- 355 - 336 --- 347 - 336 --- 356 - 337 --- 348 - 337 --- 357 - 338 --- 349 - 338 --- 358 - 339 --- 350 - 339 --- 359 - 340 --- 351 - 340 --- 360 - 341 --- 352 - 341 --- 361 - 342 --- 353 - 342 --- 362 - 343 --- 354 - 343 --- 363 - 345 --- 346 - 345 --- 347 - 345 --- 348 - 345 --- 349 - 345 --- 350 - 345 --- 351 - 345 --- 352 - 345 --- 353 - 345 --- 354 - 345 <--x 335 - 345 --- 355 - 345 <--x 336 - 345 --- 356 - 345 <--x 337 - 345 --- 357 - 345 <--x 338 - 345 --- 358 - 345 <--x 339 - 345 --- 359 - 345 <--x 340 - 345 --- 360 - 345 <--x 341 - 345 --- 361 - 345 <--x 342 - 345 --- 362 - 345 <--x 343 - 345 --- 363 - 355 <--x 346 - 355 <--x 347 - 356 <--x 347 - 356 <--x 348 - 357 <--x 348 - 357 <--x 349 - 358 <--x 349 - 358 <--x 350 - 359 <--x 350 - 359 <--x 351 - 360 <--x 351 - 360 <--x 352 - 361 <--x 352 - 361 <--x 353 - 362 <--x 353 - 362 <--x 354 - 363 <--x 354 - 363 <--x 346 - 364 --- 365 - 365 --- 366 - 365 --- 367 - 365 --- 368 - 365 --- 369 - 365 --- 370 - 365 --- 371 - 365 --- 372 - 365 --- 373 - 365 --- 374 - 365 --- 375 - 365 --- 376 - 365 --- 377 - 365 --- 378 - 365 --- 379 - 365 --- 380 - 365 --- 381 - 365 --- 382 - 365 ---- 384 - 365 --- 383 - 366 --- 385 - 366 --- 404 - 366 --- 405 - 366 x--> 402 - 367 --- 386 - 367 --- 406 - 367 --- 407 - 367 x--> 402 - 368 --- 387 - 368 --- 408 - 368 --- 409 - 368 x--> 402 - 369 --- 388 - 369 --- 410 - 369 --- 411 - 369 x--> 402 - 370 --- 389 - 370 --- 412 - 370 --- 413 - 370 x--> 402 - 371 --- 390 - 371 --- 414 - 371 --- 415 - 371 x--> 402 - 372 --- 391 - 372 --- 416 - 372 --- 417 - 372 x--> 402 - 373 --- 392 - 373 --- 418 - 373 --- 419 - 373 x--> 402 - 374 --- 393 - 374 --- 420 - 374 --- 421 - 374 x--> 402 - 375 --- 394 - 375 --- 422 - 375 --- 423 - 375 x--> 402 - 376 --- 395 - 376 --- 424 - 376 --- 425 - 376 x--> 402 - 377 --- 396 - 377 --- 426 - 377 --- 427 - 377 x--> 402 - 378 --- 397 - 378 --- 428 - 378 --- 429 - 378 x--> 402 - 379 --- 398 - 379 --- 430 - 379 --- 431 - 379 x--> 402 - 380 --- 399 - 380 --- 432 - 380 --- 433 - 380 x--> 402 - 381 --- 400 - 381 --- 434 - 381 --- 435 - 381 x--> 402 - 382 --- 401 - 382 --- 436 - 382 --- 437 - 382 x--> 402 - 384 --- 385 - 384 --- 386 - 384 --- 387 - 384 --- 388 - 384 --- 389 - 384 --- 390 - 384 --- 391 - 384 --- 392 - 384 --- 393 - 384 --- 394 - 384 --- 395 - 384 --- 396 - 384 --- 397 - 384 --- 398 - 384 --- 399 - 384 --- 400 - 384 --- 401 - 384 --- 402 - 384 --- 403 - 384 --- 404 - 384 --- 405 - 384 --- 406 - 384 --- 407 - 384 --- 408 - 384 --- 409 - 384 --- 410 - 384 --- 411 - 384 --- 412 - 384 --- 413 - 384 --- 414 - 384 --- 415 - 384 --- 416 - 384 --- 417 - 384 --- 418 - 384 --- 419 - 384 --- 420 - 384 --- 421 - 384 --- 422 - 384 --- 423 - 384 --- 424 - 384 --- 425 - 384 --- 426 - 384 --- 427 - 384 --- 428 - 384 --- 429 - 384 --- 430 - 384 --- 431 - 384 --- 432 - 384 --- 433 - 384 --- 434 - 384 --- 435 - 384 --- 436 - 384 --- 437 - 404 <--x 385 - 404 <--x 403 - 405 <--x 385 - 405 <--x 386 - 406 <--x 386 - 406 <--x 403 - 407 <--x 386 - 407 <--x 387 - 408 <--x 387 - 408 <--x 403 - 409 <--x 387 - 409 <--x 388 - 410 <--x 388 - 410 <--x 403 - 411 <--x 388 - 411 <--x 389 - 412 <--x 389 - 412 <--x 403 - 413 <--x 389 - 413 <--x 390 - 414 <--x 390 - 414 <--x 403 - 415 <--x 390 - 415 <--x 391 - 416 <--x 391 - 416 <--x 403 - 417 <--x 391 - 417 <--x 392 - 418 <--x 392 - 418 <--x 403 - 419 <--x 392 - 419 <--x 393 - 420 <--x 393 - 420 <--x 403 - 421 <--x 393 - 421 <--x 394 - 422 <--x 394 - 422 <--x 403 - 423 <--x 394 - 423 <--x 395 - 424 <--x 395 - 424 <--x 403 - 425 <--x 395 - 425 <--x 396 - 426 <--x 396 - 426 <--x 403 - 427 <--x 396 - 427 <--x 397 - 428 <--x 397 - 428 <--x 403 - 429 <--x 397 - 429 <--x 398 - 430 <--x 398 - 430 <--x 403 - 431 <--x 398 - 431 <--x 399 - 432 <--x 399 - 432 <--x 403 - 433 <--x 399 - 433 <--x 400 - 434 <--x 400 - 434 <--x 403 - 435 <--x 400 - 435 <--x 401 - 436 <--x 401 - 436 <--x 403 - 437 <--x 401 - 437 <--x 385 - 438 --- 439 - 439 --- 440 - 439 --- 441 - 439 --- 442 - 439 --- 443 - 439 --- 444 - 439 --- 445 - 439 --- 446 - 439 --- 447 - 439 --- 448 - 439 --- 449 - 439 --- 450 - 439 --- 451 - 439 --- 452 - 439 --- 453 - 439 ---- 455 - 439 --- 454 - 440 --- 456 - 440 --- 470 - 441 --- 457 - 441 --- 471 - 442 --- 458 - 442 --- 472 - 443 --- 459 - 443 --- 473 - 444 --- 460 - 444 --- 474 - 445 --- 461 - 445 --- 475 - 446 --- 462 - 446 --- 476 - 447 --- 463 - 447 --- 477 - 448 --- 464 - 448 --- 478 - 449 --- 465 - 449 --- 479 - 450 --- 466 - 450 --- 480 - 451 --- 467 - 451 --- 481 - 452 --- 468 - 452 --- 482 - 453 --- 469 - 453 --- 483 - 455 --- 456 - 455 --- 457 - 455 --- 458 - 455 --- 459 - 455 --- 460 - 455 --- 461 - 455 --- 462 - 455 --- 463 - 455 --- 464 - 455 --- 465 - 455 --- 466 - 455 --- 467 - 455 --- 468 - 455 --- 469 - 455 <--x 440 - 455 --- 470 - 455 <--x 441 - 455 --- 471 - 455 <--x 442 - 455 --- 472 - 455 <--x 443 - 455 --- 473 - 455 <--x 444 - 455 --- 474 - 455 <--x 445 - 455 --- 475 - 455 <--x 446 - 455 --- 476 - 455 <--x 447 - 455 --- 477 - 455 <--x 448 - 455 --- 478 - 455 <--x 449 - 455 --- 479 - 455 <--x 450 - 455 --- 480 - 455 <--x 451 - 455 --- 481 - 455 <--x 452 - 455 --- 482 - 455 <--x 453 - 455 --- 483 - 470 <--x 456 - 470 <--x 457 - 471 <--x 457 - 471 <--x 458 - 472 <--x 458 - 472 <--x 459 - 473 <--x 459 - 473 <--x 460 - 474 <--x 460 - 474 <--x 461 - 475 <--x 461 - 475 <--x 462 - 476 <--x 462 - 476 <--x 463 - 477 <--x 463 - 477 <--x 464 - 478 <--x 464 - 478 <--x 465 - 479 <--x 465 - 479 <--x 466 - 480 <--x 466 - 480 <--x 467 - 481 <--x 467 - 481 <--x 468 - 482 <--x 468 - 482 <--x 469 - 483 <--x 469 - 483 <--x 456 - 8 <--x 484 - 16 <--x 485 - 7 <--x 486 - 35 <--x 487 - 44 <--x 488 - 7 <--x 489 - 7 <--x 490 - 44 <--x 491 - 141 <--x 492 - 153 <--x 493 - 141 <--x 494 + 1 --- 11 + 1 --- 12 + 2 --- 17 + 3 --- 18 + 4 --- 19 + 5 --- 20 + 6 --- 21 + 7 --- 22 + 8 --- 31 + 9 --- 32 + 10 --- 33 + 11 --- 34 + 11 --- 154 + 11 ---- 164 + 12 --- 35 + 12 --- 162 + 13 --- 36 + 13 --- 148 + 13 ---- 165 + 334 --- 13 + 14 --- 37 + 14 --- 158 + 334 --- 14 + 15 --- 38 + 15 --- 153 + 15 ---- 167 + 338 --- 15 + 16 --- 39 + 16 --- 145 + 16 ---- 171 + 334 --- 16 + 17 --- 40 + 17 --- 41 + 17 --- 42 + 17 --- 43 + 17 --- 44 + 17 --- 150 + 17 ---- 176 + 18 --- 45 + 18 --- 46 + 18 --- 47 + 18 --- 48 + 18 --- 49 + 18 --- 146 + 18 ---- 177 + 19 --- 50 + 19 --- 52 + 19 --- 54 + 19 --- 56 + 19 --- 59 + 19 --- 149 + 19 ---- 179 + 20 --- 51 + 20 --- 53 + 20 --- 55 + 20 --- 57 + 20 --- 58 + 20 --- 159 + 20 ---- 178 + 21 --- 60 + 21 --- 61 + 21 --- 62 + 21 --- 63 + 21 --- 64 + 21 --- 65 + 21 --- 66 + 21 --- 67 + 21 --- 68 + 21 --- 69 + 21 --- 70 + 21 --- 71 + 21 --- 72 + 21 --- 73 + 21 --- 74 + 21 --- 75 + 21 --- 76 + 21 --- 77 + 21 --- 78 + 21 --- 79 + 21 --- 80 + 21 --- 81 + 21 --- 82 + 21 --- 83 + 21 --- 155 + 21 ---- 180 + 22 --- 84 + 22 --- 161 + 22 ---- 181 + 23 --- 85 + 23 --- 142 + 23 ---- 182 + 337 --- 23 + 24 --- 86 + 24 --- 147 + 24 ---- 184 + 336 --- 24 + 25 --- 87 + 25 --- 156 + 25 ---- 188 + 326 --- 25 + 26 --- 88 + 26 --- 160 + 26 ---- 189 + 339 --- 26 + 27 --- 89 + 27 --- 152 + 27 ---- 191 + 341 --- 27 + 28 --- 90 + 28 --- 157 + 28 ---- 196 + 326 --- 28 + 29 --- 91 + 29 --- 92 + 29 --- 93 + 29 --- 94 + 29 --- 95 + 29 --- 151 + 29 ---- 212 + 326 --- 29 + 30 --- 96 + 30 --- 97 + 30 --- 98 + 30 --- 99 + 30 --- 100 + 30 --- 163 + 30 ---- 219 + 341 --- 30 + 31 --- 101 + 31 --- 102 + 31 --- 103 + 31 --- 104 + 31 --- 105 + 31 --- 106 + 31 --- 107 + 31 --- 108 + 31 --- 109 + 31 --- 110 + 31 --- 111 + 31 --- 112 + 31 --- 113 + 31 --- 114 + 31 --- 115 + 31 --- 116 + 31 --- 117 + 31 --- 143 + 31 ---- 221 + 32 --- 118 + 32 --- 119 + 32 --- 120 + 32 --- 121 + 32 --- 122 + 32 --- 123 + 32 --- 124 + 32 --- 125 + 32 --- 126 + 32 --- 144 + 32 ---- 222 + 33 --- 127 + 33 --- 128 + 33 --- 129 + 33 --- 130 + 33 --- 131 + 33 --- 132 + 33 --- 133 + 33 --- 134 + 33 --- 135 + 33 --- 136 + 33 --- 137 + 33 --- 138 + 33 --- 139 + 33 --- 140 + 33 --- 141 + 33 ---- 223 + 34 --- 230 + 34 x--> 324 + 34 --- 348 + 34 --- 392 + 36 --- 254 + 36 x--> 327 + 36 --- 358 + 36 --- 415 + 38 --- 250 + 38 x--> 338 + 38 --- 354 + 38 --- 411 + 39 --- 224 + 39 x--> 334 + 39 --- 342 + 39 --- 386 + 176 <--x 40 + 40 --- 258 + 40 --- 417 + 176 <--x 41 + 41 --- 256 + 41 --- 419 + 176 <--x 42 + 42 --- 259 + 42 --- 418 + 176 <--x 43 + 43 --- 257 + 43 --- 420 + 177 <--x 45 + 45 --- 280 + 45 --- 441 + 177 <--x 46 + 46 --- 277 + 46 --- 438 + 177 <--x 47 + 47 --- 279 + 47 --- 440 + 177 <--x 48 + 48 --- 278 + 48 --- 439 + 50 --- 245 + 50 x--> 335 + 50 --- 352 + 50 --- 409 + 51 --- 227 + 51 x--> 323 + 51 --- 344 + 51 --- 388 + 52 --- 247 + 52 x--> 335 + 52 --- 349 + 52 --- 406 + 53 --- 225 + 53 x--> 323 + 53 --- 346 + 53 --- 389 + 54 --- 248 + 54 x--> 335 + 54 --- 350 + 54 --- 407 + 55 --- 228 + 55 x--> 323 + 55 --- 343 + 55 --- 387 + 56 --- 246 + 56 x--> 335 + 56 --- 351 + 56 --- 408 + 57 --- 226 + 57 x--> 323 + 57 --- 345 + 57 --- 390 + 180 <--x 60 + 60 --- 292 + 60 --- 461 + 180 <--x 61 + 61 --- 310 + 61 --- 456 + 180 <--x 62 + 62 --- 308 + 62 --- 466 + 180 <--x 63 + 63 --- 298 + 63 --- 458 + 180 <--x 64 + 64 --- 301 + 64 --- 474 + 180 <--x 65 + 65 --- 312 + 65 --- 453 + 180 <--x 66 + 66 --- 307 + 66 --- 470 + 180 <--x 67 + 67 --- 302 + 67 --- 464 + 180 <--x 68 + 68 --- 294 + 68 --- 452 + 180 <--x 69 + 69 --- 300 + 69 --- 472 + 180 <--x 70 + 70 --- 305 + 70 --- 463 + 180 <--x 71 + 71 --- 296 + 71 --- 465 + 180 <--x 72 + 72 --- 297 + 72 --- 467 + 180 <--x 73 + 73 --- 299 + 73 --- 468 + 180 <--x 74 + 74 --- 295 + 74 --- 455 + 180 <--x 75 + 75 --- 303 + 75 --- 475 + 180 <--x 76 + 76 --- 291 + 76 --- 462 + 180 <--x 77 + 77 --- 311 + 77 --- 469 + 180 <--x 78 + 78 --- 309 + 78 --- 457 + 180 <--x 79 + 79 --- 306 + 79 --- 473 + 180 <--x 80 + 80 --- 313 + 80 --- 471 + 180 <--x 81 + 81 --- 293 + 81 --- 459 + 180 <--x 82 + 82 --- 304 + 82 --- 460 + 180 <--x 83 + 83 --- 314 + 83 --- 454 + 84 --- 253 + 84 x--> 326 + 84 --- 357 + 84 --- 414 + 85 --- 251 + 85 x--> 337 + 85 --- 355 + 85 --- 412 + 86 --- 252 + 86 x--> 336 + 86 --- 356 + 86 --- 413 + 87 --- 255 + 87 x--> 326 + 87 --- 359 + 87 --- 416 + 88 --- 281 + 88 x--> 329 + 88 --- 377 + 88 --- 442 + 89 --- 249 + 89 x--> 341 + 89 --- 353 + 89 --- 410 + 90 --- 229 + 90 x--> 326 + 90 --- 347 + 90 --- 391 + 91 --- 320 + 91 x--> 326 + 91 --- 384 + 91 --- 483 + 92 --- 322 + 92 x--> 326 + 92 --- 382 + 92 --- 480 + 93 --- 319 + 93 x--> 326 + 93 --- 383 + 93 --- 481 + 94 --- 321 + 94 x--> 326 + 94 --- 385 + 94 --- 482 + 96 --- 317 + 96 x--> 341 + 96 --- 380 + 96 --- 476 + 97 --- 318 + 97 x--> 341 + 97 --- 381 + 97 --- 477 + 98 --- 315 + 98 x--> 341 + 98 --- 378 + 98 --- 478 + 99 --- 316 + 99 x--> 341 + 99 --- 379 + 99 --- 479 + 101 --- 270 + 101 x--> 328 + 101 --- 364 + 101 --- 426 + 102 --- 265 + 102 x--> 328 + 102 --- 373 + 102 --- 427 + 103 --- 267 + 103 x--> 328 + 103 --- 366 + 103 --- 433 + 104 --- 264 + 104 x--> 328 + 104 --- 361 + 104 --- 435 + 105 --- 268 + 105 x--> 328 + 105 --- 360 + 105 --- 424 + 106 --- 273 + 106 x--> 328 + 106 --- 363 + 106 --- 425 + 107 --- 260 + 107 x--> 328 + 107 --- 372 + 107 --- 421 + 108 --- 275 + 108 x--> 328 + 108 --- 369 + 108 --- 428 + 109 --- 266 + 109 x--> 328 + 109 --- 375 + 109 --- 422 + 110 --- 261 + 110 x--> 328 + 110 --- 368 + 110 --- 429 + 111 --- 263 + 111 x--> 328 + 111 --- 365 + 111 --- 432 + 112 --- 276 + 112 x--> 328 + 112 --- 374 + 112 --- 423 + 113 --- 274 + 113 x--> 328 + 113 --- 367 + 113 --- 431 + 114 --- 269 + 114 x--> 328 + 114 --- 371 + 114 --- 434 + 115 --- 271 + 115 x--> 328 + 115 --- 376 + 115 --- 430 + 116 --- 262 + 116 x--> 328 + 116 --- 362 + 116 --- 436 + 117 --- 272 + 117 x--> 328 + 117 --- 370 + 117 --- 437 + 222 <--x 118 + 118 --- 285 + 118 --- 445 + 222 <--x 119 + 119 --- 286 + 119 --- 443 + 222 <--x 120 + 120 --- 283 + 120 --- 448 + 222 <--x 121 + 121 --- 287 + 121 --- 444 + 222 <--x 122 + 122 --- 289 + 122 --- 449 + 222 <--x 123 + 123 --- 284 + 123 --- 447 + 222 <--x 124 + 124 --- 282 + 124 --- 446 + 222 <--x 125 + 125 --- 288 + 125 --- 451 + 222 <--x 126 + 126 --- 290 + 126 --- 450 + 223 <--x 127 + 127 --- 240 + 127 x--> 400 + 223 <--x 128 + 128 --- 237 + 128 --- 402 + 223 <--x 129 + 129 --- 239 + 129 --- 398 + 223 <--x 130 + 130 --- 234 + 130 --- 397 + 223 <--x 131 + 131 --- 238 + 131 --- 404 + 223 <--x 132 + 132 --- 232 + 132 --- 403 + 223 <--x 133 + 133 --- 241 + 133 --- 395 + 223 <--x 134 + 134 --- 243 + 134 --- 394 + 223 <--x 135 + 135 --- 235 + 135 --- 399 + 223 <--x 136 + 136 --- 231 + 136 --- 401 + 223 <--x 137 + 137 --- 236 + 137 --- 405 + 223 <--x 138 + 138 --- 233 + 138 --- 396 + 223 <--x 139 + 139 --- 244 + 139 --- 393 + 223 <--x 140 + 140 --- 242 + 140 --- 400 + 164 --- 230 + 164 --- 324 + 164 --- 334 + 164 --- 348 + 164 --- 392 + 165 --- 254 + 165 --- 327 + 165 --- 338 + 165 --- 358 + 165 --- 415 + 167 --- 250 + 167 --- 354 + 167 --- 411 + 171 --- 224 + 171 --- 342 + 171 --- 386 + 176 --- 256 + 176 --- 257 + 176 --- 258 + 176 --- 259 + 176 --- 417 + 176 --- 418 + 176 --- 419 + 176 --- 420 + 177 --- 277 + 177 --- 278 + 177 --- 279 + 177 --- 280 + 177 --- 438 + 177 --- 439 + 177 --- 440 + 177 --- 441 + 178 --- 225 + 178 --- 226 + 178 --- 227 + 178 --- 228 + 178 --- 323 + 178 --- 332 + 178 --- 343 + 178 --- 344 + 178 --- 345 + 178 --- 346 + 178 --- 387 + 178 --- 388 + 178 --- 389 + 178 --- 390 + 179 --- 245 + 179 --- 246 + 179 --- 247 + 179 --- 248 + 179 --- 325 + 179 --- 335 + 179 --- 349 + 179 --- 350 + 179 --- 351 + 179 --- 352 + 179 --- 406 + 179 --- 407 + 179 --- 408 + 179 --- 409 + 180 --- 291 + 180 --- 292 + 180 --- 293 + 180 --- 294 + 180 --- 295 + 180 --- 296 + 180 --- 297 + 180 --- 298 + 180 --- 299 + 180 --- 300 + 180 --- 301 + 180 --- 302 + 180 --- 303 + 180 --- 304 + 180 --- 305 + 180 --- 306 + 180 --- 307 + 180 --- 308 + 180 --- 309 + 180 --- 310 + 180 --- 311 + 180 --- 312 + 180 --- 313 + 180 --- 314 + 180 --- 452 + 180 --- 453 + 180 --- 454 + 180 --- 455 + 180 --- 456 + 180 --- 457 + 180 --- 458 + 180 --- 459 + 180 --- 460 + 180 --- 461 + 180 --- 462 + 180 --- 463 + 180 --- 464 + 180 --- 465 + 180 --- 466 + 180 --- 467 + 180 --- 468 + 180 --- 469 + 180 --- 470 + 180 --- 471 + 180 --- 472 + 180 --- 473 + 180 --- 474 + 180 --- 475 + 181 --- 253 + 181 --- 326 + 181 --- 337 + 181 --- 357 + 181 --- 414 + 182 --- 251 + 182 --- 336 + 182 --- 355 + 182 --- 412 + 184 --- 252 + 184 --- 356 + 184 --- 413 + 188 --- 255 + 188 --- 339 + 188 --- 359 + 188 --- 416 + 189 --- 281 + 189 --- 329 + 189 --- 341 + 189 --- 377 + 189 --- 442 + 191 --- 249 + 191 --- 353 + 191 --- 410 + 196 --- 229 + 196 --- 333 + 196 --- 347 + 196 --- 391 + 212 --- 319 + 212 --- 320 + 212 --- 321 + 212 --- 322 + 212 --- 331 + 212 --- 382 + 212 --- 383 + 212 --- 384 + 212 --- 385 + 212 --- 480 + 212 --- 481 + 212 --- 482 + 212 --- 483 + 219 --- 315 + 219 --- 316 + 219 --- 317 + 219 --- 318 + 219 --- 330 + 219 --- 378 + 219 --- 379 + 219 --- 380 + 219 --- 381 + 219 --- 476 + 219 --- 477 + 219 --- 478 + 219 --- 479 + 221 --- 260 + 221 --- 261 + 221 --- 262 + 221 --- 263 + 221 --- 264 + 221 --- 265 + 221 --- 266 + 221 --- 267 + 221 --- 268 + 221 --- 269 + 221 --- 270 + 221 --- 271 + 221 --- 272 + 221 --- 273 + 221 --- 274 + 221 --- 275 + 221 --- 276 + 221 --- 328 + 221 --- 340 + 221 --- 360 + 221 --- 361 + 221 --- 362 + 221 --- 363 + 221 --- 364 + 221 --- 365 + 221 --- 366 + 221 --- 367 + 221 --- 368 + 221 --- 369 + 221 --- 370 + 221 --- 371 + 221 --- 372 + 221 --- 373 + 221 --- 374 + 221 --- 375 + 221 --- 376 + 221 --- 421 + 221 --- 422 + 221 --- 423 + 221 --- 424 + 221 --- 425 + 221 --- 426 + 221 --- 427 + 221 --- 428 + 221 --- 429 + 221 --- 430 + 221 --- 431 + 221 --- 432 + 221 --- 433 + 221 --- 434 + 221 --- 435 + 221 --- 436 + 221 --- 437 + 222 --- 282 + 222 --- 283 + 222 --- 284 + 222 --- 285 + 222 --- 286 + 222 --- 287 + 222 --- 288 + 222 --- 289 + 222 --- 290 + 222 --- 443 + 222 --- 444 + 222 --- 445 + 222 --- 446 + 222 --- 447 + 222 --- 448 + 222 --- 449 + 222 --- 450 + 222 --- 451 + 223 --- 231 + 223 --- 232 + 223 --- 233 + 223 --- 234 + 223 --- 235 + 223 --- 236 + 223 --- 237 + 223 --- 238 + 223 --- 239 + 223 --- 240 + 223 --- 241 + 223 --- 242 + 223 --- 243 + 223 --- 244 + 223 --- 393 + 223 --- 394 + 223 --- 395 + 223 --- 396 + 223 --- 397 + 223 --- 398 + 223 --- 399 + 223 --- 400 + 223 --- 401 + 223 --- 402 + 223 --- 403 + 223 --- 404 + 223 --- 405 + 342 <--x 224 + 386 <--x 224 + 346 <--x 225 + 387 <--x 225 + 389 <--x 225 + 345 <--x 226 + 388 <--x 226 + 390 <--x 226 + 344 <--x 227 + 388 <--x 227 + 389 <--x 227 + 343 <--x 228 + 387 <--x 228 + 390 <--x 228 + 347 <--x 229 + 391 <--x 229 + 348 <--x 230 + 392 <--x 230 + 399 <--x 231 + 401 <--x 231 + 403 <--x 232 + 404 <--x 232 + 396 <--x 233 + 405 <--x 233 + 397 <--x 234 + 398 <--x 234 + 394 <--x 235 + 399 <--x 235 + 401 <--x 236 + 405 <--x 236 + 402 <--x 237 + 397 <--x 238 + 404 <--x 238 + 398 <--x 239 + 402 <--x 239 + 400 <--x 240 + 395 <--x 241 + 403 <--x 241 + 393 <--x 242 + 400 <--x 242 + 394 <--x 243 + 395 <--x 243 + 393 <--x 244 + 396 <--x 244 + 352 <--x 245 + 408 <--x 245 + 409 <--x 245 + 351 <--x 246 + 407 <--x 246 + 408 <--x 246 + 349 <--x 247 + 406 <--x 247 + 409 <--x 247 + 350 <--x 248 + 406 <--x 248 + 407 <--x 248 + 353 <--x 249 + 410 <--x 249 + 354 <--x 250 + 411 <--x 250 + 355 <--x 251 + 412 <--x 251 + 356 <--x 252 + 413 <--x 252 + 357 <--x 253 + 414 <--x 253 + 358 <--x 254 + 415 <--x 254 + 359 <--x 255 + 416 <--x 255 + 417 <--x 256 + 419 <--x 256 + 418 <--x 257 + 420 <--x 257 + 417 <--x 258 + 420 <--x 258 + 418 <--x 259 + 419 <--x 259 + 372 <--x 260 + 421 <--x 260 + 425 <--x 260 + 368 <--x 261 + 422 <--x 261 + 429 <--x 261 + 362 <--x 262 + 430 <--x 262 + 436 <--x 262 + 365 <--x 263 + 429 <--x 263 + 432 <--x 263 + 361 <--x 264 + 433 <--x 264 + 435 <--x 264 + 373 <--x 265 + 426 <--x 265 + 427 <--x 265 + 375 <--x 266 + 422 <--x 266 + 428 <--x 266 + 366 <--x 267 + 427 <--x 267 + 433 <--x 267 + 360 <--x 268 + 424 <--x 268 + 435 <--x 268 + 371 <--x 269 + 431 <--x 269 + 434 <--x 269 + 364 <--x 270 + 426 <--x 270 + 437 <--x 270 + 376 <--x 271 + 430 <--x 271 + 434 <--x 271 + 370 <--x 272 + 436 <--x 272 + 437 <--x 272 + 363 <--x 273 + 424 <--x 273 + 425 <--x 273 + 367 <--x 274 + 423 <--x 274 + 431 <--x 274 + 369 <--x 275 + 421 <--x 275 + 428 <--x 275 + 374 <--x 276 + 423 <--x 276 + 432 <--x 276 + 438 <--x 277 + 441 <--x 277 + 439 <--x 278 + 440 <--x 278 + 438 <--x 279 + 440 <--x 279 + 439 <--x 280 + 441 <--x 280 + 377 <--x 281 + 442 <--x 281 + 446 <--x 282 + 447 <--x 282 + 443 <--x 283 + 448 <--x 283 + 447 <--x 284 + 449 <--x 284 + 445 <--x 285 + 450 <--x 285 + 443 <--x 286 + 445 <--x 286 + 444 <--x 287 + 448 <--x 287 + 446 <--x 288 + 451 <--x 288 + 444 <--x 289 + 449 <--x 289 + 450 <--x 290 + 451 <--x 290 + 462 <--x 291 + 475 <--x 291 + 454 <--x 292 + 461 <--x 292 + 459 <--x 293 + 471 <--x 293 + 452 <--x 294 + 464 <--x 294 + 455 <--x 295 + 468 <--x 295 + 463 <--x 296 + 465 <--x 296 + 465 <--x 297 + 467 <--x 297 + 458 <--x 298 + 466 <--x 298 + 467 <--x 299 + 468 <--x 299 + 452 <--x 300 + 472 <--x 300 + 458 <--x 301 + 474 <--x 301 + 464 <--x 302 + 470 <--x 302 + 455 <--x 303 + 475 <--x 303 + 459 <--x 304 + 460 <--x 304 + 463 <--x 305 + 472 <--x 305 + 457 <--x 306 + 473 <--x 306 + 453 <--x 307 + 470 <--x 307 + 456 <--x 308 + 466 <--x 308 + 457 <--x 309 + 469 <--x 309 + 456 <--x 310 + 461 <--x 310 + 462 <--x 311 + 469 <--x 311 + 453 <--x 312 + 474 <--x 312 + 471 <--x 313 + 473 <--x 313 + 454 <--x 314 + 460 <--x 314 + 378 <--x 315 + 477 <--x 315 + 478 <--x 315 + 379 <--x 316 + 478 <--x 316 + 479 <--x 316 + 380 <--x 317 + 476 <--x 317 + 479 <--x 317 + 381 <--x 318 + 476 <--x 318 + 477 <--x 318 + 383 <--x 319 + 481 <--x 319 + 482 <--x 319 + 384 <--x 320 + 480 <--x 320 + 483 <--x 320 + 385 <--x 321 + 482 <--x 321 + 483 <--x 321 + 382 <--x 322 + 480 <--x 322 + 481 <--x 322 + 342 <--x 324 + 349 <--x 325 + 350 <--x 325 + 351 <--x 325 + 352 <--x 325 + 356 <--x 326 + 354 <--x 327 + 353 <--x 329 + 378 <--x 330 + 379 <--x 330 + 380 <--x 330 + 381 <--x 330 + 382 <--x 331 + 383 <--x 331 + 384 <--x 331 + 385 <--x 331 + 343 <--x 332 + 344 <--x 332 + 345 <--x 332 + 346 <--x 332 + 347 <--x 333 + 348 <--x 334 + 355 <--x 336 + 357 <--x 337 + 358 <--x 338 + 359 <--x 339 + 360 <--x 340 + 361 <--x 340 + 362 <--x 340 + 363 <--x 340 + 364 <--x 340 + 365 <--x 340 + 366 <--x 340 + 367 <--x 340 + 368 <--x 340 + 369 <--x 340 + 370 <--x 340 + 371 <--x 340 + 372 <--x 340 + 373 <--x 340 + 374 <--x 340 + 375 <--x 340 + 376 <--x 340 + 377 <--x 341 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/ops.snap b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/ops.snap index b58098be8..0eb552a77 100644 --- a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/ops.snap @@ -12,707 +12,6 @@ description: Operations executed car-wheel-assembly.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.25, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.75, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.25, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.25, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.125, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.125, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -722,1406 +21,6 @@ description: Operations executed car-wheel-assembly.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.475, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.95, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.95, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.475, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "KclStdLibCall", - "name": "revolve", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "axis": { - "value": { - "type": "Object", - "value": { - "direction": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "KclStdLibCall", - "name": "revolve", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "axis": { - "value": { - "type": "Object", - "value": { - "direction": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "spoke", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.02, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.95, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "arcDegrees": { - "value": { - "type": "Number", - "value": 360.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "axis": { - "value": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "sourceRange": [] - }, - "center": { - "value": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": -2000.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "sourceRange": [] - }, - "instances": { - "value": { - "type": "Number", - "value": 6.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "rotateDuplicates": { - "value": { - "type": "Bool", - "value": true - }, - "sourceRange": [] - } - }, - "name": "patternCircular3d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "spoke", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": -0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": -0.02, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.95, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "arcDegrees": { - "value": { - "type": "Number", - "value": 360.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "axis": { - "value": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "sourceRange": [] - }, - "center": { - "value": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": -2000.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "sourceRange": [] - }, - "instances": { - "value": { - "type": "Number", - "value": 6.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "rotateDuplicates": { - "value": { - "type": "Bool", - "value": true - }, - "sourceRange": [] - } - }, - "name": "patternCircular3d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "KclStdLibCall", - "name": "revolve", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "axis": { - "value": { - "type": "Object", - "value": { - "direction": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2131,293 +30,6 @@ description: Operations executed car-wheel-assembly.kcl }, "sourceRange": [] }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "lug", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Object", - "value": { - "x": { - "type": "Number", - "value": 57.15, - "ty": { - "type": "Known", - "type": "Length", - "type": "Mm" - } - }, - "y": { - "type": "Number", - "value": -30.0, - "ty": { - "type": "Known", - "type": "Length", - "type": "Mm" - } - }, - "z": { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - } - }, - "xAxis": { - "type": "Object", - "value": { - "x": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "y": { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "z": { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - } - }, - "yAxis": { - "type": "Object", - "value": { - "x": { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "y": { - "type": "Number", - "value": -1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "z": { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - } - }, - "zAxis": { - "type": "Object", - "value": { - "x": { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "y": { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "z": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - } - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "KclStdLibCall", - "name": "revolve", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "axis": { - "value": { - "type": "Object", - "value": { - "direction": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "arcDegrees": { @@ -2576,131 +188,6 @@ description: Operations executed car-wheel-assembly.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "KclStdLibCall", - "name": "revolve", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - }, - "labeledArgs": { - "angle": { - "value": { - "type": "Number", - "value": -70.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "axis": { - "value": { - "type": "Object", - "value": { - "direction": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2711,110 +198,16 @@ description: Operations executed car-wheel-assembly.kcl "sourceRange": [] }, { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" }, { - "type": "KclStdLibCall", - "name": "revolve", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - }, - "labeledArgs": { - "axis": { - "value": { - "type": "Object", - "value": { - "direction": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" }, { "type": "GroupEnd" diff --git a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/program_memory.snap index 50f6f5799..7391c597f 100644 --- a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/program_memory.snap @@ -31,7 +31,7 @@ description: Variables in memory after executing car-wheel-assembly.kcl }, "brakeCaliper": { "type": "Module", - "value": 10 + "value": 11 }, "c1": { "type": "TagIdentifier", @@ -105,11 +105,11 @@ description: Variables in memory after executing car-wheel-assembly.kcl }, "carRotor": { "type": "Module", - "value": 9 + "value": 10 }, "carTire": { "type": "Module", - "value": 12 + "value": 13 }, "carWheel": { "type": "Module", @@ -183,7 +183,7 @@ description: Variables in memory after executing car-wheel-assembly.kcl }, "lugNut": { "type": "Module", - "value": 11 + "value": 12 }, "lugSpacing": { "type": "Number", diff --git a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/rendered_model.png b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/rendered_model.png index 995ec1479..60ae8b98c 100644 Binary files a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/rendered_model.png and b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/rendered_model.png differ diff --git a/rust/kcl-lib/tests/kcl_samples/color-cube/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/color-cube/artifact_commands.snap index 09ed65b6e..623d26741 100644 --- a/rust/kcl-lib/tests/kcl_samples/color-cube/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/color-cube/artifact_commands.snap @@ -279,109 +279,6 @@ description: Artifact commands color-cube.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -50.0, - "y": 50.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 100.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -100.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -100.0, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -50.0, - "y": 50.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -398,621 +295,6 @@ description: Artifact commands color-cube.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.0, - "g": 0.0, - "b": 1.0, - "a": 100.0 - }, - "metalness": 0.5, - "roughness": 0.5, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -50.0, - "y": 50.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 100.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -100.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -100.0, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -50.0, - "y": 50.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 1.0, - "g": 1.0, - "b": 0.0, - "a": 100.0 - }, - "metalness": 0.5, - "roughness": 0.5, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -1029,365 +311,6 @@ description: Artifact commands color-cube.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -50.0, - "y": 50.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 100.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -100.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -100.0, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -50.0, - "y": 50.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.0, - "g": 1.0, - "b": 0.0, - "a": 100.0 - }, - "metalness": 0.5, - "roughness": 0.5, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -1404,109 +327,6 @@ description: Artifact commands color-cube.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -50.0, - "y": 50.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 100.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -100.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -100.0, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -50.0, - "y": 50.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1523,621 +343,6 @@ description: Artifact commands color-cube.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 1.0, - "g": 0.0, - "b": 0.0, - "a": 100.0 - }, - "metalness": 0.5, - "roughness": 0.5, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -50.0, - "y": 50.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 100.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -100.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -100.0, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -50.0, - "y": 50.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.0, - "g": 1.0, - "b": 1.0, - "a": 100.0 - }, - "metalness": 0.5, - "roughness": 0.5, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -2158,7 +363,13 @@ description: Artifact commands color-cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -50.0, + "y": 50.0, + "z": 0.0 + } } }, { @@ -2174,6 +385,112 @@ description: Artifact commands color-cube.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -50.0, + "y": 50.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -50.0, + "y": 50.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -50.0, + "y": 50.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -50.0, + "y": 50.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -2181,6 +498,83 @@ description: Artifact commands color-cube.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2198,6 +592,176 @@ description: Artifact commands color-cube.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 100.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 100.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 100.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 100.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 100.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -100.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -100.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -100.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -100.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -100.0, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -2232,6 +796,176 @@ description: Artifact commands color-cube.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -100.0, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -100.0, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -100.0, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -100.0, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -100.0, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -50.0, + "y": 50.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -50.0, + "y": 50.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -50.0, + "y": 50.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -50.0, + "y": 50.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -50.0, + "y": 50.0, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -2257,6 +991,126 @@ description: Artifact commands color-cube.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -2288,7 +1142,55 @@ description: Artifact commands color-cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" } }, { @@ -2299,6 +1201,736 @@ description: Artifact commands color-cube.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2312,7 +1944,7 @@ description: Artifact commands color-cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2321,17 +1953,34 @@ description: Artifact commands color-cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2350,39 +1999,12 @@ description: Artifact commands color-cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2397,39 +2019,12 @@ description: Artifact commands color-cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2444,39 +2039,12 @@ description: Artifact commands color-cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2491,9 +2059,495 @@ description: Artifact commands color-cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.0, + "g": 0.0, + "b": 1.0, + "a": 100.0 + }, + "metalness": 0.5, + "roughness": 0.5, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 1.0, + "g": 1.0, + "b": 0.0, + "a": 100.0 + }, + "metalness": 0.5, + "roughness": 0.5, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.0, + "g": 1.0, + "b": 0.0, + "a": 100.0 + }, + "metalness": 0.5, + "roughness": 0.5, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 1.0, + "g": 0.0, + "b": 0.0, + "a": 100.0 + }, + "metalness": 0.5, + "roughness": 0.5, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.0, + "g": 1.0, + "b": 1.0, + "a": 100.0 + }, + "metalness": 0.5, + "roughness": 0.5, + "ambient_occlusion": 0.0 } }, { @@ -2512,59 +2566,5 @@ description: Artifact commands color-cube.kcl "roughness": 0.5, "ambient_occlusion": 0.0 } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/color-cube/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/color-cube/artifact_graph_flowchart.snap.md index d2c0ecbf9..794f7868a 100644 --- a/rust/kcl-lib/tests/kcl_samples/color-cube/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/color-cube/artifact_graph_flowchart.snap.md @@ -2,57 +2,57 @@ flowchart LR subgraph path7 [Path] 7["Path
[773, 813, 0]"] - 8["Segment
[821, 886, 0]"] - 9["Segment
[894, 991, 0]"] - 10["Segment
[999, 1116, 0]"] - 11["Segment
[1124, 1180, 0]"] - 12["Segment
[1188, 1195, 0]"] - 13[Solid2d] - end - subgraph path29 [Path] - 29["Path
[773, 813, 0]"] - 30["Segment
[821, 886, 0]"] - 31["Segment
[894, 991, 0]"] - 32["Segment
[999, 1116, 0]"] + 17["Segment
[821, 886, 0]"] + 24["Segment
[894, 991, 0]"] + 28["Segment
[999, 1116, 0]"] 33["Segment
[1124, 1180, 0]"] - 34["Segment
[1188, 1195, 0]"] - 35[Solid2d] + 37["Segment
[1188, 1195, 0]"] + 43[Solid2d] end - subgraph path51 [Path] - 51["Path
[773, 813, 0]"] - 52["Segment
[821, 886, 0]"] - 53["Segment
[894, 991, 0]"] - 54["Segment
[999, 1116, 0]"] - 55["Segment
[1124, 1180, 0]"] - 56["Segment
[1188, 1195, 0]"] - 57[Solid2d] + subgraph path8 [Path] + 8["Path
[773, 813, 0]"] + 14["Segment
[821, 886, 0]"] + 22["Segment
[894, 991, 0]"] + 25["Segment
[999, 1116, 0]"] + 34["Segment
[1124, 1180, 0]"] + 39["Segment
[1188, 1195, 0]"] + 44[Solid2d] end - subgraph path73 [Path] - 73["Path
[773, 813, 0]"] - 74["Segment
[821, 886, 0]"] - 75["Segment
[894, 991, 0]"] - 76["Segment
[999, 1116, 0]"] - 77["Segment
[1124, 1180, 0]"] - 78["Segment
[1188, 1195, 0]"] - 79[Solid2d] + subgraph path9 [Path] + 9["Path
[773, 813, 0]"] + 16["Segment
[821, 886, 0]"] + 21["Segment
[894, 991, 0]"] + 27["Segment
[999, 1116, 0]"] + 31["Segment
[1124, 1180, 0]"] + 41["Segment
[1188, 1195, 0]"] + 45[Solid2d] end - subgraph path95 [Path] - 95["Path
[773, 813, 0]"] - 96["Segment
[821, 886, 0]"] - 97["Segment
[894, 991, 0]"] - 98["Segment
[999, 1116, 0]"] - 99["Segment
[1124, 1180, 0]"] - 100["Segment
[1188, 1195, 0]"] - 101[Solid2d] + subgraph path10 [Path] + 10["Path
[773, 813, 0]"] + 13["Segment
[821, 886, 0]"] + 19["Segment
[894, 991, 0]"] + 30["Segment
[999, 1116, 0]"] + 32["Segment
[1124, 1180, 0]"] + 42["Segment
[1188, 1195, 0]"] + 46[Solid2d] end - subgraph path117 [Path] - 117["Path
[773, 813, 0]"] - 118["Segment
[821, 886, 0]"] - 119["Segment
[894, 991, 0]"] - 120["Segment
[999, 1116, 0]"] - 121["Segment
[1124, 1180, 0]"] - 122["Segment
[1188, 1195, 0]"] - 123[Solid2d] + subgraph path11 [Path] + 11["Path
[773, 813, 0]"] + 15["Segment
[821, 886, 0]"] + 23["Segment
[894, 991, 0]"] + 26["Segment
[999, 1116, 0]"] + 36["Segment
[1124, 1180, 0]"] + 38["Segment
[1188, 1195, 0]"] + 47[Solid2d] + end + subgraph path12 [Path] + 12["Path
[773, 813, 0]"] + 18["Segment
[821, 886, 0]"] + 20["Segment
[894, 991, 0]"] + 29["Segment
[999, 1116, 0]"] + 35["Segment
[1124, 1180, 0]"] + 40["Segment
[1188, 1195, 0]"] + 48[Solid2d] end 1["Plane
[356, 390, 0]"] 2["Plane
[405, 440, 0]"] @@ -60,418 +60,418 @@ flowchart LR 4["Plane
[504, 540, 0]"] 5["Plane
[552, 602, 0]"] 6["Plane
[615, 650, 0]"] - 14["Sweep Extrusion
[1203, 1234, 0]"] - 15[Wall] - 16[Wall] - 17[Wall] - 18[Wall] - 19["Cap Start"] - 20["Cap End"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 23["SweepEdge Opposite"] - 24["SweepEdge Adjacent"] - 25["SweepEdge Opposite"] - 26["SweepEdge Adjacent"] - 27["SweepEdge Opposite"] - 28["SweepEdge Adjacent"] - 36["Sweep Extrusion
[1203, 1234, 0]"] - 37[Wall] - 38[Wall] - 39[Wall] - 40[Wall] - 41["Cap Start"] - 42["Cap End"] - 43["SweepEdge Opposite"] - 44["SweepEdge Adjacent"] - 45["SweepEdge Opposite"] - 46["SweepEdge Adjacent"] - 47["SweepEdge Opposite"] - 48["SweepEdge Adjacent"] - 49["SweepEdge Opposite"] - 50["SweepEdge Adjacent"] - 58["Sweep Extrusion
[1203, 1234, 0]"] + 49["Sweep Extrusion
[1203, 1234, 0]"] + 50["Sweep Extrusion
[1203, 1234, 0]"] + 51["Sweep Extrusion
[1203, 1234, 0]"] + 52["Sweep Extrusion
[1203, 1234, 0]"] + 53["Sweep Extrusion
[1203, 1234, 0]"] + 54["Sweep Extrusion
[1203, 1234, 0]"] + 55[Wall] + 56[Wall] + 57[Wall] + 58[Wall] 59[Wall] 60[Wall] 61[Wall] 62[Wall] - 63["Cap Start"] - 64["Cap End"] - 65["SweepEdge Opposite"] - 66["SweepEdge Adjacent"] - 67["SweepEdge Opposite"] - 68["SweepEdge Adjacent"] - 69["SweepEdge Opposite"] - 70["SweepEdge Adjacent"] - 71["SweepEdge Opposite"] - 72["SweepEdge Adjacent"] - 80["Sweep Extrusion
[1203, 1234, 0]"] - 81[Wall] - 82[Wall] - 83[Wall] - 84[Wall] - 85["Cap Start"] + 63[Wall] + 64[Wall] + 65[Wall] + 66[Wall] + 67[Wall] + 68[Wall] + 69[Wall] + 70[Wall] + 71[Wall] + 72[Wall] + 73[Wall] + 74[Wall] + 75[Wall] + 76[Wall] + 77[Wall] + 78[Wall] + 79["Cap Start"] + 80["Cap Start"] + 81["Cap Start"] + 82["Cap Start"] + 83["Cap Start"] + 84["Cap Start"] + 85["Cap End"] 86["Cap End"] - 87["SweepEdge Opposite"] - 88["SweepEdge Adjacent"] - 89["SweepEdge Opposite"] - 90["SweepEdge Adjacent"] + 87["Cap End"] + 88["Cap End"] + 89["Cap End"] + 90["Cap End"] 91["SweepEdge Opposite"] - 92["SweepEdge Adjacent"] + 92["SweepEdge Opposite"] 93["SweepEdge Opposite"] - 94["SweepEdge Adjacent"] - 102["Sweep Extrusion
[1203, 1234, 0]"] - 103[Wall] - 104[Wall] - 105[Wall] - 106[Wall] - 107["Cap Start"] - 108["Cap End"] + 94["SweepEdge Opposite"] + 95["SweepEdge Opposite"] + 96["SweepEdge Opposite"] + 97["SweepEdge Opposite"] + 98["SweepEdge Opposite"] + 99["SweepEdge Opposite"] + 100["SweepEdge Opposite"] + 101["SweepEdge Opposite"] + 102["SweepEdge Opposite"] + 103["SweepEdge Opposite"] + 104["SweepEdge Opposite"] + 105["SweepEdge Opposite"] + 106["SweepEdge Opposite"] + 107["SweepEdge Opposite"] + 108["SweepEdge Opposite"] 109["SweepEdge Opposite"] - 110["SweepEdge Adjacent"] + 110["SweepEdge Opposite"] 111["SweepEdge Opposite"] - 112["SweepEdge Adjacent"] + 112["SweepEdge Opposite"] 113["SweepEdge Opposite"] - 114["SweepEdge Adjacent"] - 115["SweepEdge Opposite"] + 114["SweepEdge Opposite"] + 115["SweepEdge Adjacent"] 116["SweepEdge Adjacent"] - 124["Sweep Extrusion
[1203, 1234, 0]"] - 125[Wall] - 126[Wall] - 127[Wall] - 128[Wall] - 129["Cap Start"] - 130["Cap End"] - 131["SweepEdge Opposite"] + 117["SweepEdge Adjacent"] + 118["SweepEdge Adjacent"] + 119["SweepEdge Adjacent"] + 120["SweepEdge Adjacent"] + 121["SweepEdge Adjacent"] + 122["SweepEdge Adjacent"] + 123["SweepEdge Adjacent"] + 124["SweepEdge Adjacent"] + 125["SweepEdge Adjacent"] + 126["SweepEdge Adjacent"] + 127["SweepEdge Adjacent"] + 128["SweepEdge Adjacent"] + 129["SweepEdge Adjacent"] + 130["SweepEdge Adjacent"] + 131["SweepEdge Adjacent"] 132["SweepEdge Adjacent"] - 133["SweepEdge Opposite"] + 133["SweepEdge Adjacent"] 134["SweepEdge Adjacent"] - 135["SweepEdge Opposite"] + 135["SweepEdge Adjacent"] 136["SweepEdge Adjacent"] - 137["SweepEdge Opposite"] + 137["SweepEdge Adjacent"] 138["SweepEdge Adjacent"] 1 --- 7 - 2 --- 29 - 3 --- 51 - 4 --- 117 - 5 --- 73 - 6 --- 95 - 7 --- 8 - 7 --- 9 - 7 --- 10 - 7 --- 11 - 7 --- 12 - 7 ---- 14 - 7 --- 13 - 8 --- 18 - 8 --- 27 - 8 --- 28 - 8 x--> 19 - 9 --- 17 - 9 --- 25 - 9 --- 26 - 9 x--> 19 - 10 --- 16 - 10 --- 23 - 10 --- 24 - 10 x--> 19 + 2 --- 12 + 3 --- 10 + 4 --- 9 + 5 --- 8 + 6 --- 11 + 7 --- 17 + 7 --- 24 + 7 --- 28 + 7 --- 33 + 7 --- 37 + 7 --- 43 + 7 ---- 52 + 8 --- 14 + 8 --- 22 + 8 --- 25 + 8 --- 34 + 8 --- 39 + 8 --- 44 + 8 ---- 51 + 9 --- 16 + 9 --- 21 + 9 --- 27 + 9 --- 31 + 9 --- 41 + 9 --- 45 + 9 ---- 49 + 10 --- 13 + 10 --- 19 + 10 --- 30 + 10 --- 32 + 10 --- 42 + 10 --- 46 + 10 ---- 54 11 --- 15 - 11 --- 21 - 11 --- 22 - 11 x--> 19 - 14 --- 15 - 14 --- 16 - 14 --- 17 - 14 --- 18 - 14 --- 19 - 14 --- 20 - 14 --- 21 - 14 --- 22 - 14 --- 23 - 14 --- 24 - 14 --- 25 - 14 --- 26 - 14 --- 27 - 14 --- 28 - 21 <--x 15 - 21 <--x 20 - 22 <--x 15 - 22 <--x 18 - 23 <--x 16 - 23 <--x 20 - 24 <--x 15 - 24 <--x 16 - 25 <--x 17 - 25 <--x 20 - 26 <--x 16 - 26 <--x 17 - 27 <--x 18 - 27 <--x 20 - 28 <--x 17 - 28 <--x 18 - 29 --- 30 - 29 --- 31 - 29 --- 32 - 29 --- 33 - 29 --- 34 - 29 ---- 36 - 29 --- 35 - 30 --- 40 - 30 --- 49 - 30 --- 50 - 30 x--> 41 - 31 --- 39 - 31 --- 47 - 31 --- 48 - 31 x--> 41 - 32 --- 38 - 32 --- 45 - 32 --- 46 - 32 x--> 41 - 33 --- 37 - 33 --- 43 - 33 --- 44 - 33 x--> 41 - 36 --- 37 - 36 --- 38 - 36 --- 39 - 36 --- 40 - 36 --- 41 - 36 --- 42 - 36 --- 43 - 36 --- 44 - 36 --- 45 - 36 --- 46 - 36 --- 47 - 36 --- 48 - 36 --- 49 - 36 --- 50 - 43 <--x 37 - 43 <--x 42 - 44 <--x 37 - 44 <--x 40 - 45 <--x 38 - 45 <--x 42 - 46 <--x 37 - 46 <--x 38 - 47 <--x 39 - 47 <--x 42 - 48 <--x 38 - 48 <--x 39 - 49 <--x 40 - 49 <--x 42 - 50 <--x 39 - 50 <--x 40 - 51 --- 52 - 51 --- 53 - 51 --- 54 - 51 --- 55 - 51 --- 56 - 51 ---- 58 - 51 --- 57 - 52 --- 62 - 52 --- 71 - 52 --- 72 - 52 x--> 63 - 53 --- 61 - 53 --- 69 - 53 --- 70 - 53 x--> 63 - 54 --- 60 - 54 --- 67 - 54 --- 68 - 54 x--> 63 - 55 --- 59 - 55 --- 65 - 55 --- 66 - 55 x--> 63 - 58 --- 59 - 58 --- 60 - 58 --- 61 - 58 --- 62 - 58 --- 63 - 58 --- 64 - 58 --- 65 - 58 --- 66 - 58 --- 67 - 58 --- 68 - 58 --- 69 - 58 --- 70 - 58 --- 71 - 58 --- 72 - 65 <--x 59 - 65 <--x 64 - 66 <--x 59 - 66 <--x 62 - 67 <--x 60 - 67 <--x 64 - 68 <--x 59 - 68 <--x 60 - 69 <--x 61 - 69 <--x 64 - 70 <--x 60 - 70 <--x 61 - 71 <--x 62 - 71 <--x 64 - 72 <--x 61 - 72 <--x 62 - 73 --- 74 - 73 --- 75 - 73 --- 76 - 73 --- 77 - 73 --- 78 - 73 ---- 80 - 73 --- 79 - 74 --- 84 - 74 --- 93 - 74 --- 94 - 74 x--> 85 - 75 --- 83 - 75 --- 91 - 75 --- 92 - 75 x--> 85 - 76 --- 82 - 76 --- 89 - 76 --- 90 - 76 x--> 85 - 77 --- 81 - 77 --- 87 - 77 --- 88 - 77 x--> 85 - 80 --- 81 - 80 --- 82 - 80 --- 83 - 80 --- 84 - 80 --- 85 - 80 --- 86 - 80 --- 87 - 80 --- 88 - 80 --- 89 - 80 --- 90 - 80 --- 91 - 80 --- 92 - 80 --- 93 - 80 --- 94 - 87 <--x 81 - 87 <--x 86 - 88 <--x 81 - 88 <--x 84 - 89 <--x 82 - 89 <--x 86 - 90 <--x 81 - 90 <--x 82 - 91 <--x 83 - 91 <--x 86 - 92 <--x 82 - 92 <--x 83 - 93 <--x 84 - 93 <--x 86 - 94 <--x 83 - 94 <--x 84 - 95 --- 96 - 95 --- 97 - 95 --- 98 - 95 --- 99 - 95 --- 100 - 95 ---- 102 - 95 --- 101 - 96 --- 106 - 96 --- 115 - 96 --- 116 - 96 x--> 107 - 97 --- 105 - 97 --- 113 - 97 --- 114 - 97 x--> 107 - 98 --- 104 - 98 --- 111 - 98 --- 112 - 98 x--> 107 - 99 --- 103 - 99 --- 109 - 99 --- 110 - 99 x--> 107 - 102 --- 103 - 102 --- 104 - 102 --- 105 - 102 --- 106 - 102 --- 107 - 102 --- 108 - 102 --- 109 - 102 --- 110 - 102 --- 111 - 102 --- 112 - 102 --- 113 - 102 --- 114 - 102 --- 115 - 102 --- 116 - 109 <--x 103 - 109 <--x 108 - 110 <--x 103 - 110 <--x 106 - 111 <--x 104 - 111 <--x 108 - 112 <--x 103 - 112 <--x 104 - 113 <--x 105 - 113 <--x 108 - 114 <--x 104 - 114 <--x 105 - 115 <--x 106 - 115 <--x 108 - 116 <--x 105 - 116 <--x 106 - 117 --- 118 - 117 --- 119 - 117 --- 120 - 117 --- 121 - 117 --- 122 - 117 ---- 124 - 117 --- 123 - 118 --- 128 - 118 --- 137 - 118 --- 138 - 118 x--> 129 - 119 --- 127 - 119 --- 135 - 119 --- 136 - 119 x--> 129 - 120 --- 126 - 120 --- 133 - 120 --- 134 - 120 x--> 129 - 121 --- 125 - 121 --- 131 - 121 --- 132 - 121 x--> 129 - 124 --- 125 - 124 --- 126 - 124 --- 127 - 124 --- 128 - 124 --- 129 - 124 --- 130 - 124 --- 131 - 124 --- 132 - 124 --- 133 - 124 --- 134 - 124 --- 135 - 124 --- 136 - 124 --- 137 - 124 --- 138 - 131 <--x 125 - 131 <--x 130 - 132 <--x 125 - 132 <--x 128 - 133 <--x 126 - 133 <--x 130 - 134 <--x 125 - 134 <--x 126 - 135 <--x 127 - 135 <--x 130 - 136 <--x 126 - 136 <--x 127 - 137 <--x 128 - 137 <--x 130 - 138 <--x 127 - 138 <--x 128 + 11 --- 23 + 11 --- 26 + 11 --- 36 + 11 --- 38 + 11 --- 47 + 11 ---- 50 + 12 --- 18 + 12 --- 20 + 12 --- 29 + 12 --- 35 + 12 --- 40 + 12 --- 48 + 12 ---- 53 + 13 --- 76 + 13 x--> 84 + 13 --- 114 + 13 --- 135 + 14 --- 64 + 14 x--> 81 + 14 --- 101 + 14 --- 125 + 15 --- 60 + 15 x--> 80 + 15 --- 96 + 15 --- 120 + 16 --- 57 + 16 x--> 79 + 16 --- 94 + 16 --- 117 + 17 --- 69 + 17 x--> 82 + 17 --- 103 + 17 --- 129 + 18 --- 72 + 18 x--> 83 + 18 --- 108 + 18 --- 131 + 19 --- 75 + 19 x--> 84 + 19 --- 112 + 19 --- 137 + 20 --- 71 + 20 x--> 83 + 20 --- 107 + 20 --- 133 + 21 --- 58 + 21 x--> 79 + 21 --- 91 + 21 --- 115 + 22 --- 65 + 22 x--> 81 + 22 --- 100 + 22 --- 126 + 23 --- 61 + 23 x--> 80 + 23 --- 98 + 23 --- 119 + 24 --- 70 + 24 x--> 82 + 24 --- 106 + 24 --- 130 + 25 --- 63 + 25 x--> 81 + 25 --- 102 + 25 --- 123 + 26 --- 59 + 26 x--> 80 + 26 --- 95 + 26 --- 122 + 27 --- 56 + 27 x--> 79 + 27 --- 92 + 27 --- 116 + 28 --- 67 + 28 x--> 82 + 28 --- 105 + 28 --- 128 + 29 --- 73 + 29 x--> 83 + 29 --- 110 + 29 --- 134 + 30 --- 78 + 30 x--> 84 + 30 --- 113 + 30 --- 138 + 31 --- 55 + 31 x--> 79 + 31 --- 93 + 31 --- 118 + 32 --- 77 + 32 x--> 84 + 32 --- 111 + 32 --- 136 + 33 --- 68 + 33 x--> 82 + 33 --- 104 + 33 --- 127 + 34 --- 66 + 34 x--> 81 + 34 --- 99 + 34 --- 124 + 35 --- 74 + 35 x--> 83 + 35 --- 109 + 35 --- 132 + 36 --- 62 + 36 x--> 80 + 36 --- 97 + 36 --- 121 + 49 --- 55 + 49 --- 56 + 49 --- 57 + 49 --- 58 + 49 --- 79 + 49 --- 85 + 49 --- 91 + 49 --- 92 + 49 --- 93 + 49 --- 94 + 49 --- 115 + 49 --- 116 + 49 --- 117 + 49 --- 118 + 50 --- 59 + 50 --- 60 + 50 --- 61 + 50 --- 62 + 50 --- 80 + 50 --- 86 + 50 --- 95 + 50 --- 96 + 50 --- 97 + 50 --- 98 + 50 --- 119 + 50 --- 120 + 50 --- 121 + 50 --- 122 + 51 --- 63 + 51 --- 64 + 51 --- 65 + 51 --- 66 + 51 --- 81 + 51 --- 87 + 51 --- 99 + 51 --- 100 + 51 --- 101 + 51 --- 102 + 51 --- 123 + 51 --- 124 + 51 --- 125 + 51 --- 126 + 52 --- 67 + 52 --- 68 + 52 --- 69 + 52 --- 70 + 52 --- 82 + 52 --- 88 + 52 --- 103 + 52 --- 104 + 52 --- 105 + 52 --- 106 + 52 --- 127 + 52 --- 128 + 52 --- 129 + 52 --- 130 + 53 --- 71 + 53 --- 72 + 53 --- 73 + 53 --- 74 + 53 --- 83 + 53 --- 89 + 53 --- 107 + 53 --- 108 + 53 --- 109 + 53 --- 110 + 53 --- 131 + 53 --- 132 + 53 --- 133 + 53 --- 134 + 54 --- 75 + 54 --- 76 + 54 --- 77 + 54 --- 78 + 54 --- 84 + 54 --- 90 + 54 --- 111 + 54 --- 112 + 54 --- 113 + 54 --- 114 + 54 --- 135 + 54 --- 136 + 54 --- 137 + 54 --- 138 + 93 <--x 55 + 116 <--x 55 + 118 <--x 55 + 92 <--x 56 + 115 <--x 56 + 116 <--x 56 + 94 <--x 57 + 117 <--x 57 + 118 <--x 57 + 91 <--x 58 + 115 <--x 58 + 117 <--x 58 + 95 <--x 59 + 119 <--x 59 + 122 <--x 59 + 96 <--x 60 + 120 <--x 60 + 121 <--x 60 + 98 <--x 61 + 119 <--x 61 + 120 <--x 61 + 97 <--x 62 + 121 <--x 62 + 122 <--x 62 + 102 <--x 63 + 123 <--x 63 + 126 <--x 63 + 101 <--x 64 + 124 <--x 64 + 125 <--x 64 + 100 <--x 65 + 125 <--x 65 + 126 <--x 65 + 99 <--x 66 + 123 <--x 66 + 124 <--x 66 + 105 <--x 67 + 128 <--x 67 + 130 <--x 67 + 104 <--x 68 + 127 <--x 68 + 128 <--x 68 + 103 <--x 69 + 127 <--x 69 + 129 <--x 69 + 106 <--x 70 + 129 <--x 70 + 130 <--x 70 + 107 <--x 71 + 131 <--x 71 + 133 <--x 71 + 108 <--x 72 + 131 <--x 72 + 132 <--x 72 + 110 <--x 73 + 133 <--x 73 + 134 <--x 73 + 109 <--x 74 + 132 <--x 74 + 134 <--x 74 + 112 <--x 75 + 135 <--x 75 + 137 <--x 75 + 114 <--x 76 + 135 <--x 76 + 136 <--x 76 + 111 <--x 77 + 136 <--x 77 + 138 <--x 77 + 113 <--x 78 + 137 <--x 78 + 138 <--x 78 + 91 <--x 85 + 92 <--x 85 + 93 <--x 85 + 94 <--x 85 + 95 <--x 86 + 96 <--x 86 + 97 <--x 86 + 98 <--x 86 + 99 <--x 87 + 100 <--x 87 + 101 <--x 87 + 102 <--x 87 + 103 <--x 88 + 104 <--x 88 + 105 <--x 88 + 106 <--x 88 + 107 <--x 89 + 108 <--x 89 + 109 <--x 89 + 110 <--x 89 + 111 <--x 90 + 112 <--x 90 + 113 <--x 90 + 114 <--x 90 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/color-cube/ops.snap b/rust/kcl-lib/tests/kcl_samples/color-cube/ops.snap index 21427de8a..34ebf684e 100644 --- a/rust/kcl-lib/tests/kcl_samples/color-cube/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/color-cube/ops.snap @@ -184,15 +184,36 @@ description: Operations executed color-cube.kcl "sourceRange": [] }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sketchRectangle", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } }, - "sourceRange": [] + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } }, { "labeledArgs": { @@ -226,236 +247,215 @@ description: Operations executed color-cube.kcl "sourceRange": [] } }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sketchRectangle", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sketchRectangle", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sketchRectangle", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sketchRectangle", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sketchRectangle", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sketchRectangle", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sketchRectangle", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" }, { "type": "GroupEnd" }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sketchRectangle", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "type": "GroupEnd" }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sketchRectangle", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "type": "GroupEnd" }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sketchRectangle", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sketchRectangle", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/artifact_commands.snap index 69ecba2b2..8a263943a 100644 --- a/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/artifact_commands.snap @@ -54,271 +54,6 @@ description: Artifact commands cycloidal-gear.kcl "hide": false } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 11.810999999999998, - "y": 7.619999999999999, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 11.811, - "y": -0.0 - }, - "radius": 7.619999999999999, - "start": { - "unit": "degrees", - "value": 90.0 - }, - "end": { - "unit": "degrees", - "value": -90.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 12.725399999999999, - "offset": { - "unit": "degrees", - "value": 60.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 7.619999999999999, - "offset": { - "unit": "degrees", - "value": -180.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 12.725399999999999, - "offset": { - "unit": "degrees", - "value": 60.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 7.619999999999999, - "offset": { - "unit": "degrees", - "value": -180.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 11.0205, - "y": -6.3627, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 3.7718999999999996, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 3.7718999999999996, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -344,271 +79,6 @@ description: Artifact commands cycloidal-gear.kcl "hide": false } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 13.94579250348968, - "y": -1.7547058014411026, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 9.0478, - "y": -7.592 - }, - "radius": 7.619999999999999, - "start": { - "unit": "degrees", - "value": 50.0 - }, - "end": { - "unit": "degrees", - "value": -130.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 12.725399999999999, - "offset": { - "unit": "degrees", - "value": 60.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 7.619999999999999, - "offset": { - "unit": "degrees", - "value": -180.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 12.725399999999999, - "offset": { - "unit": "degrees", - "value": 60.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 7.619999999999999, - "offset": { - "unit": "degrees", - "value": -180.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 4.3523, - "y": -11.958, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 3.7718999999999996, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 3.7718999999999996, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -648,6 +118,34 @@ description: Artifact commands cycloidal-gear.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -668,7 +166,58 @@ description: Artifact commands cycloidal-gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 11.810999999999998, + "y": 7.619999999999999, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 13.94579250348968, + "y": -1.7547058014411026, + "z": 0.0 + } } }, { @@ -684,6 +233,33 @@ description: Artifact commands cycloidal-gear.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -691,6 +267,91 @@ description: Artifact commands cycloidal-gear.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 11.811, + "y": -0.0 + }, + "radius": 7.619999999999999, + "start": { + "unit": "degrees", + "value": 90.0 + }, + "end": { + "unit": "degrees", + "value": -90.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 9.0478, + "y": -7.592 + }, + "radius": 7.619999999999999, + "start": { + "unit": "degrees", + "value": 50.0 + }, + "end": { + "unit": "degrees", + "value": -130.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -740,10 +401,10 @@ description: Artifact commands cycloidal-gear.kcl "path": "[uuid]", "segment": { "type": "tangential_arc", - "radius": 7.619999999999999, + "radius": 12.725399999999999, "offset": { "unit": "degrees", - "value": -180.0 + "value": 60.0 } } } @@ -780,6 +441,168 @@ description: Artifact commands cycloidal-gear.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 7.619999999999999, + "offset": { + "unit": "degrees", + "value": -180.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 7.619999999999999, + "offset": { + "unit": "degrees", + "value": -180.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 12.725399999999999, + "offset": { + "unit": "degrees", + "value": 60.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 12.725399999999999, + "offset": { + "unit": "degrees", + "value": 60.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 12.725399999999999, + "offset": { + "unit": "degrees", + "value": 60.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 7.619999999999999, + "offset": { + "unit": "degrees", + "value": -180.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 7.619999999999999, + "offset": { + "unit": "degrees", + "value": -180.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 7.619999999999999, + "offset": { + "unit": "degrees", + "value": -180.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 11.0205, + "y": -6.3627, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 4.3523, + "y": -11.958, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -805,6 +628,100 @@ description: Artifact commands cycloidal-gear.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -825,19 +742,15 @@ description: Artifact commands cycloidal-gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 3.7718999999999996, + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, "y": 0.0, - "z": 0.0 + "z": 1.0 } } }, @@ -845,7 +758,16 @@ description: Artifact commands cycloidal-gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { @@ -877,17 +799,89 @@ description: Artifact commands cycloidal-gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 3.7718999999999996, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 3.7718999999999996, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 3.7718999999999996, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 3.7718999999999996, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 3.7718999999999996, + "y": 0.0, + "z": 0.0 + } } }, { @@ -899,6 +893,66 @@ description: Artifact commands cycloidal-gear.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -923,6 +977,168 @@ description: Artifact commands cycloidal-gear.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -936,30 +1152,12 @@ description: Artifact commands cycloidal-gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -974,39 +1172,12 @@ description: Artifact commands cycloidal-gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1021,39 +1192,12 @@ description: Artifact commands cycloidal-gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1068,18 +1212,10 @@ description: Artifact commands cycloidal-gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1096,39 +1232,12 @@ description: Artifact commands cycloidal-gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1139,43 +1248,6 @@ description: Artifact commands cycloidal-gear.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1190,82 +1262,10 @@ description: Artifact commands cycloidal-gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/artifact_graph_flowchart.snap.md index 8f9037c87..88ecac4d5 100644 --- a/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/artifact_graph_flowchart.snap.md @@ -1,182 +1,182 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[644, 834, 0]"] - 3["Segment
[844, 928, 0]"] - 4["Segment
[938, 990, 0]"] - 5["Segment
[1000, 1047, 0]"] - 6["Segment
[1057, 1109, 0]"] - 7["Segment
[1119, 1166, 0]"] - 8["Segment
[1176, 1241, 0]"] - 9["Segment
[1251, 1259, 0]"] - 10[Solid2d] + subgraph path7 [Path] + 7["Path
[644, 834, 0]"] + 13["Segment
[844, 928, 0]"] + 16["Segment
[938, 990, 0]"] + 17["Segment
[1000, 1047, 0]"] + 19["Segment
[1057, 1109, 0]"] + 21["Segment
[1119, 1166, 0]"] + 23["Segment
[1176, 1241, 0]"] + 27["Segment
[1251, 1259, 0]"] + 31[Solid2d] + end + subgraph path8 [Path] + 8["Path
[644, 834, 0]"] + 14["Segment
[844, 928, 0]"] + 15["Segment
[938, 990, 0]"] + 18["Segment
[1000, 1047, 0]"] + 20["Segment
[1057, 1109, 0]"] + 22["Segment
[1119, 1166, 0]"] + 24["Segment
[1176, 1241, 0]"] + 25["Segment
[1251, 1259, 0]"] + 34[Solid2d] + end + subgraph path9 [Path] + 9["Path
[644, 834, 0]"] + 26["Segment
[1251, 1259, 0]"] + 35[Solid2d] + end + subgraph path10 [Path] + 10["Path
[1287, 1337, 0]"] + 30["Segment
[1287, 1337, 0]"] + 32[Solid2d] end subgraph path11 [Path] 11["Path
[1287, 1337, 0]"] - 12["Segment
[1287, 1337, 0]"] - 13[Solid2d] + 28["Segment
[1287, 1337, 0]"] + 33[Solid2d] end - subgraph path15 [Path] - 15["Path
[644, 834, 0]"] - 16["Segment
[844, 928, 0]"] - 17["Segment
[938, 990, 0]"] - 18["Segment
[1000, 1047, 0]"] - 19["Segment
[1057, 1109, 0]"] - 20["Segment
[1119, 1166, 0]"] - 21["Segment
[1176, 1241, 0]"] - 22["Segment
[1251, 1259, 0]"] - 23[Solid2d] - end - subgraph path24 [Path] - 24["Path
[1287, 1337, 0]"] - 25["Segment
[1287, 1337, 0]"] - 26[Solid2d] - end - subgraph path28 [Path] - 28["Path
[644, 834, 0]"] - 35["Segment
[1251, 1259, 0]"] + subgraph path12 [Path] + 12["Path
[1287, 1337, 0]"] + 29["Segment
[1287, 1337, 0]"] 36[Solid2d] end - subgraph path37 [Path] - 37["Path
[1287, 1337, 0]"] - 38["Segment
[1287, 1337, 0]"] - 39[Solid2d] - end 1["Plane
[600, 633, 0]"] - 14["Plane
[600, 633, 0]"] - 27["Plane
[600, 633, 0]"] - 29["SweepEdge Opposite"] - 30["SweepEdge Opposite"] - 31["SweepEdge Opposite"] - 32["SweepEdge Opposite"] - 33["SweepEdge Opposite"] - 34["SweepEdge Opposite"] - 40["Sweep Loft
[1464, 1553, 0]"] + 2["Plane
[600, 633, 0]"] + 3["Plane
[600, 633, 0]"] + 4["StartSketchOnPlane
[586, 634, 0]"] + 5["StartSketchOnPlane
[586, 634, 0]"] + 6["StartSketchOnPlane
[586, 634, 0]"] + 37["Sweep Loft
[1464, 1553, 0]"] + 38[Wall] + 39[Wall] + 40[Wall] 41[Wall] 42[Wall] 43[Wall] - 44[Wall] - 45[Wall] - 46[Wall] - 47["Cap Start"] - 48["Cap End"] - 49["SweepEdge Adjacent"] - 50["SweepEdge Adjacent"] - 51["SweepEdge Adjacent"] + 44["Cap Start"] + 45["Cap End"] + 46["SweepEdge Opposite"] + 47["SweepEdge Opposite"] + 48["SweepEdge Opposite"] + 49["SweepEdge Opposite"] + 50["SweepEdge Opposite"] + 51["SweepEdge Opposite"] 52["SweepEdge Adjacent"] 53["SweepEdge Adjacent"] 54["SweepEdge Adjacent"] - 55["StartSketchOnPlane
[586, 634, 0]"] - 56["StartSketchOnPlane
[586, 634, 0]"] - 57["StartSketchOnPlane
[586, 634, 0]"] - 1 --- 2 + 55["SweepEdge Adjacent"] + 56["SweepEdge Adjacent"] + 57["SweepEdge Adjacent"] + 1 <--x 5 + 1 --- 8 1 --- 11 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 --- 8 + 2 <--x 6 2 --- 9 - 2 ---- 40 - 2 --- 10 - 3 --- 41 - 3 --- 29 - 3 --- 49 - 3 x--> 47 - 4 --- 42 - 4 --- 30 - 4 --- 50 - 4 x--> 47 - 5 --- 43 - 5 --- 31 - 5 --- 51 - 5 x--> 47 - 6 --- 44 - 6 --- 32 - 6 --- 52 - 6 x--> 47 - 7 --- 45 - 7 --- 33 - 7 --- 53 - 7 x--> 47 - 8 --- 46 + 2 --- 12 + 3 <--x 4 + 3 --- 7 + 3 --- 10 + 7 --- 13 + 7 --- 16 + 7 --- 17 + 7 --- 19 + 7 --- 21 + 7 --- 23 + 7 --- 27 + 7 --- 31 + 7 x---> 37 + 8 --- 14 + 8 --- 15 + 8 --- 18 + 8 --- 20 + 8 --- 22 + 8 --- 24 + 8 --- 25 8 --- 34 - 8 --- 54 - 8 x--> 47 - 11 --- 12 - 11 --- 13 - 14 --- 15 - 14 --- 24 - 15 --- 16 - 15 --- 17 - 15 --- 18 - 15 --- 19 - 15 --- 20 - 15 --- 21 - 15 --- 22 - 15 x---> 40 - 15 --- 23 - 24 --- 25 - 24 --- 26 - 27 --- 28 - 27 --- 37 - 28 x--> 29 - 28 x--> 30 - 28 x--> 31 - 28 x--> 32 - 28 x--> 33 - 28 x--> 34 - 28 --- 35 - 28 x---> 40 - 28 --- 36 - 40 --- 29 - 29 x--> 41 - 29 x--> 48 - 40 --- 30 - 30 x--> 42 - 30 x--> 48 - 40 --- 31 - 31 x--> 43 - 31 x--> 48 - 40 --- 32 - 32 x--> 44 - 32 x--> 48 - 40 --- 33 - 33 x--> 45 - 33 x--> 48 - 40 --- 34 - 34 x--> 46 - 34 x--> 48 + 8 ---- 37 + 9 --- 26 + 9 --- 35 + 9 x---> 37 + 9 x--> 46 + 9 x--> 47 + 9 x--> 48 + 9 x--> 49 + 9 x--> 50 + 9 x--> 51 + 10 --- 30 + 10 --- 32 + 11 --- 28 + 11 --- 33 + 12 --- 29 + 12 --- 36 + 14 --- 40 + 14 x--> 44 + 14 --- 50 + 14 --- 55 + 15 --- 39 + 15 x--> 44 + 15 --- 46 + 15 --- 54 + 18 --- 41 + 18 x--> 44 + 18 --- 48 + 18 --- 53 + 20 --- 43 + 20 x--> 44 + 20 --- 49 + 20 --- 57 + 22 --- 42 + 22 x--> 44 + 22 --- 47 + 22 --- 52 + 24 --- 38 + 24 x--> 44 + 24 --- 51 + 24 --- 56 37 --- 38 37 --- 39 - 40 --- 41 - 40 --- 42 - 40 --- 43 - 40 --- 44 - 40 --- 45 - 40 --- 46 - 40 --- 47 - 40 --- 48 - 40 --- 49 - 40 --- 50 - 40 --- 51 - 40 --- 52 - 40 --- 53 - 40 --- 54 - 49 <--x 46 - 49 <--x 41 - 50 <--x 41 - 50 <--x 42 - 51 <--x 42 - 51 <--x 43 + 37 --- 40 + 37 --- 41 + 37 --- 42 + 37 --- 43 + 37 --- 44 + 37 --- 45 + 37 --- 46 + 37 --- 47 + 37 --- 48 + 37 --- 49 + 37 --- 50 + 37 --- 51 + 37 --- 52 + 37 --- 53 + 37 --- 54 + 37 --- 55 + 37 --- 56 + 37 --- 57 + 51 <--x 38 + 55 <--x 38 + 56 <--x 38 + 46 <--x 39 + 53 <--x 39 + 54 <--x 39 + 50 <--x 40 + 54 <--x 40 + 55 <--x 40 + 48 <--x 41 + 53 <--x 41 + 57 <--x 41 + 47 <--x 42 + 52 <--x 42 + 56 <--x 42 + 49 <--x 43 52 <--x 43 - 52 <--x 44 - 53 <--x 44 - 53 <--x 45 - 54 <--x 45 - 54 <--x 46 - 1 <--x 55 - 14 <--x 56 - 27 <--x 57 + 57 <--x 43 + 46 <--x 45 + 47 <--x 45 + 48 <--x 45 + 49 <--x 45 + 50 <--x 45 + 51 <--x 45 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/ops.snap b/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/ops.snap index 651b3b38a..70a1f6793 100644 --- a/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/ops.snap @@ -4,26 +4,49 @@ description: Operations executed cycloidal-gear.kcl --- [ { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cycloidalGear", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } }, - "sourceRange": [] + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "gearSketch", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } }, - "sourceRange": [] + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { "type": "KclStdLibCall", @@ -55,116 +78,6 @@ description: Operations executed cycloidal-gear.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "gearSketch", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -195,116 +108,6 @@ description: Operations executed cycloidal-gear.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "gearSketch", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -336,19 +139,15 @@ description: Operations executed cycloidal-gear.kcl "sourceRange": [] }, { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "sourceRange": [] }, { "type": "GroupBegin", @@ -362,7 +161,15 @@ description: Operations executed cycloidal-gear.kcl "sourceRange": [] }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "type": "GroupBegin", @@ -376,7 +183,15 @@ description: Operations executed cycloidal-gear.kcl "sourceRange": [] }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "type": "GroupBegin", @@ -390,7 +205,37 @@ description: Operations executed cycloidal-gear.kcl "sourceRange": [] }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "type": "GroupBegin", @@ -404,7 +249,26 @@ description: Operations executed cycloidal-gear.kcl "sourceRange": [] }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -432,7 +296,54 @@ description: Operations executed cycloidal-gear.kcl } }, { - "type": "GroupEnd" + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } }, { "labeledArgs": { @@ -468,6 +379,95 @@ description: Operations executed cycloidal-gear.kcl "type": "StdLibCall", "unlabeledArg": null }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "gearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "gearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "gearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cycloidalGear", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/kcl_samples/dodecahedron/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/dodecahedron/artifact_commands.snap index bd8892b60..3a5dad920 100644 --- a/rust/kcl-lib/tests/kcl_samples/dodecahedron/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/dodecahedron/artifact_commands.snap @@ -54,6 +54,281 @@ description: Artifact commands dodecahedron.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -74,7 +349,176 @@ description: Artifact commands dodecahedron.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { @@ -90,6 +534,149 @@ description: Artifact commands dodecahedron.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -25402.54, + "y": -25402.54, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -25405.079999999998, + "y": -25405.079999999998, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -25407.62, + "y": -25407.62, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -25410.159999999996, + "y": -25410.159999999996, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -25412.699999999997, + "y": -25412.699999999997, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -25415.239999999998, + "y": -25415.239999999998, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -25417.78, + "y": -25417.78, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -25420.319999999996, + "y": -25420.319999999996, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -25422.859999999997, + "y": -25422.859999999997, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -25402.793999999998, + "y": -25402.793999999998, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -25403.048, + "y": -25403.048, + "z": 0.0 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +684,167 @@ description: Artifact commands dodecahedron.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -114,403 +862,6 @@ description: Artifact commands dodecahedron.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 25400.0, - "y": 25400.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -25400.0, - "y": 25400.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 50800.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": { - "property": { - "x": 0.0, - "y": 0.0, - "z": -6604.0 - }, - "set": false, - "is_local": true - }, - "rotate_rpy": null, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": null, - "rotate_rpy": { - "property": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "set": false, - "is_local": false - }, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -25402.54, - "y": -25402.54, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -528,403 +879,6 @@ description: Artifact commands dodecahedron.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 25402.54, - "y": 25402.54, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -25402.54, - "y": 25402.54, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 50802.53999999999, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": { - "property": { - "x": 0.0, - "y": 0.0, - "z": -6606.54 - }, - "set": false, - "is_local": true - }, - "rotate_rpy": null, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": null, - "rotate_rpy": { - "property": { - "x": 0.0, - "y": 116.565, - "z": 0.0 - }, - "set": false, - "is_local": false - }, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -25405.079999999998, - "y": -25405.079999999998, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -942,403 +896,6 @@ description: Artifact commands dodecahedron.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 25405.08, - "y": 25405.08, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -25405.08, - "y": 25405.08, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 50805.08, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": { - "property": { - "x": 0.0, - "y": 0.0, - "z": -6609.079999999999 - }, - "set": false, - "is_local": true - }, - "rotate_rpy": null, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": null, - "rotate_rpy": { - "property": { - "x": 0.0, - "y": 116.565, - "z": 72.0 - }, - "set": false, - "is_local": false - }, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -25407.62, - "y": -25407.62, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1356,403 +913,6 @@ description: Artifact commands dodecahedron.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 25407.62, - "y": 25407.62, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -25407.62, - "y": 25407.62, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 50807.619999999995, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": { - "property": { - "x": 0.0, - "y": 0.0, - "z": -6611.62 - }, - "set": false, - "is_local": true - }, - "rotate_rpy": null, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": null, - "rotate_rpy": { - "property": { - "x": 0.0, - "y": 116.565, - "z": 144.0 - }, - "set": false, - "is_local": false - }, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -25410.159999999996, - "y": -25410.159999999996, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1770,403 +930,6 @@ description: Artifact commands dodecahedron.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 25410.16, - "y": 25410.16, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -25410.16, - "y": 25410.16, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 50810.159999999996, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": { - "property": { - "x": 0.0, - "y": 0.0, - "z": -6614.159999999999 - }, - "set": false, - "is_local": true - }, - "rotate_rpy": null, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": null, - "rotate_rpy": { - "property": { - "x": 0.0, - "y": 116.565, - "z": 216.0 - }, - "set": false, - "is_local": false - }, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -25412.699999999997, - "y": -25412.699999999997, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2184,403 +947,6 @@ description: Artifact commands dodecahedron.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 25412.7, - "y": 25412.7, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -25412.7, - "y": 25412.7, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 50812.7, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": { - "property": { - "x": 0.0, - "y": 0.0, - "z": -6616.7 - }, - "set": false, - "is_local": true - }, - "rotate_rpy": null, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": null, - "rotate_rpy": { - "property": { - "x": 0.0, - "y": 116.565, - "z": 288.0 - }, - "set": false, - "is_local": false - }, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -25415.239999999998, - "y": -25415.239999999998, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2598,403 +964,6 @@ description: Artifact commands dodecahedron.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 25415.24, - "y": 25415.24, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -25415.24, - "y": 25415.24, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 50815.24, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": { - "property": { - "x": 0.0, - "y": 0.0, - "z": -6619.24 - }, - "set": false, - "is_local": true - }, - "rotate_rpy": null, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": null, - "rotate_rpy": { - "property": { - "x": 0.0, - "y": 180.0, - "z": 0.0 - }, - "set": false, - "is_local": false - }, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -25417.78, - "y": -25417.78, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3012,403 +981,6 @@ description: Artifact commands dodecahedron.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 25417.78, - "y": 25417.78, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -25417.78, - "y": 25417.78, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 50817.78, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": { - "property": { - "x": 0.0, - "y": 0.0, - "z": -6621.78 - }, - "set": false, - "is_local": true - }, - "rotate_rpy": null, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": null, - "rotate_rpy": { - "property": { - "x": 0.0, - "y": 63.435, - "z": 36.0 - }, - "set": false, - "is_local": false - }, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -25420.319999999996, - "y": -25420.319999999996, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3426,403 +998,6 @@ description: Artifact commands dodecahedron.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 25420.32, - "y": 25420.32, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -25420.32, - "y": 25420.32, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 50820.31999999999, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": { - "property": { - "x": 0.0, - "y": 0.0, - "z": -6624.32 - }, - "set": false, - "is_local": true - }, - "rotate_rpy": null, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": null, - "rotate_rpy": { - "property": { - "x": 0.0, - "y": 63.435, - "z": 108.0 - }, - "set": false, - "is_local": false - }, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -25422.859999999997, - "y": -25422.859999999997, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3840,403 +1015,6 @@ description: Artifact commands dodecahedron.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 25422.86, - "y": 25422.86, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -25422.86, - "y": 25422.86, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 50822.86, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": { - "property": { - "x": 0.0, - "y": 0.0, - "z": -6626.859999999999 - }, - "set": false, - "is_local": true - }, - "rotate_rpy": null, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": null, - "rotate_rpy": { - "property": { - "x": 0.0, - "y": 63.435, - "z": 180.0 - }, - "set": false, - "is_local": false - }, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -25402.793999999998, - "y": -25402.793999999998, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4254,403 +1032,6 @@ description: Artifact commands dodecahedron.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 25402.794, - "y": 25402.794, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -25402.794, - "y": 25402.794, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 50802.794, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": { - "property": { - "x": 0.0, - "y": 0.0, - "z": -6606.794 - }, - "set": false, - "is_local": true - }, - "rotate_rpy": null, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "set_object_transform", - "object_id": "[uuid]", - "transforms": [ - { - "translate": null, - "rotate_rpy": { - "property": { - "x": 0.0, - "y": 63.435, - "z": 252.0 - }, - "set": false, - "is_local": false - }, - "rotate_angle_axis": null, - "scale": null - } - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -25403.048, - "y": -25403.048, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4668,6 +1049,193 @@ description: Artifact commands dodecahedron.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 25400.0, + "y": 25400.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 25402.54, + "y": 25402.54, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 25405.08, + "y": 25405.08, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 25407.62, + "y": 25407.62, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 25410.16, + "y": 25410.16, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 25412.7, + "y": 25412.7, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 25415.24, + "y": 25415.24, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 25417.78, + "y": 25417.78, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 25420.32, + "y": 25420.32, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 25422.86, + "y": 25422.86, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 25402.794, + "y": 25402.794, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -4685,6 +1253,193 @@ description: Artifact commands dodecahedron.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -25400.0, + "y": 25400.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -25402.54, + "y": 25402.54, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -25405.08, + "y": 25405.08, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -25407.62, + "y": 25407.62, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -25410.16, + "y": 25410.16, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -25412.7, + "y": 25412.7, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -25415.24, + "y": 25415.24, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -25417.78, + "y": 25417.78, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -25420.32, + "y": 25420.32, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -25422.86, + "y": 25422.86, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -25402.794, + "y": 25402.794, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -4710,6 +1465,270 @@ description: Artifact commands dodecahedron.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -4726,6 +1745,127 @@ description: Artifact commands dodecahedron.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 50800.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 50802.53999999999, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 50805.08, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 50807.619999999995, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 50810.159999999996, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 50812.7, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 50815.24, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 50817.78, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 50820.31999999999, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 50822.86, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 50802.794, + "faces": null, + "opposite": "None" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4737,6 +1877,102 @@ description: Artifact commands dodecahedron.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4748,8 +1984,1373 @@ description: Artifact commands dodecahedron.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -4765,7 +3366,7 @@ description: Artifact commands dodecahedron.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -4774,17 +3375,88 @@ description: Artifact commands dodecahedron.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -4803,39 +3475,12 @@ description: Artifact commands dodecahedron.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4850,39 +3495,12 @@ description: Artifact commands dodecahedron.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4897,39 +3515,12 @@ description: Artifact commands dodecahedron.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4944,9 +3535,1154 @@ description: Artifact commands dodecahedron.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": { + "property": { + "x": 0.0, + "y": 0.0, + "z": -6604.0 + }, + "set": false, + "is_local": true + }, + "rotate_rpy": null, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": { + "property": { + "x": 0.0, + "y": 0.0, + "z": -6606.54 + }, + "set": false, + "is_local": true + }, + "rotate_rpy": null, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": { + "property": { + "x": 0.0, + "y": 0.0, + "z": -6609.079999999999 + }, + "set": false, + "is_local": true + }, + "rotate_rpy": null, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": { + "property": { + "x": 0.0, + "y": 0.0, + "z": -6611.62 + }, + "set": false, + "is_local": true + }, + "rotate_rpy": null, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": { + "property": { + "x": 0.0, + "y": 0.0, + "z": -6614.159999999999 + }, + "set": false, + "is_local": true + }, + "rotate_rpy": null, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": { + "property": { + "x": 0.0, + "y": 0.0, + "z": -6616.7 + }, + "set": false, + "is_local": true + }, + "rotate_rpy": null, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": { + "property": { + "x": 0.0, + "y": 0.0, + "z": -6619.24 + }, + "set": false, + "is_local": true + }, + "rotate_rpy": null, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": { + "property": { + "x": 0.0, + "y": 0.0, + "z": -6621.78 + }, + "set": false, + "is_local": true + }, + "rotate_rpy": null, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": { + "property": { + "x": 0.0, + "y": 0.0, + "z": -6624.32 + }, + "set": false, + "is_local": true + }, + "rotate_rpy": null, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": { + "property": { + "x": 0.0, + "y": 0.0, + "z": -6626.859999999999 + }, + "set": false, + "is_local": true + }, + "rotate_rpy": null, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": { + "property": { + "x": 0.0, + "y": 0.0, + "z": -6606.794 + }, + "set": false, + "is_local": true + }, + "rotate_rpy": null, + "rotate_angle_axis": null, + "scale": null + } + ] } }, { @@ -4973,6 +4709,270 @@ description: Artifact commands dodecahedron.kcl ] } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": null, + "rotate_rpy": { + "property": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "set": false, + "is_local": false + }, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": null, + "rotate_rpy": { + "property": { + "x": 0.0, + "y": 116.565, + "z": 0.0 + }, + "set": false, + "is_local": false + }, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": null, + "rotate_rpy": { + "property": { + "x": 0.0, + "y": 116.565, + "z": 72.0 + }, + "set": false, + "is_local": false + }, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": null, + "rotate_rpy": { + "property": { + "x": 0.0, + "y": 116.565, + "z": 144.0 + }, + "set": false, + "is_local": false + }, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": null, + "rotate_rpy": { + "property": { + "x": 0.0, + "y": 116.565, + "z": 216.0 + }, + "set": false, + "is_local": false + }, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": null, + "rotate_rpy": { + "property": { + "x": 0.0, + "y": 116.565, + "z": 288.0 + }, + "set": false, + "is_local": false + }, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": null, + "rotate_rpy": { + "property": { + "x": 0.0, + "y": 180.0, + "z": 0.0 + }, + "set": false, + "is_local": false + }, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": null, + "rotate_rpy": { + "property": { + "x": 0.0, + "y": 63.435, + "z": 36.0 + }, + "set": false, + "is_local": false + }, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": null, + "rotate_rpy": { + "property": { + "x": 0.0, + "y": 63.435, + "z": 108.0 + }, + "set": false, + "is_local": false + }, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": null, + "rotate_rpy": { + "property": { + "x": 0.0, + "y": 63.435, + "z": 180.0 + }, + "set": false, + "is_local": false + }, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": null, + "rotate_rpy": { + "property": { + "x": 0.0, + "y": 63.435, + "z": 252.0 + }, + "set": false, + "is_local": false + }, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, { "cmdId": "[uuid]", "range": [], diff --git a/rust/kcl-lib/tests/kcl_samples/dodecahedron/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/dodecahedron/artifact_graph_flowchart.snap.md index f7b9e35d1..169edf71e 100644 --- a/rust/kcl-lib/tests/kcl_samples/dodecahedron/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/dodecahedron/artifact_graph_flowchart.snap.md @@ -1,960 +1,960 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[496, 547, 0]"] - 3["Segment
[555, 606, 0]"] - 4["Segment
[614, 664, 0]"] - 5["Segment
[672, 723, 0]"] - 6["Segment
[731, 738, 0]"] - 7[Solid2d] + subgraph path13 [Path] + 13["Path
[496, 547, 0]"] + 31["Segment
[555, 606, 0]"] + 38["Segment
[614, 664, 0]"] + 59["Segment
[672, 723, 0]"] + 67["Segment
[731, 738, 0]"] + 73[Solid2d] + end + subgraph path14 [Path] + 14["Path
[496, 547, 0]"] + 27["Segment
[555, 606, 0]"] + 45["Segment
[614, 664, 0]"] + 50["Segment
[672, 723, 0]"] + 65["Segment
[731, 738, 0]"] + 74[Solid2d] + end + subgraph path15 [Path] + 15["Path
[496, 547, 0]"] + 32["Segment
[555, 606, 0]"] + 48["Segment
[614, 664, 0]"] + 51["Segment
[672, 723, 0]"] + 71["Segment
[731, 738, 0]"] + 75[Solid2d] + end + subgraph path16 [Path] + 16["Path
[496, 547, 0]"] + 29["Segment
[555, 606, 0]"] + 40["Segment
[614, 664, 0]"] + 56["Segment
[672, 723, 0]"] + 69["Segment
[731, 738, 0]"] + 76[Solid2d] + end + subgraph path17 [Path] + 17["Path
[496, 547, 0]"] + 26["Segment
[555, 606, 0]"] + 44["Segment
[614, 664, 0]"] + 52["Segment
[672, 723, 0]"] + 63["Segment
[731, 738, 0]"] + 77[Solid2d] + end + subgraph path18 [Path] + 18["Path
[496, 547, 0]"] + 28["Segment
[555, 606, 0]"] + 47["Segment
[614, 664, 0]"] + 58["Segment
[672, 723, 0]"] + 64["Segment
[731, 738, 0]"] + 78[Solid2d] + end + subgraph path19 [Path] + 19["Path
[496, 547, 0]"] + 35["Segment
[555, 606, 0]"] + 41["Segment
[614, 664, 0]"] + 57["Segment
[672, 723, 0]"] + 66["Segment
[731, 738, 0]"] + 79[Solid2d] + end + subgraph path20 [Path] + 20["Path
[496, 547, 0]"] + 34["Segment
[555, 606, 0]"] + 42["Segment
[614, 664, 0]"] + 55["Segment
[672, 723, 0]"] + 68["Segment
[731, 738, 0]"] + 80[Solid2d] + end + subgraph path21 [Path] + 21["Path
[496, 547, 0]"] + 30["Segment
[555, 606, 0]"] + 39["Segment
[614, 664, 0]"] + 60["Segment
[672, 723, 0]"] + 70["Segment
[731, 738, 0]"] + 81[Solid2d] + end + subgraph path22 [Path] + 22["Path
[496, 547, 0]"] + 25["Segment
[555, 606, 0]"] + 46["Segment
[614, 664, 0]"] + 54["Segment
[672, 723, 0]"] + 72["Segment
[731, 738, 0]"] + 82[Solid2d] + end + subgraph path23 [Path] + 23["Path
[496, 547, 0]"] + 36["Segment
[555, 606, 0]"] + 37["Segment
[614, 664, 0]"] + 49["Segment
[672, 723, 0]"] + 62["Segment
[731, 738, 0]"] + 83[Solid2d] end subgraph path24 [Path] 24["Path
[496, 547, 0]"] - 25["Segment
[555, 606, 0]"] - 26["Segment
[614, 664, 0]"] - 27["Segment
[672, 723, 0]"] - 28["Segment
[731, 738, 0]"] - 29[Solid2d] - end - subgraph path46 [Path] - 46["Path
[496, 547, 0]"] - 47["Segment
[555, 606, 0]"] - 48["Segment
[614, 664, 0]"] - 49["Segment
[672, 723, 0]"] - 50["Segment
[731, 738, 0]"] - 51[Solid2d] - end - subgraph path68 [Path] - 68["Path
[496, 547, 0]"] - 69["Segment
[555, 606, 0]"] - 70["Segment
[614, 664, 0]"] - 71["Segment
[672, 723, 0]"] - 72["Segment
[731, 738, 0]"] - 73[Solid2d] - end - subgraph path90 [Path] - 90["Path
[496, 547, 0]"] - 91["Segment
[555, 606, 0]"] - 92["Segment
[614, 664, 0]"] - 93["Segment
[672, 723, 0]"] - 94["Segment
[731, 738, 0]"] - 95[Solid2d] - end - subgraph path112 [Path] - 112["Path
[496, 547, 0]"] - 113["Segment
[555, 606, 0]"] - 114["Segment
[614, 664, 0]"] - 115["Segment
[672, 723, 0]"] - 116["Segment
[731, 738, 0]"] - 117[Solid2d] - end - subgraph path134 [Path] - 134["Path
[496, 547, 0]"] - 135["Segment
[555, 606, 0]"] - 136["Segment
[614, 664, 0]"] - 137["Segment
[672, 723, 0]"] - 138["Segment
[731, 738, 0]"] - 139[Solid2d] - end - subgraph path156 [Path] - 156["Path
[496, 547, 0]"] - 157["Segment
[555, 606, 0]"] - 158["Segment
[614, 664, 0]"] - 159["Segment
[672, 723, 0]"] - 160["Segment
[731, 738, 0]"] - 161[Solid2d] - end - subgraph path178 [Path] - 178["Path
[496, 547, 0]"] - 179["Segment
[555, 606, 0]"] - 180["Segment
[614, 664, 0]"] - 181["Segment
[672, 723, 0]"] - 182["Segment
[731, 738, 0]"] - 183[Solid2d] - end - subgraph path200 [Path] - 200["Path
[496, 547, 0]"] - 201["Segment
[555, 606, 0]"] - 202["Segment
[614, 664, 0]"] - 203["Segment
[672, 723, 0]"] - 204["Segment
[731, 738, 0]"] - 205[Solid2d] - end - subgraph path222 [Path] - 222["Path
[496, 547, 0]"] - 223["Segment
[555, 606, 0]"] - 224["Segment
[614, 664, 0]"] - 225["Segment
[672, 723, 0]"] - 226["Segment
[731, 738, 0]"] - 227[Solid2d] - end - subgraph path244 [Path] - 244["Path
[496, 547, 0]"] - 245["Segment
[555, 606, 0]"] - 246["Segment
[614, 664, 0]"] - 247["Segment
[672, 723, 0]"] - 248["Segment
[731, 738, 0]"] - 249[Solid2d] + 33["Segment
[555, 606, 0]"] + 43["Segment
[614, 664, 0]"] + 53["Segment
[672, 723, 0]"] + 61["Segment
[731, 738, 0]"] + 84[Solid2d] end 1["Plane
[471, 488, 0]"] - 8["Sweep Extrusion
[752, 802, 0]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12[Wall] - 13["Cap Start"] - 14["Cap End"] - 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 23["Plane
[471, 488, 0]"] - 30["Sweep Extrusion
[752, 802, 0]"] - 31[Wall] - 32[Wall] - 33[Wall] - 34[Wall] - 35["Cap Start"] - 36["Cap End"] - 37["SweepEdge Opposite"] - 38["SweepEdge Adjacent"] - 39["SweepEdge Opposite"] - 40["SweepEdge Adjacent"] - 41["SweepEdge Opposite"] - 42["SweepEdge Adjacent"] - 43["SweepEdge Opposite"] - 44["SweepEdge Adjacent"] - 45["Plane
[471, 488, 0]"] - 52["Sweep Extrusion
[752, 802, 0]"] - 53[Wall] - 54[Wall] - 55[Wall] - 56[Wall] - 57["Cap Start"] - 58["Cap End"] - 59["SweepEdge Opposite"] - 60["SweepEdge Adjacent"] - 61["SweepEdge Opposite"] - 62["SweepEdge Adjacent"] - 63["SweepEdge Opposite"] - 64["SweepEdge Adjacent"] - 65["SweepEdge Opposite"] - 66["SweepEdge Adjacent"] - 67["Plane
[471, 488, 0]"] - 74["Sweep Extrusion
[752, 802, 0]"] - 75[Wall] - 76[Wall] - 77[Wall] - 78[Wall] - 79["Cap Start"] - 80["Cap End"] - 81["SweepEdge Opposite"] - 82["SweepEdge Adjacent"] - 83["SweepEdge Opposite"] - 84["SweepEdge Adjacent"] - 85["SweepEdge Opposite"] - 86["SweepEdge Adjacent"] - 87["SweepEdge Opposite"] - 88["SweepEdge Adjacent"] - 89["Plane
[471, 488, 0]"] + 2["Plane
[471, 488, 0]"] + 3["Plane
[471, 488, 0]"] + 4["Plane
[471, 488, 0]"] + 5["Plane
[471, 488, 0]"] + 6["Plane
[471, 488, 0]"] + 7["Plane
[471, 488, 0]"] + 8["Plane
[471, 488, 0]"] + 9["Plane
[471, 488, 0]"] + 10["Plane
[471, 488, 0]"] + 11["Plane
[471, 488, 0]"] + 12["Plane
[471, 488, 0]"] + 85["Sweep Extrusion
[752, 802, 0]"] + 86["Sweep Extrusion
[752, 802, 0]"] + 87["Sweep Extrusion
[752, 802, 0]"] + 88["Sweep Extrusion
[752, 802, 0]"] + 89["Sweep Extrusion
[752, 802, 0]"] + 90["Sweep Extrusion
[752, 802, 0]"] + 91["Sweep Extrusion
[752, 802, 0]"] + 92["Sweep Extrusion
[752, 802, 0]"] + 93["Sweep Extrusion
[752, 802, 0]"] + 94["Sweep Extrusion
[752, 802, 0]"] + 95["Sweep Extrusion
[752, 802, 0]"] 96["Sweep Extrusion
[752, 802, 0]"] - 97[Wall] - 98[Wall] - 99[Wall] - 100[Wall] - 101["Cap Start"] - 102["Cap End"] - 103["SweepEdge Opposite"] - 104["SweepEdge Adjacent"] - 105["SweepEdge Opposite"] - 106["SweepEdge Adjacent"] - 107["SweepEdge Opposite"] - 108["SweepEdge Adjacent"] - 109["SweepEdge Opposite"] - 110["SweepEdge Adjacent"] - 111["Plane
[471, 488, 0]"] - 118["Sweep Extrusion
[752, 802, 0]"] + 97["CompositeSolid Intersect
[1997, 2027, 0]"] + 98["CompositeSolid Intersect
[1997, 2027, 0]"] + 99["CompositeSolid Intersect
[1997, 2027, 0]"] + 100["CompositeSolid Intersect
[1997, 2027, 0]"] + 101["CompositeSolid Intersect
[1997, 2027, 0]"] + 102["CompositeSolid Intersect
[1997, 2027, 0]"] + 103["CompositeSolid Intersect
[1997, 2027, 0]"] + 104["CompositeSolid Intersect
[1997, 2027, 0]"] + 105["CompositeSolid Intersect
[1997, 2027, 0]"] + 106["CompositeSolid Intersect
[1997, 2027, 0]"] + 107["CompositeSolid Intersect
[1997, 2027, 0]"] + 108[Wall] + 109[Wall] + 110[Wall] + 111[Wall] + 112[Wall] + 113[Wall] + 114[Wall] + 115[Wall] + 116[Wall] + 117[Wall] + 118[Wall] 119[Wall] 120[Wall] 121[Wall] 122[Wall] - 123["Cap Start"] - 124["Cap End"] - 125["SweepEdge Opposite"] - 126["SweepEdge Adjacent"] - 127["SweepEdge Opposite"] - 128["SweepEdge Adjacent"] - 129["SweepEdge Opposite"] - 130["SweepEdge Adjacent"] - 131["SweepEdge Opposite"] - 132["SweepEdge Adjacent"] - 133["Plane
[471, 488, 0]"] - 140["Sweep Extrusion
[752, 802, 0]"] + 123[Wall] + 124[Wall] + 125[Wall] + 126[Wall] + 127[Wall] + 128[Wall] + 129[Wall] + 130[Wall] + 131[Wall] + 132[Wall] + 133[Wall] + 134[Wall] + 135[Wall] + 136[Wall] + 137[Wall] + 138[Wall] + 139[Wall] + 140[Wall] 141[Wall] 142[Wall] 143[Wall] 144[Wall] - 145["Cap Start"] - 146["Cap End"] - 147["SweepEdge Opposite"] - 148["SweepEdge Adjacent"] - 149["SweepEdge Opposite"] - 150["SweepEdge Adjacent"] - 151["SweepEdge Opposite"] - 152["SweepEdge Adjacent"] - 153["SweepEdge Opposite"] - 154["SweepEdge Adjacent"] - 155["Plane
[471, 488, 0]"] - 162["Sweep Extrusion
[752, 802, 0]"] - 163[Wall] - 164[Wall] - 165[Wall] - 166[Wall] + 145[Wall] + 146[Wall] + 147[Wall] + 148[Wall] + 149[Wall] + 150[Wall] + 151[Wall] + 152[Wall] + 153[Wall] + 154[Wall] + 155[Wall] + 156["Cap Start"] + 157["Cap Start"] + 158["Cap Start"] + 159["Cap Start"] + 160["Cap Start"] + 161["Cap Start"] + 162["Cap Start"] + 163["Cap Start"] + 164["Cap Start"] + 165["Cap Start"] + 166["Cap Start"] 167["Cap Start"] 168["Cap End"] - 169["SweepEdge Opposite"] - 170["SweepEdge Adjacent"] - 171["SweepEdge Opposite"] - 172["SweepEdge Adjacent"] - 173["SweepEdge Opposite"] - 174["SweepEdge Adjacent"] - 175["SweepEdge Opposite"] - 176["SweepEdge Adjacent"] - 177["Plane
[471, 488, 0]"] - 184["Sweep Extrusion
[752, 802, 0]"] - 185[Wall] - 186[Wall] - 187[Wall] - 188[Wall] - 189["Cap Start"] - 190["Cap End"] + 169["Cap End"] + 170["Cap End"] + 171["Cap End"] + 172["Cap End"] + 173["Cap End"] + 174["Cap End"] + 175["Cap End"] + 176["Cap End"] + 177["Cap End"] + 178["Cap End"] + 179["Cap End"] + 180["SweepEdge Opposite"] + 181["SweepEdge Opposite"] + 182["SweepEdge Opposite"] + 183["SweepEdge Opposite"] + 184["SweepEdge Opposite"] + 185["SweepEdge Opposite"] + 186["SweepEdge Opposite"] + 187["SweepEdge Opposite"] + 188["SweepEdge Opposite"] + 189["SweepEdge Opposite"] + 190["SweepEdge Opposite"] 191["SweepEdge Opposite"] - 192["SweepEdge Adjacent"] + 192["SweepEdge Opposite"] 193["SweepEdge Opposite"] - 194["SweepEdge Adjacent"] + 194["SweepEdge Opposite"] 195["SweepEdge Opposite"] - 196["SweepEdge Adjacent"] + 196["SweepEdge Opposite"] 197["SweepEdge Opposite"] - 198["SweepEdge Adjacent"] - 199["Plane
[471, 488, 0]"] - 206["Sweep Extrusion
[752, 802, 0]"] - 207[Wall] - 208[Wall] - 209[Wall] - 210[Wall] - 211["Cap Start"] - 212["Cap End"] + 198["SweepEdge Opposite"] + 199["SweepEdge Opposite"] + 200["SweepEdge Opposite"] + 201["SweepEdge Opposite"] + 202["SweepEdge Opposite"] + 203["SweepEdge Opposite"] + 204["SweepEdge Opposite"] + 205["SweepEdge Opposite"] + 206["SweepEdge Opposite"] + 207["SweepEdge Opposite"] + 208["SweepEdge Opposite"] + 209["SweepEdge Opposite"] + 210["SweepEdge Opposite"] + 211["SweepEdge Opposite"] + 212["SweepEdge Opposite"] 213["SweepEdge Opposite"] - 214["SweepEdge Adjacent"] + 214["SweepEdge Opposite"] 215["SweepEdge Opposite"] - 216["SweepEdge Adjacent"] + 216["SweepEdge Opposite"] 217["SweepEdge Opposite"] - 218["SweepEdge Adjacent"] + 218["SweepEdge Opposite"] 219["SweepEdge Opposite"] - 220["SweepEdge Adjacent"] - 221["Plane
[471, 488, 0]"] - 228["Sweep Extrusion
[752, 802, 0]"] - 229[Wall] - 230[Wall] - 231[Wall] - 232[Wall] - 233["Cap Start"] - 234["Cap End"] - 235["SweepEdge Opposite"] + 220["SweepEdge Opposite"] + 221["SweepEdge Opposite"] + 222["SweepEdge Opposite"] + 223["SweepEdge Opposite"] + 224["SweepEdge Opposite"] + 225["SweepEdge Opposite"] + 226["SweepEdge Opposite"] + 227["SweepEdge Opposite"] + 228["SweepEdge Adjacent"] + 229["SweepEdge Adjacent"] + 230["SweepEdge Adjacent"] + 231["SweepEdge Adjacent"] + 232["SweepEdge Adjacent"] + 233["SweepEdge Adjacent"] + 234["SweepEdge Adjacent"] + 235["SweepEdge Adjacent"] 236["SweepEdge Adjacent"] - 237["SweepEdge Opposite"] + 237["SweepEdge Adjacent"] 238["SweepEdge Adjacent"] - 239["SweepEdge Opposite"] + 239["SweepEdge Adjacent"] 240["SweepEdge Adjacent"] - 241["SweepEdge Opposite"] + 241["SweepEdge Adjacent"] 242["SweepEdge Adjacent"] - 243["Plane
[471, 488, 0]"] - 250["Sweep Extrusion
[752, 802, 0]"] - 251[Wall] - 252[Wall] - 253[Wall] - 254[Wall] - 255["Cap Start"] - 256["Cap End"] - 257["SweepEdge Opposite"] + 243["SweepEdge Adjacent"] + 244["SweepEdge Adjacent"] + 245["SweepEdge Adjacent"] + 246["SweepEdge Adjacent"] + 247["SweepEdge Adjacent"] + 248["SweepEdge Adjacent"] + 249["SweepEdge Adjacent"] + 250["SweepEdge Adjacent"] + 251["SweepEdge Adjacent"] + 252["SweepEdge Adjacent"] + 253["SweepEdge Adjacent"] + 254["SweepEdge Adjacent"] + 255["SweepEdge Adjacent"] + 256["SweepEdge Adjacent"] + 257["SweepEdge Adjacent"] 258["SweepEdge Adjacent"] - 259["SweepEdge Opposite"] + 259["SweepEdge Adjacent"] 260["SweepEdge Adjacent"] - 261["SweepEdge Opposite"] + 261["SweepEdge Adjacent"] 262["SweepEdge Adjacent"] - 263["SweepEdge Opposite"] + 263["SweepEdge Adjacent"] 264["SweepEdge Adjacent"] - 265["CompositeSolid Intersect
[1997, 2027, 0]"] - 266["CompositeSolid Intersect
[1997, 2027, 0]"] - 267["CompositeSolid Intersect
[1997, 2027, 0]"] - 268["CompositeSolid Intersect
[1997, 2027, 0]"] - 269["CompositeSolid Intersect
[1997, 2027, 0]"] - 270["CompositeSolid Intersect
[1997, 2027, 0]"] - 271["CompositeSolid Intersect
[1997, 2027, 0]"] - 272["CompositeSolid Intersect
[1997, 2027, 0]"] - 273["CompositeSolid Intersect
[1997, 2027, 0]"] - 274["CompositeSolid Intersect
[1997, 2027, 0]"] - 275["CompositeSolid Intersect
[1997, 2027, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 9 - 3 --- 15 + 265["SweepEdge Adjacent"] + 266["SweepEdge Adjacent"] + 267["SweepEdge Adjacent"] + 268["SweepEdge Adjacent"] + 269["SweepEdge Adjacent"] + 270["SweepEdge Adjacent"] + 271["SweepEdge Adjacent"] + 272["SweepEdge Adjacent"] + 273["SweepEdge Adjacent"] + 274["SweepEdge Adjacent"] + 275["SweepEdge Adjacent"] + 1 --- 23 + 2 --- 14 3 --- 16 - 3 x--> 13 - 4 --- 10 - 4 --- 17 - 4 --- 18 - 4 x--> 13 - 5 --- 11 - 5 --- 19 - 5 --- 20 - 5 x--> 13 - 6 --- 12 + 4 --- 24 + 5 --- 15 6 --- 21 - 6 --- 22 - 6 x--> 13 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 - 8 --- 16 - 8 --- 17 + 7 --- 22 8 --- 18 - 8 --- 19 - 8 --- 20 - 8 --- 21 - 8 --- 22 - 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 10 - 17 <--x 10 - 17 <--x 14 - 18 <--x 10 - 18 <--x 11 - 19 <--x 11 - 19 <--x 14 - 20 <--x 11 - 20 <--x 12 - 21 <--x 12 - 21 <--x 14 - 22 <--x 9 - 22 <--x 12 - 23 --- 24 - 24 --- 25 - 24 --- 26 - 24 --- 27 - 24 --- 28 - 24 ---- 30 - 24 --- 29 - 25 --- 31 - 25 --- 37 - 25 --- 38 - 25 x--> 35 - 26 --- 32 - 26 --- 39 - 26 --- 40 - 26 x--> 35 - 27 --- 33 - 27 --- 41 - 27 --- 42 - 27 x--> 35 - 28 --- 34 - 28 --- 43 - 28 --- 44 - 28 x--> 35 - 30 --- 31 - 30 --- 32 - 30 --- 33 - 30 --- 34 - 30 --- 35 - 30 --- 36 - 30 --- 37 - 30 --- 38 - 30 --- 39 - 30 --- 40 - 30 --- 41 - 30 --- 42 - 30 --- 43 - 30 --- 44 - 37 <--x 31 - 37 <--x 36 - 38 <--x 31 - 38 <--x 32 - 39 <--x 32 - 39 <--x 36 - 40 <--x 32 - 40 <--x 33 - 41 <--x 33 - 41 <--x 36 - 42 <--x 33 - 42 <--x 34 - 43 <--x 34 - 43 <--x 36 - 44 <--x 31 - 44 <--x 34 - 45 --- 46 - 46 --- 47 - 46 --- 48 - 46 --- 49 - 46 --- 50 - 46 ---- 52 - 46 --- 51 - 47 --- 53 - 47 --- 59 - 47 --- 60 - 47 x--> 57 - 48 --- 54 - 48 --- 61 - 48 --- 62 - 48 x--> 57 - 49 --- 55 - 49 --- 63 - 49 --- 64 - 49 x--> 57 - 50 --- 56 - 50 --- 65 - 50 --- 66 - 50 x--> 57 - 52 --- 53 - 52 --- 54 - 52 --- 55 - 52 --- 56 - 52 --- 57 - 52 --- 58 - 52 --- 59 - 52 --- 60 - 52 --- 61 - 52 --- 62 - 52 --- 63 - 52 --- 64 - 52 --- 65 - 52 --- 66 - 59 <--x 53 - 59 <--x 58 - 60 <--x 53 - 60 <--x 54 - 61 <--x 54 - 61 <--x 58 - 62 <--x 54 - 62 <--x 55 - 63 <--x 55 - 63 <--x 58 - 64 <--x 55 - 64 <--x 56 - 65 <--x 56 - 65 <--x 58 - 66 <--x 53 - 66 <--x 56 - 67 --- 68 - 68 --- 69 - 68 --- 70 - 68 --- 71 - 68 --- 72 - 68 ---- 74 - 68 --- 73 - 69 --- 75 - 69 --- 81 - 69 --- 82 - 69 x--> 79 - 70 --- 76 - 70 --- 83 - 70 --- 84 - 70 x--> 79 - 71 --- 77 - 71 --- 85 - 71 --- 86 - 71 x--> 79 - 72 --- 78 - 72 --- 87 - 72 --- 88 - 72 x--> 79 - 74 --- 75 - 74 --- 76 - 74 --- 77 - 74 --- 78 - 74 --- 79 - 74 --- 80 - 74 --- 81 - 74 --- 82 - 74 --- 83 - 74 --- 84 - 74 --- 85 - 74 --- 86 - 74 --- 87 - 74 --- 88 - 81 <--x 75 - 81 <--x 80 - 82 <--x 75 - 82 <--x 76 - 83 <--x 76 - 83 <--x 80 - 84 <--x 76 - 84 <--x 77 - 85 <--x 77 - 85 <--x 80 - 86 <--x 77 - 86 <--x 78 - 87 <--x 78 - 87 <--x 80 - 88 <--x 75 - 88 <--x 78 - 89 --- 90 - 90 --- 91 - 90 --- 92 - 90 --- 93 - 90 --- 94 - 90 ---- 96 - 90 --- 95 - 91 --- 97 - 91 --- 103 - 91 --- 104 - 91 x--> 101 - 92 --- 98 - 92 --- 105 - 92 --- 106 - 92 x--> 101 - 93 --- 99 - 93 --- 107 - 93 --- 108 - 93 x--> 101 - 94 --- 100 - 94 --- 109 - 94 --- 110 - 94 x--> 101 - 96 --- 97 - 96 --- 98 - 96 --- 99 - 96 --- 100 - 96 --- 101 - 96 --- 102 - 96 --- 103 - 96 --- 104 - 96 --- 105 - 96 --- 106 - 96 --- 107 - 96 --- 108 - 96 --- 109 - 96 --- 110 - 103 <--x 97 - 103 <--x 102 - 104 <--x 97 - 104 <--x 98 - 105 <--x 98 - 105 <--x 102 - 106 <--x 98 - 106 <--x 99 - 107 <--x 99 - 107 <--x 102 - 108 <--x 99 - 108 <--x 100 - 109 <--x 100 - 109 <--x 102 - 110 <--x 97 - 110 <--x 100 - 111 --- 112 - 112 --- 113 - 112 --- 114 - 112 --- 115 - 112 --- 116 - 112 ---- 118 - 112 --- 117 - 113 --- 119 - 113 --- 125 - 113 --- 126 - 113 x--> 123 - 114 --- 120 - 114 --- 127 - 114 --- 128 - 114 x--> 123 - 115 --- 121 - 115 --- 129 - 115 --- 130 - 115 x--> 123 - 116 --- 122 - 116 --- 131 - 116 --- 132 - 116 x--> 123 - 118 --- 119 - 118 --- 120 - 118 --- 121 - 118 --- 122 - 118 --- 123 - 118 --- 124 - 118 --- 125 - 118 --- 126 - 118 --- 127 - 118 --- 128 - 118 --- 129 - 118 --- 130 - 118 --- 131 - 118 --- 132 - 125 <--x 119 - 125 <--x 124 - 126 <--x 119 - 126 <--x 120 - 127 <--x 120 - 127 <--x 124 - 128 <--x 120 - 128 <--x 121 - 129 <--x 121 - 129 <--x 124 - 130 <--x 121 - 130 <--x 122 - 131 <--x 122 - 131 <--x 124 - 132 <--x 119 - 132 <--x 122 - 133 --- 134 - 134 --- 135 - 134 --- 136 - 134 --- 137 - 134 --- 138 - 134 ---- 140 - 134 --- 139 - 135 --- 141 - 135 --- 147 - 135 --- 148 - 135 x--> 145 - 136 --- 142 - 136 --- 149 - 136 --- 150 - 136 x--> 145 - 137 --- 143 - 137 --- 151 - 137 --- 152 - 137 x--> 145 - 138 --- 144 - 138 --- 153 - 138 --- 154 - 138 x--> 145 - 140 --- 141 - 140 --- 142 - 140 --- 143 - 140 --- 144 - 140 --- 145 - 140 --- 146 - 140 --- 147 - 140 --- 148 - 140 --- 149 - 140 --- 150 - 140 --- 151 - 140 --- 152 - 140 --- 153 - 140 --- 154 - 147 <--x 141 - 147 <--x 146 - 148 <--x 141 - 148 <--x 142 - 149 <--x 142 - 149 <--x 146 - 150 <--x 142 - 150 <--x 143 - 151 <--x 143 - 151 <--x 146 - 152 <--x 143 - 152 <--x 144 - 153 <--x 144 - 153 <--x 146 - 154 <--x 141 - 154 <--x 144 - 155 --- 156 - 156 --- 157 - 156 --- 158 - 156 --- 159 - 156 --- 160 - 156 ---- 162 - 156 --- 161 - 157 --- 163 - 157 --- 169 - 157 --- 170 - 157 x--> 167 - 158 --- 164 - 158 --- 171 - 158 --- 172 - 158 x--> 167 - 159 --- 165 - 159 --- 173 - 159 --- 174 - 159 x--> 167 - 160 --- 166 - 160 --- 175 - 160 --- 176 - 160 x--> 167 - 162 --- 163 - 162 --- 164 - 162 --- 165 - 162 --- 166 - 162 --- 167 - 162 --- 168 - 162 --- 169 - 162 --- 170 - 162 --- 171 - 162 --- 172 - 162 --- 173 - 162 --- 174 - 162 --- 175 - 162 --- 176 - 169 <--x 163 - 169 <--x 168 - 170 <--x 163 - 170 <--x 164 - 171 <--x 164 - 171 <--x 168 - 172 <--x 164 - 172 <--x 165 - 173 <--x 165 - 173 <--x 168 - 174 <--x 165 - 174 <--x 166 - 175 <--x 166 - 175 <--x 168 - 176 <--x 163 - 176 <--x 166 - 177 --- 178 - 178 --- 179 - 178 --- 180 - 178 --- 181 - 178 --- 182 - 178 ---- 184 - 178 --- 183 - 179 --- 185 - 179 --- 191 - 179 --- 192 - 179 x--> 189 - 180 --- 186 - 180 --- 193 - 180 --- 194 - 180 x--> 189 - 181 --- 187 - 181 --- 195 - 181 --- 196 - 181 x--> 189 - 182 --- 188 - 182 --- 197 - 182 --- 198 - 182 x--> 189 - 184 --- 185 - 184 --- 186 - 184 --- 187 - 184 --- 188 - 184 --- 189 - 184 --- 190 - 184 --- 191 - 184 --- 192 - 184 --- 193 - 184 --- 194 - 184 --- 195 - 184 --- 196 - 184 --- 197 - 184 --- 198 - 191 <--x 185 - 191 <--x 190 - 192 <--x 185 - 192 <--x 186 - 193 <--x 186 - 193 <--x 190 - 194 <--x 186 - 194 <--x 187 - 195 <--x 187 - 195 <--x 190 - 196 <--x 187 - 196 <--x 188 - 197 <--x 188 - 197 <--x 190 - 198 <--x 185 - 198 <--x 188 - 199 --- 200 - 200 --- 201 - 200 --- 202 - 200 --- 203 - 200 --- 204 - 200 ---- 206 - 200 --- 205 - 201 --- 207 - 201 --- 213 - 201 --- 214 - 201 x--> 211 - 202 --- 208 - 202 --- 215 - 202 --- 216 - 202 x--> 211 - 203 --- 209 - 203 --- 217 - 203 --- 218 - 203 x--> 211 - 204 --- 210 - 204 --- 219 - 204 --- 220 - 204 x--> 211 - 206 --- 207 - 206 --- 208 - 206 --- 209 - 206 --- 210 - 206 --- 211 - 206 --- 212 - 206 --- 213 - 206 --- 214 - 206 --- 215 - 206 --- 216 - 206 --- 217 - 206 --- 218 - 206 --- 219 - 206 --- 220 - 213 <--x 207 - 213 <--x 212 - 214 <--x 207 - 214 <--x 208 - 215 <--x 208 - 215 <--x 212 - 216 <--x 208 - 216 <--x 209 - 217 <--x 209 - 217 <--x 212 - 218 <--x 209 - 218 <--x 210 - 219 <--x 210 - 219 <--x 212 - 220 <--x 207 - 220 <--x 210 - 221 --- 222 - 222 --- 223 - 222 --- 224 - 222 --- 225 - 222 --- 226 - 222 ---- 228 - 222 --- 227 - 223 --- 229 - 223 --- 235 - 223 --- 236 - 223 x--> 233 - 224 --- 230 - 224 --- 237 - 224 --- 238 - 224 x--> 233 - 225 --- 231 - 225 --- 239 - 225 --- 240 - 225 x--> 233 - 226 --- 232 - 226 --- 241 - 226 --- 242 - 226 x--> 233 - 228 --- 229 - 228 --- 230 - 228 --- 231 - 228 --- 232 - 228 --- 233 - 228 --- 234 - 228 --- 235 - 228 --- 236 - 228 --- 237 - 228 --- 238 - 228 --- 239 - 228 --- 240 - 228 --- 241 - 228 --- 242 - 235 <--x 229 - 235 <--x 234 - 236 <--x 229 - 236 <--x 230 - 237 <--x 230 - 237 <--x 234 - 238 <--x 230 - 238 <--x 231 - 239 <--x 231 - 239 <--x 234 - 240 <--x 231 - 240 <--x 232 - 241 <--x 232 - 241 <--x 234 - 242 <--x 229 - 242 <--x 232 - 243 --- 244 - 244 --- 245 - 244 --- 246 - 244 --- 247 - 244 --- 248 - 244 ---- 250 - 244 --- 249 - 245 --- 251 - 245 --- 257 - 245 --- 258 - 245 x--> 255 - 246 --- 252 - 246 --- 259 - 246 --- 260 - 246 x--> 255 - 247 --- 253 - 247 --- 261 - 247 --- 262 - 247 x--> 255 - 248 --- 254 - 248 --- 263 - 248 --- 264 - 248 x--> 255 - 250 --- 251 - 250 --- 252 - 250 --- 253 - 250 --- 254 - 250 --- 255 - 250 --- 256 - 250 --- 257 - 250 --- 258 - 250 --- 259 - 250 --- 260 - 250 --- 261 - 250 --- 262 - 250 --- 263 - 250 --- 264 - 257 <--x 251 - 257 <--x 256 - 258 <--x 251 - 258 <--x 252 - 259 <--x 252 - 259 <--x 256 - 260 <--x 252 - 260 <--x 253 - 261 <--x 253 - 261 <--x 256 - 262 <--x 253 - 262 <--x 254 - 263 <--x 254 - 263 <--x 256 - 264 <--x 251 - 264 <--x 254 - 2 <--x 265 - 244 <--x 265 - 24 <--x 266 - 265 <--x 266 - 46 <--x 267 - 266 <--x 267 - 68 <--x 268 - 267 <--x 268 - 90 <--x 269 - 268 <--x 269 - 112 <--x 270 - 269 <--x 270 - 134 <--x 271 - 270 <--x 271 - 156 <--x 272 - 271 <--x 272 - 178 <--x 273 - 272 <--x 273 - 200 <--x 274 - 273 <--x 274 - 222 <--x 275 - 274 <--x 275 + 9 --- 19 + 10 --- 20 + 11 --- 13 + 12 --- 17 + 13 --- 31 + 13 --- 38 + 13 --- 59 + 13 --- 67 + 13 --- 73 + 13 ---- 90 + 13 <--x 106 + 14 --- 27 + 14 --- 45 + 14 --- 50 + 14 --- 65 + 14 --- 74 + 14 ---- 92 + 14 <--x 101 + 15 --- 32 + 15 --- 48 + 15 --- 51 + 15 --- 71 + 15 --- 75 + 15 ---- 93 + 15 <--x 99 + 16 --- 29 + 16 --- 40 + 16 --- 56 + 16 --- 69 + 16 --- 76 + 16 ---- 96 + 16 <--x 100 + 17 --- 26 + 17 --- 44 + 17 --- 52 + 17 --- 63 + 17 --- 77 + 17 ---- 95 + 17 <--x 105 + 18 --- 28 + 18 --- 47 + 18 --- 58 + 18 --- 64 + 18 --- 78 + 18 ---- 94 + 18 <--x 102 + 19 --- 35 + 19 --- 41 + 19 --- 57 + 19 --- 66 + 19 --- 79 + 19 ---- 89 + 19 <--x 98 + 20 --- 34 + 20 --- 42 + 20 --- 55 + 20 --- 68 + 20 --- 80 + 20 ---- 87 + 20 <--x 104 + 21 --- 30 + 21 --- 39 + 21 --- 60 + 21 --- 70 + 21 --- 81 + 21 ---- 91 + 21 <--x 103 + 22 --- 25 + 22 --- 46 + 22 --- 54 + 22 --- 72 + 22 --- 82 + 22 ---- 88 + 22 <--x 104 + 23 --- 36 + 23 --- 37 + 23 --- 49 + 23 --- 62 + 23 --- 83 + 23 ---- 86 + 23 <--x 107 + 24 --- 33 + 24 --- 43 + 24 --- 53 + 24 --- 61 + 24 --- 84 + 24 ---- 85 + 24 <--x 97 + 25 --- 120 + 25 x--> 159 + 25 --- 193 + 25 --- 242 + 26 --- 148 + 26 x--> 166 + 26 --- 223 + 26 --- 269 + 27 --- 138 + 27 x--> 163 + 27 --- 210 + 27 --- 258 + 28 --- 145 + 28 x--> 165 + 28 --- 218 + 28 --- 267 + 29 --- 153 + 29 x--> 167 + 29 --- 227 + 29 --- 275 + 30 --- 133 + 30 x--> 162 + 30 --- 204 + 30 --- 254 + 31 --- 130 + 31 x--> 161 + 31 --- 200 + 31 --- 250 + 32 --- 141 + 32 x--> 164 + 32 --- 215 + 32 --- 261 + 33 --- 111 + 33 x--> 156 + 33 --- 181 + 33 --- 229 + 34 --- 119 + 34 x--> 158 + 34 --- 189 + 34 --- 236 + 35 --- 127 + 35 x--> 160 + 35 --- 196 + 35 --- 247 + 36 --- 115 + 36 x--> 157 + 36 --- 185 + 36 --- 234 + 37 --- 112 + 37 x--> 157 + 37 --- 187 + 37 --- 233 + 38 --- 128 + 38 x--> 161 + 38 --- 203 + 38 --- 248 + 39 --- 132 + 39 x--> 162 + 39 --- 205 + 39 --- 255 + 40 --- 152 + 40 x--> 167 + 40 --- 224 + 40 --- 273 + 41 --- 124 + 41 x--> 160 + 41 --- 198 + 41 --- 246 + 42 --- 117 + 42 x--> 158 + 42 --- 188 + 42 --- 239 + 43 --- 110 + 43 x--> 156 + 43 --- 183 + 43 --- 228 + 44 --- 151 + 44 x--> 166 + 44 --- 221 + 44 --- 268 + 45 --- 139 + 45 x--> 163 + 45 --- 209 + 45 --- 256 + 46 --- 122 + 46 x--> 159 + 46 --- 192 + 46 --- 240 + 47 --- 147 + 47 x--> 165 + 47 --- 217 + 47 --- 265 + 48 --- 143 + 48 x--> 164 + 48 --- 214 + 48 --- 260 + 49 --- 113 + 49 x--> 157 + 49 --- 184 + 49 --- 232 + 50 --- 136 + 50 x--> 163 + 50 --- 211 + 50 --- 257 + 51 --- 140 + 51 x--> 164 + 51 --- 213 + 51 --- 262 + 52 --- 150 + 52 x--> 166 + 52 --- 222 + 52 --- 270 + 53 --- 109 + 53 x--> 156 + 53 --- 180 + 53 --- 231 + 54 --- 121 + 54 x--> 159 + 54 --- 195 + 54 --- 241 + 55 --- 116 + 55 x--> 158 + 55 --- 191 + 55 --- 238 + 56 --- 154 + 56 x--> 167 + 56 --- 225 + 56 --- 272 + 57 --- 126 + 57 x--> 160 + 57 --- 199 + 57 --- 245 + 58 --- 146 + 58 x--> 165 + 58 --- 219 + 58 --- 266 + 59 --- 131 + 59 x--> 161 + 59 --- 201 + 59 --- 251 + 60 --- 134 + 60 x--> 162 + 60 --- 206 + 60 --- 252 + 61 --- 108 + 61 x--> 156 + 61 --- 182 + 61 --- 230 + 62 --- 114 + 62 x--> 157 + 62 --- 186 + 62 --- 235 + 63 --- 149 + 63 x--> 166 + 63 --- 220 + 63 --- 271 + 64 --- 144 + 64 x--> 165 + 64 --- 216 + 64 --- 264 + 65 --- 137 + 65 x--> 163 + 65 --- 208 + 65 --- 259 + 66 --- 125 + 66 x--> 160 + 66 --- 197 + 66 --- 244 + 67 --- 129 + 67 x--> 161 + 67 --- 202 + 67 --- 249 + 68 --- 118 + 68 x--> 158 + 68 --- 190 + 68 --- 237 + 69 --- 155 + 69 x--> 167 + 69 --- 226 + 69 --- 274 + 70 --- 135 + 70 x--> 162 + 70 --- 207 + 70 --- 253 + 71 --- 142 + 71 x--> 164 + 71 --- 212 + 71 --- 263 + 72 --- 123 + 72 x--> 159 + 72 --- 194 + 72 --- 243 + 85 --- 108 + 85 --- 109 + 85 --- 110 + 85 --- 111 + 85 --- 156 + 85 --- 168 + 85 --- 180 + 85 --- 181 + 85 --- 182 + 85 --- 183 + 85 --- 228 + 85 --- 229 + 85 --- 230 + 85 --- 231 + 86 --- 112 + 86 --- 113 + 86 --- 114 + 86 --- 115 + 86 --- 157 + 86 --- 169 + 86 --- 184 + 86 --- 185 + 86 --- 186 + 86 --- 187 + 86 --- 232 + 86 --- 233 + 86 --- 234 + 86 --- 235 + 87 --- 116 + 87 --- 117 + 87 --- 118 + 87 --- 119 + 87 --- 158 + 87 --- 170 + 87 --- 188 + 87 --- 189 + 87 --- 190 + 87 --- 191 + 87 --- 236 + 87 --- 237 + 87 --- 238 + 87 --- 239 + 88 --- 120 + 88 --- 121 + 88 --- 122 + 88 --- 123 + 88 --- 159 + 88 --- 171 + 88 --- 192 + 88 --- 193 + 88 --- 194 + 88 --- 195 + 88 --- 240 + 88 --- 241 + 88 --- 242 + 88 --- 243 + 89 --- 124 + 89 --- 125 + 89 --- 126 + 89 --- 127 + 89 --- 160 + 89 --- 172 + 89 --- 196 + 89 --- 197 + 89 --- 198 + 89 --- 199 + 89 --- 244 + 89 --- 245 + 89 --- 246 + 89 --- 247 + 90 --- 128 + 90 --- 129 + 90 --- 130 + 90 --- 131 + 90 --- 161 + 90 --- 173 + 90 --- 200 + 90 --- 201 + 90 --- 202 + 90 --- 203 + 90 --- 248 + 90 --- 249 + 90 --- 250 + 90 --- 251 + 91 --- 132 + 91 --- 133 + 91 --- 134 + 91 --- 135 + 91 --- 162 + 91 --- 174 + 91 --- 204 + 91 --- 205 + 91 --- 206 + 91 --- 207 + 91 --- 252 + 91 --- 253 + 91 --- 254 + 91 --- 255 + 92 --- 136 + 92 --- 137 + 92 --- 138 + 92 --- 139 + 92 --- 163 + 92 --- 175 + 92 --- 208 + 92 --- 209 + 92 --- 210 + 92 --- 211 + 92 --- 256 + 92 --- 257 + 92 --- 258 + 92 --- 259 + 93 --- 140 + 93 --- 141 + 93 --- 142 + 93 --- 143 + 93 --- 164 + 93 --- 176 + 93 --- 212 + 93 --- 213 + 93 --- 214 + 93 --- 215 + 93 --- 260 + 93 --- 261 + 93 --- 262 + 93 --- 263 + 94 --- 144 + 94 --- 145 + 94 --- 146 + 94 --- 147 + 94 --- 165 + 94 --- 177 + 94 --- 216 + 94 --- 217 + 94 --- 218 + 94 --- 219 + 94 --- 264 + 94 --- 265 + 94 --- 266 + 94 --- 267 + 95 --- 148 + 95 --- 149 + 95 --- 150 + 95 --- 151 + 95 --- 166 + 95 --- 178 + 95 --- 220 + 95 --- 221 + 95 --- 222 + 95 --- 223 + 95 --- 268 + 95 --- 269 + 95 --- 270 + 95 --- 271 + 96 --- 152 + 96 --- 153 + 96 --- 154 + 96 --- 155 + 96 --- 167 + 96 --- 179 + 96 --- 224 + 96 --- 225 + 96 --- 226 + 96 --- 227 + 96 --- 272 + 96 --- 273 + 96 --- 274 + 96 --- 275 + 97 <--x 98 + 99 x--> 97 + 98 <--x 103 + 105 x--> 99 + 104 x--> 100 + 100 <--x 107 + 101 <--x 102 + 103 x--> 101 + 106 x--> 105 + 107 x--> 106 + 182 <--x 108 + 230 <--x 108 + 231 <--x 108 + 180 <--x 109 + 228 <--x 109 + 231 <--x 109 + 183 <--x 110 + 228 <--x 110 + 229 <--x 110 + 181 <--x 111 + 229 <--x 111 + 230 <--x 111 + 187 <--x 112 + 233 <--x 112 + 234 <--x 112 + 184 <--x 113 + 232 <--x 113 + 233 <--x 113 + 186 <--x 114 + 232 <--x 114 + 235 <--x 114 + 185 <--x 115 + 234 <--x 115 + 235 <--x 115 + 191 <--x 116 + 238 <--x 116 + 239 <--x 116 + 188 <--x 117 + 236 <--x 117 + 239 <--x 117 + 190 <--x 118 + 237 <--x 118 + 238 <--x 118 + 189 <--x 119 + 236 <--x 119 + 237 <--x 119 + 193 <--x 120 + 242 <--x 120 + 243 <--x 120 + 195 <--x 121 + 240 <--x 121 + 241 <--x 121 + 192 <--x 122 + 240 <--x 122 + 242 <--x 122 + 194 <--x 123 + 241 <--x 123 + 243 <--x 123 + 198 <--x 124 + 246 <--x 124 + 247 <--x 124 + 197 <--x 125 + 244 <--x 125 + 245 <--x 125 + 199 <--x 126 + 245 <--x 126 + 246 <--x 126 + 196 <--x 127 + 244 <--x 127 + 247 <--x 127 + 203 <--x 128 + 248 <--x 128 + 250 <--x 128 + 202 <--x 129 + 249 <--x 129 + 251 <--x 129 + 200 <--x 130 + 249 <--x 130 + 250 <--x 130 + 201 <--x 131 + 248 <--x 131 + 251 <--x 131 + 205 <--x 132 + 254 <--x 132 + 255 <--x 132 + 204 <--x 133 + 253 <--x 133 + 254 <--x 133 + 206 <--x 134 + 252 <--x 134 + 255 <--x 134 + 207 <--x 135 + 252 <--x 135 + 253 <--x 135 + 211 <--x 136 + 256 <--x 136 + 257 <--x 136 + 208 <--x 137 + 257 <--x 137 + 259 <--x 137 + 210 <--x 138 + 258 <--x 138 + 259 <--x 138 + 209 <--x 139 + 256 <--x 139 + 258 <--x 139 + 213 <--x 140 + 260 <--x 140 + 262 <--x 140 + 215 <--x 141 + 261 <--x 141 + 263 <--x 141 + 212 <--x 142 + 262 <--x 142 + 263 <--x 142 + 214 <--x 143 + 260 <--x 143 + 261 <--x 143 + 216 <--x 144 + 264 <--x 144 + 266 <--x 144 + 218 <--x 145 + 264 <--x 145 + 267 <--x 145 + 219 <--x 146 + 265 <--x 146 + 266 <--x 146 + 217 <--x 147 + 265 <--x 147 + 267 <--x 147 + 223 <--x 148 + 269 <--x 148 + 271 <--x 148 + 220 <--x 149 + 270 <--x 149 + 271 <--x 149 + 222 <--x 150 + 268 <--x 150 + 270 <--x 150 + 221 <--x 151 + 268 <--x 151 + 269 <--x 151 + 224 <--x 152 + 273 <--x 152 + 275 <--x 152 + 227 <--x 153 + 274 <--x 153 + 275 <--x 153 + 225 <--x 154 + 272 <--x 154 + 273 <--x 154 + 226 <--x 155 + 272 <--x 155 + 274 <--x 155 + 180 <--x 168 + 181 <--x 168 + 182 <--x 168 + 183 <--x 168 + 184 <--x 169 + 185 <--x 169 + 186 <--x 169 + 187 <--x 169 + 188 <--x 170 + 189 <--x 170 + 190 <--x 170 + 191 <--x 170 + 192 <--x 171 + 193 <--x 171 + 194 <--x 171 + 195 <--x 171 + 196 <--x 172 + 197 <--x 172 + 198 <--x 172 + 199 <--x 172 + 200 <--x 173 + 201 <--x 173 + 202 <--x 173 + 203 <--x 173 + 204 <--x 174 + 205 <--x 174 + 206 <--x 174 + 207 <--x 174 + 208 <--x 175 + 209 <--x 175 + 210 <--x 175 + 211 <--x 175 + 212 <--x 176 + 213 <--x 176 + 214 <--x 176 + 215 <--x 176 + 216 <--x 177 + 217 <--x 177 + 218 <--x 177 + 219 <--x 177 + 220 <--x 178 + 221 <--x 178 + 222 <--x 178 + 223 <--x 178 + 224 <--x 179 + 225 <--x 179 + 226 <--x 179 + 227 <--x 179 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/dodecahedron/ops.snap b/rust/kcl-lib/tests/kcl_samples/dodecahedron/ops.snap index baeb4a622..709412018 100644 --- a/rust/kcl-lib/tests/kcl_samples/dodecahedron/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/dodecahedron/ops.snap @@ -4,15 +4,169 @@ description: Operations executed dodecahedron.kcl --- [ { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "createFaceTemplate", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } }, - "sourceRange": [] + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { "labeledArgs": { @@ -61,35 +215,6 @@ description: Operations executed dodecahedron.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "createFaceTemplate", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -122,35 +247,6 @@ description: Operations executed dodecahedron.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "createFaceTemplate", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -183,35 +279,6 @@ description: Operations executed dodecahedron.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "createFaceTemplate", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -244,35 +311,6 @@ description: Operations executed dodecahedron.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "createFaceTemplate", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -305,35 +343,6 @@ description: Operations executed dodecahedron.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "createFaceTemplate", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -366,35 +375,6 @@ description: Operations executed dodecahedron.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "createFaceTemplate", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -427,35 +407,6 @@ description: Operations executed dodecahedron.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "createFaceTemplate", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -488,35 +439,6 @@ description: Operations executed dodecahedron.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "createFaceTemplate", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -549,35 +471,6 @@ description: Operations executed dodecahedron.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "createFaceTemplate", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -610,35 +503,6 @@ description: Operations executed dodecahedron.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "createFaceTemplate", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -671,35 +535,6 @@ description: Operations executed dodecahedron.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "createFaceTemplate", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -732,20 +567,446 @@ description: Operations executed dodecahedron.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "createIntersection", + "name": "createFaceTemplate", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "createFaceTemplate", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "createFaceTemplate", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "createFaceTemplate", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "createFaceTemplate", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "createFaceTemplate", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "createFaceTemplate", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "createFaceTemplate", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "createFaceTemplate", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "createFaceTemplate", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "createFaceTemplate", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "createFaceTemplate", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "solids": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + "name": "intersect", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "solids": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + "name": "intersect", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "solids": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + "name": "intersect", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "solids": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + "name": "intersect", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "solids": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + "name": "intersect", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "solids": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + "name": "intersect", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "solids": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + "name": "intersect", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "solids": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + "name": "intersect", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "solids": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + "name": "intersect", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "solids": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + "name": "intersect", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "solids": { + "value": { + "type": "Array", + "value": [ + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + "name": "intersect", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, { "type": "GroupBegin", "group": { @@ -757,316 +1018,55 @@ description: Operations executed dodecahedron.kcl }, "sourceRange": [] }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "createIntersection", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, { "type": "GroupEnd" }, { - "labeledArgs": { - "solids": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - "name": "intersect", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" }, { - "labeledArgs": { - "solids": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - "name": "intersect", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" }, { - "labeledArgs": { - "solids": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - "name": "intersect", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" }, { - "labeledArgs": { - "solids": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - "name": "intersect", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" }, { - "labeledArgs": { - "solids": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - "name": "intersect", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" }, { - "labeledArgs": { - "solids": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - "name": "intersect", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" }, { - "labeledArgs": { - "solids": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - "name": "intersect", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" }, { - "labeledArgs": { - "solids": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - "name": "intersect", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" }, { - "labeledArgs": { - "solids": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - "name": "intersect", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" }, { - "labeledArgs": { - "solids": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - "name": "intersect", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" }, { - "labeledArgs": { - "solids": { - "value": { - "type": "Array", - "value": [ - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - "name": "intersect", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" + }, + { + "type": "GroupEnd" }, { "type": "GroupEnd" diff --git a/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/artifact_commands.snap index 45f5bfa72..dc489da03 100644 --- a/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands dual-basin-utility-sink.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -451,223 +451,96 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 834.5, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { @@ -701,228 +574,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 834.5, + "faces": null, + "opposite": "None" } }, { @@ -940,228 +596,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 834.5, + "faces": null, + "opposite": "None" } }, { @@ -1179,228 +618,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 834.5, + "faces": null, + "opposite": "None" } }, { @@ -1414,234 +636,6 @@ description: Artifact commands dual-basin-utility-sink.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, { "cmdId": "[uuid]", "range": [], @@ -1657,7 +651,8 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -1668,6 +663,974 @@ description: Artifact commands dual-basin-utility-sink.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1681,232 +1644,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 834.5, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1920,232 +1662,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 834.5, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2159,7 +1680,7 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2168,17 +1689,16 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2197,39 +1717,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2244,39 +1737,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2291,39 +1757,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2338,9 +1777,570 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2398,13 +2398,6 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2418,6 +2411,15 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -2425,6 +2427,13 @@ description: Artifact commands dual-basin-utility-sink.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2710,223 +2719,64 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 13.0, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { @@ -2960,228 +2810,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 13.0, + "faces": null, + "opposite": "None" } }, { @@ -3199,228 +2832,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 13.0, + "faces": null, + "opposite": "None" } }, { @@ -3434,234 +2850,6 @@ description: Artifact commands dual-basin-utility-sink.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, { "cmdId": "[uuid]", "range": [], @@ -3677,7 +2865,8 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -3688,6 +2877,728 @@ description: Artifact commands dual-basin-utility-sink.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3701,7 +3612,7 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -3710,17 +3621,34 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -3739,39 +3667,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3786,39 +3687,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3833,39 +3707,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3880,9 +3727,410 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3901,252 +4149,6 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 13.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4160,6 +4162,15 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -4167,6 +4178,13 @@ description: Artifact commands dual-basin-utility-sink.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4299,229 +4317,6 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 13.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4553,7 +4348,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 13.0, + "faces": null, + "opposite": "None" } }, { @@ -4564,6 +4363,244 @@ description: Artifact commands dual-basin-utility-sink.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4577,26 +4614,7 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -4615,39 +4633,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4662,39 +4653,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4709,39 +4673,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4756,9 +4693,90 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4816,13 +4834,6 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4836,6 +4847,15 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -4843,6 +4863,13 @@ description: Artifact commands dual-basin-utility-sink.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5128,223 +5155,64 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 671.5, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { @@ -5378,228 +5246,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 671.5, + "faces": null, + "opposite": "None" } }, { @@ -5617,228 +5268,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 671.5, + "faces": null, + "opposite": "None" } }, { @@ -5852,234 +5286,6 @@ description: Artifact commands dual-basin-utility-sink.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, { "cmdId": "[uuid]", "range": [], @@ -6095,7 +5301,8 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -6106,6 +5313,728 @@ description: Artifact commands dual-basin-utility-sink.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6119,232 +6048,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 671.5, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6358,7 +6066,7 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -6367,17 +6075,16 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -6396,39 +6103,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6443,39 +6123,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6490,39 +6143,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6537,9 +6163,410 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6597,13 +6624,6 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6617,6 +6637,15 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -6624,6 +6653,13 @@ description: Artifact commands dual-basin-utility-sink.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6756,229 +6792,6 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -13.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7010,7 +6823,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": -13.0, + "faces": null, + "opposite": "None" } }, { @@ -7021,6 +6838,244 @@ description: Artifact commands dual-basin-utility-sink.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -7034,26 +7089,7 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -7072,39 +7108,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7119,39 +7128,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7166,39 +7148,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7213,9 +7168,90 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7234,13 +7270,6 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7254,6 +7283,15 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -7261,6 +7299,13 @@ description: Artifact commands dual-basin-utility-sink.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -7393,229 +7438,6 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -13.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7647,7 +7469,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": -13.0, + "faces": null, + "opposite": "None" } }, { @@ -7658,6 +7484,244 @@ description: Artifact commands dual-basin-utility-sink.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -7671,26 +7735,7 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -7709,39 +7754,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7756,39 +7774,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7803,39 +7794,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7850,9 +7814,90 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7910,13 +7955,6 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7930,6 +7968,15 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -7937,6 +7984,13 @@ description: Artifact commands dual-basin-utility-sink.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -8040,6 +8094,14 @@ description: Artifact commands dual-basin-utility-sink.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -8051,8 +8113,108 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -8068,30 +8230,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8106,39 +8250,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8153,18 +8270,10 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -8177,43 +8286,6 @@ description: Artifact commands dual-basin-utility-sink.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8228,30 +8300,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8264,13 +8318,6 @@ description: Artifact commands dual-basin-utility-sink.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8291,6 +8338,13 @@ description: Artifact commands dual-basin-utility-sink.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -8419,229 +8473,6 @@ description: Artifact commands dual-basin-utility-sink.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 200.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8669,7 +8500,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 200.0, + "faces": null, + "opposite": "None" } }, { @@ -8680,6 +8515,244 @@ description: Artifact commands dual-basin-utility-sink.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -8693,26 +8766,7 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -8731,39 +8785,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8778,39 +8805,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8825,39 +8825,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8872,9 +8845,90 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -8889,13 +8943,6 @@ description: Artifact commands dual-basin-utility-sink.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8916,6 +8963,13 @@ description: Artifact commands dual-basin-utility-sink.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -9044,229 +9098,6 @@ description: Artifact commands dual-basin-utility-sink.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -200.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -9294,7 +9125,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": -200.0, + "faces": null, + "opposite": "None" } }, { @@ -9305,6 +9140,244 @@ description: Artifact commands dual-basin-utility-sink.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -9318,26 +9391,7 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -9356,39 +9410,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -9403,39 +9430,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -9450,39 +9450,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -9497,9 +9470,90 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -9557,13 +9611,6 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -9577,6 +9624,15 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -9584,6 +9640,13 @@ description: Artifact commands dual-basin-utility-sink.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -9836,223 +9899,64 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 667.5, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { @@ -10086,228 +9990,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 667.5, + "faces": null, + "opposite": "None" } }, { @@ -10325,228 +10012,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 667.5, + "faces": null, + "opposite": "None" } }, { @@ -10560,234 +10030,6 @@ description: Artifact commands dual-basin-utility-sink.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, { "cmdId": "[uuid]", "range": [], @@ -10803,7 +10045,8 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -10814,6 +10057,728 @@ description: Artifact commands dual-basin-utility-sink.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -10827,7 +10792,7 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -10836,17 +10801,34 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -10865,39 +10847,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -10912,39 +10867,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -10959,39 +10887,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11006,9 +10907,410 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11027,252 +11329,6 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 667.5, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11286,6 +11342,15 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -11293,6 +11358,13 @@ description: Artifact commands dual-basin-utility-sink.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -11425,229 +11497,6 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 667.5, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11679,7 +11528,11 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 667.5, + "faces": null, + "opposite": "None" } }, { @@ -11690,6 +11543,244 @@ description: Artifact commands dual-basin-utility-sink.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -11703,26 +11794,7 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -11741,39 +11813,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11788,39 +11833,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11835,39 +11853,12 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11882,9 +11873,90 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11942,13 +12014,6 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -11962,6 +12027,15 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -11969,6 +12043,13 @@ description: Artifact commands dual-basin-utility-sink.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -12079,6 +12160,14 @@ description: Artifact commands dual-basin-utility-sink.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -12095,33 +12184,6 @@ description: Artifact commands dual-basin-utility-sink.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 230.75, - "y": 780.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12151,19 +12213,27 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 230.75, + "y": 780.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sweep", - "target": "[uuid]", - "trajectory": "[uuid]", - "sectional": false, - "tolerance": 0.0000001 + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -12174,6 +12244,42 @@ description: Artifact commands dual-basin-utility-sink.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -12183,34 +12289,6 @@ description: Artifact commands dual-basin-utility-sink.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -12225,18 +12303,21 @@ description: Artifact commands dual-basin-utility-sink.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "sweep", + "target": "[uuid]", + "trajectory": "[uuid]", + "sectional": false, + "tolerance": 0.0000001 } }, { @@ -12394,86 +12475,5 @@ description: Artifact commands dual-basin-utility-sink.kcl ] ] } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/artifact_graph_flowchart.snap.md index d15eed1d3..477fef5f1 100644 --- a/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/artifact_graph_flowchart.snap.md @@ -1,950 +1,950 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[672, 709, 0]"] - 3["Segment
[715, 747, 0]"] - 4["Segment
[753, 785, 0]"] - 5["Segment
[791, 824, 0]"] - 6["Segment
[830, 886, 0]"] - 7["Segment
[892, 899, 0]"] - 8[Solid2d] + subgraph path17 [Path] + 17["Path
[672, 709, 0]"] + 30["Segment
[715, 747, 0]"] + 31["Segment
[753, 785, 0]"] + 32["Segment
[791, 824, 0]"] + 33["Segment
[830, 886, 0]"] + 34["Segment
[892, 899, 0]"] + 98[Solid2d] end - subgraph path32 [Path] - 32["Path
[1292, 1348, 0]"] - 33["Segment
[1354, 1386, 0]"] - 34["Segment
[1392, 1424, 0]"] - 35["Segment
[1430, 1463, 0]"] - 36["Segment
[1469, 1525, 0]"] - 37["Segment
[1531, 1538, 0]"] - 38[Solid2d] + subgraph path18 [Path] + 18["Path
[1292, 1348, 0]"] + 35["Segment
[1354, 1386, 0]"] + 36["Segment
[1392, 1424, 0]"] + 37["Segment
[1430, 1463, 0]"] + 38["Segment
[1469, 1525, 0]"] + 39["Segment
[1531, 1538, 0]"] + 101[Solid2d] end - subgraph path59 [Path] - 59["Path
[1803, 1859, 0]"] - 60["Segment
[1865, 1897, 0]"] - 61["Segment
[1903, 1935, 0]"] - 62["Segment
[1941, 1974, 0]"] - 63["Segment
[1980, 2036, 0]"] - 64["Segment
[2042, 2049, 0]"] - 65[Solid2d] + subgraph path19 [Path] + 19["Path
[1803, 1859, 0]"] + 40["Segment
[1865, 1897, 0]"] + 41["Segment
[1903, 1935, 0]"] + 42["Segment
[1941, 1974, 0]"] + 43["Segment
[1980, 2036, 0]"] + 44["Segment
[2042, 2049, 0]"] + 97[Solid2d] end - subgraph path83 [Path] - 83["Path
[2445, 2503, 0]"] - 84["Segment
[2509, 2541, 0]"] - 85["Segment
[2547, 2579, 0]"] - 86["Segment
[2585, 2618, 0]"] - 87["Segment
[2624, 2680, 0]"] - 88["Segment
[2686, 2693, 0]"] - 89[Solid2d] + subgraph path20 [Path] + 20["Path
[2445, 2503, 0]"] + 45["Segment
[2509, 2541, 0]"] + 46["Segment
[2547, 2579, 0]"] + 47["Segment
[2585, 2618, 0]"] + 48["Segment
[2624, 2680, 0]"] + 49["Segment
[2686, 2693, 0]"] + 94[Solid2d] end - subgraph path111 [Path] - 111["Path
[2995, 3036, 0]"] - 112["Segment
[3042, 3074, 0]"] - 113["Segment
[3080, 3106, 0]"] - 114["Segment
[3112, 3145, 0]"] - 115["Segment
[3151, 3207, 0]"] - 116["Segment
[3213, 3220, 0]"] - 117[Solid2d] + subgraph path21 [Path] + 21["Path
[2995, 3036, 0]"] + 50["Segment
[3042, 3074, 0]"] + 51["Segment
[3080, 3106, 0]"] + 52["Segment
[3112, 3145, 0]"] + 53["Segment
[3151, 3207, 0]"] + 54["Segment
[3213, 3220, 0]"] + 102[Solid2d] end - subgraph path134 [Path] - 134["Path
[3403, 3459, 0]"] - 135["Segment
[3465, 3497, 0]"] - 136["Segment
[3503, 3535, 0]"] - 137["Segment
[3541, 3574, 0]"] - 138["Segment
[3580, 3636, 0]"] - 139["Segment
[3642, 3649, 0]"] - 140[Solid2d] + subgraph path22 [Path] + 22["Path
[3403, 3459, 0]"] + 55["Segment
[3465, 3497, 0]"] + 56["Segment
[3503, 3535, 0]"] + 57["Segment
[3541, 3574, 0]"] + 58["Segment
[3580, 3636, 0]"] + 59["Segment
[3642, 3649, 0]"] + 92[Solid2d] end - subgraph path158 [Path] - 158["Path
[3877, 3917, 0]"] - 159["Segment
[3923, 3949, 0]"] - 160["Segment
[3955, 3981, 0]"] - 161["Segment
[3987, 4014, 0]"] - 162["Segment
[4020, 4076, 0]"] - 163["Segment
[4082, 4089, 0]"] - 164[Solid2d] + subgraph path23 [Path] + 23["Path
[3877, 3917, 0]"] + 60["Segment
[3923, 3949, 0]"] + 61["Segment
[3955, 3981, 0]"] + 62["Segment
[3987, 4014, 0]"] + 63["Segment
[4020, 4076, 0]"] + 64["Segment
[4082, 4089, 0]"] + 96[Solid2d] end - subgraph path180 [Path] - 180["Path
[4376, 4447, 0]"] - 181["Segment
[4453, 4479, 0]"] - 182["Segment
[4485, 4511, 0]"] - 183["Segment
[4517, 4544, 0]"] - 184["Segment
[4550, 4606, 0]"] - 185["Segment
[4612, 4619, 0]"] - 186[Solid2d] + subgraph path24 [Path] + 24["Path
[4376, 4447, 0]"] + 65["Segment
[4453, 4479, 0]"] + 66["Segment
[4485, 4511, 0]"] + 67["Segment
[4517, 4544, 0]"] + 68["Segment
[4550, 4606, 0]"] + 69["Segment
[4612, 4619, 0]"] + 100[Solid2d] end - subgraph path202 [Path] - 202["Path
[4813, 4965, 0]"] - 203["Segment
[4971, 5020, 0]"] - 204["Segment
[5026, 5074, 0]"] - 205["Segment
[5080, 5128, 0]"] - 206["Segment
[5134, 5190, 0]"] - 207["Segment
[5196, 5203, 0]"] - 208[Solid2d] + subgraph path25 [Path] + 25["Path
[4813, 4965, 0]"] + 70["Segment
[4971, 5020, 0]"] + 71["Segment
[5026, 5074, 0]"] + 72["Segment
[5080, 5128, 0]"] + 73["Segment
[5134, 5190, 0]"] + 74["Segment
[5196, 5203, 0]"] + 91[Solid2d] end - subgraph path225 [Path] - 225["Path
[5735, 5779, 0]"] - 226["Segment
[5785, 5817, 0]"] - 227["Segment
[5823, 5848, 0]"] - 228["Segment
[5854, 5887, 0]"] - 229["Segment
[5893, 5949, 0]"] - 230["Segment
[5955, 5962, 0]"] - 231[Solid2d] + subgraph path26 [Path] + 26["Path
[5735, 5779, 0]"] + 75["Segment
[5785, 5817, 0]"] + 76["Segment
[5823, 5848, 0]"] + 77["Segment
[5854, 5887, 0]"] + 78["Segment
[5893, 5949, 0]"] + 79["Segment
[5955, 5962, 0]"] + 95[Solid2d] end - subgraph path252 [Path] - 252["Path
[6249, 6293, 0]"] - 253["Segment
[6299, 6325, 0]"] - 254["Segment
[6331, 6363, 0]"] - 255["Segment
[6369, 6396, 0]"] - 256["Segment
[6402, 6458, 0]"] - 257["Segment
[6464, 6471, 0]"] - 258[Solid2d] + subgraph path27 [Path] + 27["Path
[6249, 6293, 0]"] + 80["Segment
[6299, 6325, 0]"] + 81["Segment
[6331, 6363, 0]"] + 82["Segment
[6369, 6396, 0]"] + 83["Segment
[6402, 6458, 0]"] + 84["Segment
[6464, 6471, 0]"] + 99[Solid2d] end - subgraph path276 [Path] - 276["Path
[6948, 7001, 0]"] - 277["Segment
[7007, 7044, 0]"] - 278["Segment
[7050, 7143, 0]"] - 279["Segment
[7149, 7185, 0]"] - 280["Segment
[7191, 7292, 0]"] - 281["Segment
[7298, 7334, 0]"] + subgraph path28 [Path] + 28["Path
[6948, 7001, 0]"] + 85["Segment
[7007, 7044, 0]"] + 86["Segment
[7050, 7143, 0]"] + 87["Segment
[7149, 7185, 0]"] + 88["Segment
[7191, 7292, 0]"] + 89["Segment
[7298, 7334, 0]"] end - subgraph path283 [Path] - 283["Path
[7397, 7508, 0]"] - 284["Segment
[7397, 7508, 0]"] - 285[Solid2d] + subgraph path29 [Path] + 29["Path
[7397, 7508, 0]"] + 90["Segment
[7397, 7508, 0]"] + 93[Solid2d] end 1["Plane
[565, 582, 0]"] - 9["Sweep Extrusion
[1060, 1087, 0]"] - 10[Wall] - 11[Wall] - 12[Wall] - 13[Wall] - 14["Cap Start"] - 15["Cap End"] - 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] - 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 20["SweepEdge Opposite"] - 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] - 23["SweepEdge Adjacent"] - 24["Sweep Extrusion
[1060, 1087, 0]"] - 25["Sweep Extrusion
[1060, 1087, 0]"] - 26["Sweep Extrusion
[1060, 1087, 0]"] - 27["Sweep Extrusion
[1060, 1087, 0]"] - 28["Sweep Extrusion
[1060, 1087, 0]"] - 29["Sweep Extrusion
[1060, 1087, 0]"] - 30["Sweep Extrusion
[1060, 1087, 0]"] - 31["Plane
[1219, 1273, 0]"] - 39["Sweep Extrusion
[1701, 1735, 0]"] - 40[Wall] - 41[Wall] - 42[Wall] - 43[Wall] - 44["Cap Start"] - 45["Cap End"] - 46["SweepEdge Opposite"] - 47["SweepEdge Adjacent"] - 48["SweepEdge Opposite"] - 49["SweepEdge Adjacent"] - 50["SweepEdge Opposite"] - 51["SweepEdge Adjacent"] - 52["SweepEdge Opposite"] - 53["SweepEdge Adjacent"] - 54["Sweep Extrusion
[1701, 1735, 0]"] - 55["Sweep Extrusion
[1701, 1735, 0]"] - 56["Sweep Extrusion
[1701, 1735, 0]"] - 57["Sweep Extrusion
[1701, 1735, 0]"] - 58["Sweep Extrusion
[1701, 1735, 0]"] - 66["Sweep Extrusion
[2148, 2182, 0]"] - 67[Wall] - 68[Wall] - 69[Wall] - 70[Wall] - 71["Cap Start"] - 72["Cap End"] - 73["SweepEdge Opposite"] - 74["SweepEdge Adjacent"] - 75["SweepEdge Opposite"] - 76["SweepEdge Adjacent"] - 77["SweepEdge Opposite"] - 78["SweepEdge Adjacent"] - 79["SweepEdge Opposite"] - 80["SweepEdge Adjacent"] - 81["Sweep Extrusion
[2148, 2182, 0]"] - 82["Plane
[2299, 2350, 0]"] - 90["Sweep Extrusion
[2856, 2891, 0]"] - 91[Wall] - 92[Wall] - 93[Wall] - 94[Wall] - 95["Cap Start"] - 96["Cap End"] - 97["SweepEdge Opposite"] - 98["SweepEdge Adjacent"] - 99["SweepEdge Opposite"] - 100["SweepEdge Adjacent"] - 101["SweepEdge Opposite"] - 102["SweepEdge Adjacent"] - 103["SweepEdge Opposite"] - 104["SweepEdge Adjacent"] - 105["Sweep Extrusion
[2856, 2891, 0]"] - 106["Sweep Extrusion
[2856, 2891, 0]"] - 107["Sweep Extrusion
[2856, 2891, 0]"] - 108["Sweep Extrusion
[2856, 2891, 0]"] - 109["Sweep Extrusion
[2856, 2891, 0]"] - 110["Plane
[2938, 2975, 0]"] - 118["Sweep Extrusion
[3300, 3335, 0]"] - 119[Wall] - 120[Wall] - 121[Wall] - 122[Wall] - 123["Cap Start"] - 124["Cap End"] - 125["SweepEdge Opposite"] - 126["SweepEdge Adjacent"] - 127["SweepEdge Opposite"] - 128["SweepEdge Adjacent"] - 129["SweepEdge Opposite"] - 130["SweepEdge Adjacent"] - 131["SweepEdge Opposite"] - 132["SweepEdge Adjacent"] - 133["Sweep Extrusion
[3300, 3335, 0]"] - 141["Sweep Extrusion
[3748, 3783, 0]"] - 142[Wall] + 2["Plane
[1219, 1273, 0]"] + 3["Plane
[2299, 2350, 0]"] + 4["Plane
[2938, 2975, 0]"] + 5["Plane
[3823, 3860, 0]"] + 6["Plane
[5673, 5722, 0]"] + 7["Plane
[6874, 6925, 0]"] + 8["Plane
[7356, 7373, 0]"] + 9["StartSketchOnPlane
[3809, 3861, 0]"] + 10["StartSketchOnPlane
[2285, 2351, 0]"] + 11["StartSketchOnPlane
[6860, 6926, 0]"] + 12["StartSketchOnPlane
[5659, 5723, 0]"] + 13["StartSketchOnPlane
[2924, 2976, 0]"] + 14["StartSketchOnPlane
[1205, 1274, 0]"] + 15["StartSketchOnFace
[4316, 4357, 0]"] + 16["StartSketchOnFace
[4756, 4795, 0]"] + 103["Sweep Extrusion
[1060, 1087, 0]"] + 104["Sweep Extrusion
[1060, 1087, 0]"] + 105["Sweep Extrusion
[1060, 1087, 0]"] + 106["Sweep Extrusion
[1060, 1087, 0]"] + 107["Sweep Extrusion
[1060, 1087, 0]"] + 108["Sweep Extrusion
[1060, 1087, 0]"] + 109["Sweep Extrusion
[1060, 1087, 0]"] + 110["Sweep Extrusion
[1060, 1087, 0]"] + 111["Sweep Extrusion
[1701, 1735, 0]"] + 112["Sweep Extrusion
[1701, 1735, 0]"] + 113["Sweep Extrusion
[1701, 1735, 0]"] + 114["Sweep Extrusion
[1701, 1735, 0]"] + 115["Sweep Extrusion
[1701, 1735, 0]"] + 116["Sweep Extrusion
[1701, 1735, 0]"] + 117["Sweep Extrusion
[2148, 2182, 0]"] + 118["Sweep Extrusion
[2148, 2182, 0]"] + 119["Sweep Extrusion
[2856, 2891, 0]"] + 120["Sweep Extrusion
[2856, 2891, 0]"] + 121["Sweep Extrusion
[2856, 2891, 0]"] + 122["Sweep Extrusion
[2856, 2891, 0]"] + 123["Sweep Extrusion
[2856, 2891, 0]"] + 124["Sweep Extrusion
[2856, 2891, 0]"] + 125["Sweep Extrusion
[3300, 3335, 0]"] + 126["Sweep Extrusion
[3300, 3335, 0]"] + 127["Sweep Extrusion
[3748, 3783, 0]"] + 128["Sweep Extrusion
[3748, 3783, 0]"] + 129["Sweep Extrusion
[4095, 4128, 0]"] + 130["Sweep Extrusion
[4709, 4736, 0]"] + 131["Sweep Extrusion
[4709, 4736, 0]"] + 132["Sweep Extrusion
[5292, 5320, 0]"] + 133["Sweep Extrusion
[5292, 5320, 0]"] + 134["Sweep Extrusion
[6061, 6089, 0]"] + 135["Sweep Extrusion
[6061, 6089, 0]"] + 136["Sweep Extrusion
[6061, 6089, 0]"] + 137["Sweep Extrusion
[6061, 6089, 0]"] + 138["Sweep Extrusion
[6061, 6089, 0]"] + 139["Sweep Extrusion
[6061, 6089, 0]"] + 140["Sweep Extrusion
[6553, 6581, 0]"] + 141["Sweep Extrusion
[6553, 6581, 0]"] + 142["Sweep Sweep
[7522, 7575, 0]"] 143[Wall] 144[Wall] 145[Wall] - 146["Cap Start"] - 147["Cap End"] - 148["SweepEdge Opposite"] - 149["SweepEdge Adjacent"] - 150["SweepEdge Opposite"] - 151["SweepEdge Adjacent"] - 152["SweepEdge Opposite"] - 153["SweepEdge Adjacent"] - 154["SweepEdge Opposite"] - 155["SweepEdge Adjacent"] - 156["Sweep Extrusion
[3748, 3783, 0]"] - 157["Plane
[3823, 3860, 0]"] - 165["Sweep Extrusion
[4095, 4128, 0]"] + 146[Wall] + 147[Wall] + 148[Wall] + 149[Wall] + 150[Wall] + 151[Wall] + 152[Wall] + 153[Wall] + 154[Wall] + 155[Wall] + 156[Wall] + 157[Wall] + 158[Wall] + 159[Wall] + 160[Wall] + 161[Wall] + 162[Wall] + 163[Wall] + 164[Wall] + 165[Wall] 166[Wall] 167[Wall] 168[Wall] 169[Wall] - 170["Cap Start"] - 171["Cap End"] - 172["SweepEdge Opposite"] - 173["SweepEdge Adjacent"] - 174["SweepEdge Opposite"] - 175["SweepEdge Adjacent"] - 176["SweepEdge Opposite"] - 177["SweepEdge Adjacent"] - 178["SweepEdge Opposite"] - 179["SweepEdge Adjacent"] - 187["Sweep Extrusion
[4709, 4736, 0]"] - 188[Wall] - 189[Wall] - 190[Wall] - 191[Wall] - 192["Cap End"] - 193["SweepEdge Opposite"] - 194["SweepEdge Adjacent"] - 195["SweepEdge Opposite"] - 196["SweepEdge Adjacent"] - 197["SweepEdge Opposite"] - 198["SweepEdge Adjacent"] - 199["SweepEdge Opposite"] - 200["SweepEdge Adjacent"] - 201["Sweep Extrusion
[4709, 4736, 0]"] - 209["Sweep Extrusion
[5292, 5320, 0]"] - 210[Wall] - 211[Wall] - 212[Wall] - 213[Wall] - 214["Cap Start"] + 170[Wall] + 171[Wall] + 172[Wall] + 173[Wall] + 174[Wall] + 175[Wall] + 176[Wall] + 177[Wall] + 178[Wall] + 179[Wall] + 180[Wall] + 181[Wall] + 182[Wall] + 183[Wall] + 184[Wall] + 185[Wall] + 186[Wall] + 187[Wall] + 188["Cap Start"] + 189["Cap Start"] + 190["Cap Start"] + 191["Cap Start"] + 192["Cap Start"] + 193["Cap Start"] + 194["Cap Start"] + 195["Cap Start"] + 196["Cap Start"] + 197["Cap Start"] + 198["Cap Start"] + 199["Cap Start"] + 200["Cap End"] + 201["Cap End"] + 202["Cap End"] + 203["Cap End"] + 204["Cap End"] + 205["Cap End"] + 206["Cap End"] + 207["Cap End"] + 208["Cap End"] + 209["Cap End"] + 210["SweepEdge Opposite"] + 211["SweepEdge Opposite"] + 212["SweepEdge Opposite"] + 213["SweepEdge Opposite"] + 214["SweepEdge Opposite"] 215["SweepEdge Opposite"] - 216["SweepEdge Adjacent"] + 216["SweepEdge Opposite"] 217["SweepEdge Opposite"] - 218["SweepEdge Adjacent"] + 218["SweepEdge Opposite"] 219["SweepEdge Opposite"] - 220["SweepEdge Adjacent"] + 220["SweepEdge Opposite"] 221["SweepEdge Opposite"] - 222["SweepEdge Adjacent"] - 223["Sweep Extrusion
[5292, 5320, 0]"] - 224["Plane
[5673, 5722, 0]"] - 232["Sweep Extrusion
[6061, 6089, 0]"] - 233[Wall] - 234[Wall] - 235[Wall] - 236[Wall] - 237["Cap Start"] - 238["Cap End"] + 222["SweepEdge Opposite"] + 223["SweepEdge Opposite"] + 224["SweepEdge Opposite"] + 225["SweepEdge Opposite"] + 226["SweepEdge Opposite"] + 227["SweepEdge Opposite"] + 228["SweepEdge Opposite"] + 229["SweepEdge Opposite"] + 230["SweepEdge Opposite"] + 231["SweepEdge Opposite"] + 232["SweepEdge Opposite"] + 233["SweepEdge Opposite"] + 234["SweepEdge Opposite"] + 235["SweepEdge Opposite"] + 236["SweepEdge Opposite"] + 237["SweepEdge Opposite"] + 238["SweepEdge Opposite"] 239["SweepEdge Opposite"] - 240["SweepEdge Adjacent"] + 240["SweepEdge Opposite"] 241["SweepEdge Opposite"] - 242["SweepEdge Adjacent"] + 242["SweepEdge Opposite"] 243["SweepEdge Opposite"] - 244["SweepEdge Adjacent"] + 244["SweepEdge Opposite"] 245["SweepEdge Opposite"] - 246["SweepEdge Adjacent"] - 247["Sweep Extrusion
[6061, 6089, 0]"] - 248["Sweep Extrusion
[6061, 6089, 0]"] - 249["Sweep Extrusion
[6061, 6089, 0]"] - 250["Sweep Extrusion
[6061, 6089, 0]"] - 251["Sweep Extrusion
[6061, 6089, 0]"] - 259["Sweep Extrusion
[6553, 6581, 0]"] - 260[Wall] - 261[Wall] - 262[Wall] - 263[Wall] - 264["Cap Start"] - 265["Cap End"] - 266["SweepEdge Opposite"] + 246["SweepEdge Opposite"] + 247["SweepEdge Opposite"] + 248["SweepEdge Opposite"] + 249["SweepEdge Opposite"] + 250["SweepEdge Opposite"] + 251["SweepEdge Opposite"] + 252["SweepEdge Opposite"] + 253["SweepEdge Opposite"] + 254["SweepEdge Opposite"] + 255["SweepEdge Adjacent"] + 256["SweepEdge Adjacent"] + 257["SweepEdge Adjacent"] + 258["SweepEdge Adjacent"] + 259["SweepEdge Adjacent"] + 260["SweepEdge Adjacent"] + 261["SweepEdge Adjacent"] + 262["SweepEdge Adjacent"] + 263["SweepEdge Adjacent"] + 264["SweepEdge Adjacent"] + 265["SweepEdge Adjacent"] + 266["SweepEdge Adjacent"] 267["SweepEdge Adjacent"] - 268["SweepEdge Opposite"] + 268["SweepEdge Adjacent"] 269["SweepEdge Adjacent"] - 270["SweepEdge Opposite"] + 270["SweepEdge Adjacent"] 271["SweepEdge Adjacent"] - 272["SweepEdge Opposite"] + 272["SweepEdge Adjacent"] 273["SweepEdge Adjacent"] - 274["Sweep Extrusion
[6553, 6581, 0]"] - 275["Plane
[6874, 6925, 0]"] - 282["Plane
[7356, 7373, 0]"] - 286["Sweep Sweep
[7522, 7575, 0]"] - 287[Wall] - 288["Cap Start"] - 289["Cap Start"] - 290["SweepEdge Opposite"] + 274["SweepEdge Adjacent"] + 275["SweepEdge Adjacent"] + 276["SweepEdge Adjacent"] + 277["SweepEdge Adjacent"] + 278["SweepEdge Adjacent"] + 279["SweepEdge Adjacent"] + 280["SweepEdge Adjacent"] + 281["SweepEdge Adjacent"] + 282["SweepEdge Adjacent"] + 283["SweepEdge Adjacent"] + 284["SweepEdge Adjacent"] + 285["SweepEdge Adjacent"] + 286["SweepEdge Adjacent"] + 287["SweepEdge Adjacent"] + 288["SweepEdge Adjacent"] + 289["SweepEdge Adjacent"] + 290["SweepEdge Adjacent"] 291["SweepEdge Adjacent"] - 292["StartSketchOnPlane
[1205, 1274, 0]"] - 293["StartSketchOnPlane
[2285, 2351, 0]"] - 294["StartSketchOnPlane
[2924, 2976, 0]"] - 295["StartSketchOnPlane
[3809, 3861, 0]"] - 296["StartSketchOnFace
[4316, 4357, 0]"] - 297["StartSketchOnFace
[4756, 4795, 0]"] - 298["StartSketchOnPlane
[5659, 5723, 0]"] - 299["StartSketchOnPlane
[6860, 6926, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 ---- 9 - 2 --- 8 - 3 --- 13 - 3 --- 22 - 3 --- 23 - 3 x--> 14 - 4 --- 12 - 4 --- 20 + 292["SweepEdge Adjacent"] + 293["SweepEdge Adjacent"] + 294["SweepEdge Adjacent"] + 295["SweepEdge Adjacent"] + 296["SweepEdge Adjacent"] + 297["SweepEdge Adjacent"] + 298["SweepEdge Adjacent"] + 299["SweepEdge Adjacent"] + 1 --- 17 + 2 <--x 14 + 2 --- 18 + 2 --- 19 + 3 <--x 10 + 3 --- 20 + 4 <--x 13 4 --- 21 - 4 x--> 14 - 5 --- 11 - 5 --- 18 - 5 --- 19 - 5 x--> 14 - 6 --- 10 - 6 --- 16 - 6 --- 17 - 6 x--> 14 - 9 --- 10 - 9 --- 11 - 9 --- 12 - 9 --- 13 - 9 --- 14 - 9 --- 15 - 9 --- 16 - 9 --- 17 - 9 --- 18 - 9 --- 19 - 9 --- 20 - 9 --- 21 - 9 --- 22 - 9 --- 23 - 16 <--x 10 - 16 <--x 15 - 17 <--x 10 - 17 <--x 13 - 18 <--x 11 - 18 <--x 15 - 19 <--x 10 - 19 <--x 11 - 20 <--x 12 - 20 <--x 15 - 21 <--x 11 - 21 <--x 12 - 22 <--x 13 - 22 <--x 15 - 23 <--x 12 - 23 <--x 13 - 31 --- 32 - 31 --- 59 - 32 --- 33 - 32 --- 34 - 32 --- 35 - 32 --- 36 - 32 --- 37 - 32 ---- 39 - 32 --- 38 - 33 --- 43 - 33 --- 52 - 33 --- 53 - 33 x--> 44 - 34 --- 42 - 34 --- 50 - 34 --- 51 - 34 x--> 44 - 35 --- 41 - 35 --- 48 - 35 --- 49 - 35 x--> 44 - 36 --- 40 - 36 --- 46 - 36 --- 47 - 36 x--> 44 - 39 --- 40 - 39 --- 41 - 39 --- 42 - 39 --- 43 - 39 --- 44 - 39 --- 45 - 39 --- 46 - 39 --- 47 - 39 --- 48 - 39 --- 49 - 39 --- 50 - 39 --- 51 - 39 --- 52 - 39 --- 53 - 46 <--x 40 - 46 <--x 45 - 47 <--x 40 - 47 <--x 43 - 48 <--x 41 - 48 <--x 45 - 49 <--x 40 - 49 <--x 41 - 50 <--x 42 - 50 <--x 45 - 51 <--x 41 - 51 <--x 42 - 52 <--x 43 - 52 <--x 45 - 53 <--x 42 - 53 <--x 43 - 59 --- 60 - 59 --- 61 - 59 --- 62 - 59 --- 63 - 59 --- 64 - 59 ---- 66 - 59 --- 65 - 60 --- 70 - 60 --- 79 - 60 --- 80 - 60 x--> 71 - 61 --- 69 - 61 --- 77 - 61 --- 78 - 61 x--> 71 - 62 --- 68 - 62 --- 75 - 62 --- 76 - 62 x--> 71 - 63 --- 67 - 63 --- 73 - 63 --- 74 - 63 x--> 71 - 66 --- 67 - 66 --- 68 - 66 --- 69 - 66 --- 70 - 66 --- 71 - 66 --- 72 - 66 --- 73 - 66 --- 74 - 66 --- 75 - 66 --- 76 - 66 --- 77 - 66 --- 78 - 66 --- 79 - 66 --- 80 - 73 <--x 67 - 73 <--x 72 - 74 <--x 67 - 74 <--x 70 - 75 <--x 68 - 75 <--x 72 - 76 <--x 67 - 76 <--x 68 - 77 <--x 69 - 77 <--x 72 - 78 <--x 68 - 78 <--x 69 - 79 <--x 70 - 79 <--x 72 - 80 <--x 69 - 80 <--x 70 - 82 --- 83 - 83 --- 84 - 83 --- 85 - 83 --- 86 - 83 --- 87 - 83 --- 88 - 83 ---- 90 - 83 --- 89 - 84 --- 94 - 84 --- 103 - 84 --- 104 - 84 x--> 95 - 85 --- 93 - 85 --- 101 - 85 --- 102 - 85 x--> 95 - 86 --- 92 - 86 --- 99 - 86 --- 100 - 86 x--> 95 - 87 --- 91 - 87 --- 97 - 87 --- 98 - 87 x--> 95 - 90 --- 91 - 90 --- 92 - 90 --- 93 - 90 --- 94 - 90 --- 95 - 90 --- 96 - 90 --- 97 - 90 --- 98 - 90 --- 99 - 90 --- 100 - 90 --- 101 - 90 --- 102 - 90 --- 103 - 90 --- 104 - 97 <--x 91 - 97 <--x 96 - 98 <--x 91 - 98 <--x 94 - 99 <--x 92 - 99 <--x 96 - 100 <--x 91 - 100 <--x 92 - 101 <--x 93 - 101 <--x 96 - 102 <--x 92 - 102 <--x 93 - 103 <--x 94 - 103 <--x 96 - 104 <--x 93 - 104 <--x 94 - 110 --- 111 - 110 --- 134 - 111 --- 112 - 111 --- 113 - 111 --- 114 - 111 --- 115 - 111 --- 116 - 111 ---- 118 - 111 --- 117 - 112 --- 122 - 112 --- 131 - 112 --- 132 - 112 x--> 124 - 113 --- 121 - 113 --- 129 - 113 --- 130 - 113 x--> 124 - 114 --- 120 - 114 --- 127 - 114 --- 128 - 114 x--> 124 - 115 --- 119 - 115 --- 125 - 115 --- 126 - 115 x--> 124 - 118 --- 119 - 118 --- 120 - 118 --- 121 - 118 --- 122 - 118 --- 123 - 118 --- 124 - 118 --- 125 - 118 --- 126 - 118 --- 127 - 118 --- 128 - 118 --- 129 - 118 --- 130 - 118 --- 131 - 118 --- 132 - 125 <--x 119 - 125 <--x 123 - 126 <--x 119 - 126 <--x 122 - 127 <--x 120 - 127 <--x 123 - 128 <--x 119 - 128 <--x 120 - 129 <--x 121 - 129 <--x 123 - 130 <--x 120 - 130 <--x 121 - 131 <--x 122 - 131 <--x 123 - 132 <--x 121 - 132 <--x 122 - 134 --- 135 - 134 --- 136 - 134 --- 137 - 134 --- 138 - 134 --- 139 - 134 ---- 141 - 134 --- 140 - 135 --- 145 - 135 --- 154 - 135 --- 155 - 135 x--> 147 - 136 --- 144 - 136 --- 152 - 136 --- 153 - 136 x--> 147 - 137 --- 143 - 137 --- 150 - 137 --- 151 - 137 x--> 147 - 138 --- 142 - 138 --- 148 - 138 --- 149 - 138 x--> 147 - 141 --- 142 - 141 --- 143 - 141 --- 144 - 141 --- 145 - 141 --- 146 - 141 --- 147 - 141 --- 148 - 141 --- 149 - 141 --- 150 - 141 --- 151 - 141 --- 152 - 141 --- 153 - 141 --- 154 - 141 --- 155 - 148 <--x 142 - 148 <--x 146 - 149 <--x 142 - 149 <--x 145 - 150 <--x 143 - 150 <--x 146 - 151 <--x 142 - 151 <--x 143 - 152 <--x 144 - 152 <--x 146 - 153 <--x 143 - 153 <--x 144 - 154 <--x 145 - 154 <--x 146 - 155 <--x 144 - 155 <--x 145 - 157 --- 158 - 158 --- 159 - 158 --- 160 - 158 --- 161 - 158 --- 162 - 158 --- 163 - 158 ---- 165 - 158 --- 164 - 159 --- 169 - 159 --- 178 - 159 --- 179 - 159 x--> 171 - 160 --- 168 - 160 --- 176 - 160 --- 177 - 160 x--> 171 - 161 --- 167 - 161 --- 174 - 161 --- 175 - 161 x--> 171 - 162 --- 166 - 162 --- 172 - 162 --- 173 - 162 x--> 171 - 165 --- 166 - 165 --- 167 - 165 --- 168 - 165 --- 169 - 165 --- 170 - 165 --- 171 - 165 --- 172 - 165 --- 173 - 165 --- 174 - 165 --- 175 - 165 --- 176 - 165 --- 177 - 165 --- 178 - 165 --- 179 - 170 --- 180 - 171 --- 202 - 172 <--x 166 - 172 <--x 170 - 173 <--x 166 - 173 <--x 169 - 174 <--x 167 - 174 <--x 170 - 175 <--x 166 - 175 <--x 167 - 176 <--x 168 - 176 <--x 170 - 177 <--x 167 - 177 <--x 168 - 178 <--x 169 - 178 <--x 170 - 179 <--x 168 - 179 <--x 169 - 180 --- 181 - 180 --- 182 - 180 --- 183 - 180 --- 184 - 180 --- 185 - 180 ---- 187 - 180 --- 186 - 181 --- 188 - 181 --- 193 - 181 --- 194 - 181 <--x 170 - 182 --- 189 - 182 --- 195 - 182 --- 196 - 182 <--x 170 - 183 --- 190 - 183 --- 197 - 183 --- 198 - 183 <--x 170 - 184 --- 191 - 184 --- 199 - 184 --- 200 - 184 <--x 170 - 187 --- 188 - 187 --- 189 - 187 --- 190 - 187 --- 191 - 187 --- 192 - 187 --- 193 - 187 --- 194 - 187 --- 195 - 187 --- 196 - 187 --- 197 - 187 --- 198 - 187 --- 199 - 187 --- 200 - 193 <--x 188 - 193 <--x 192 - 194 <--x 188 - 194 <--x 189 - 195 <--x 189 - 195 <--x 192 - 196 <--x 189 - 196 <--x 190 - 197 <--x 190 - 197 <--x 192 - 198 <--x 190 - 198 <--x 191 - 199 <--x 191 - 199 <--x 192 - 200 <--x 188 - 200 <--x 191 - 202 --- 203 - 202 --- 204 - 202 --- 205 - 202 --- 206 - 202 --- 207 - 202 ---- 209 - 202 --- 208 - 203 --- 213 - 203 --- 221 - 203 --- 222 - 203 <--x 171 - 204 --- 212 - 204 --- 219 - 204 --- 220 - 204 <--x 171 - 205 --- 211 - 205 --- 217 - 205 --- 218 - 205 <--x 171 - 206 --- 210 - 206 --- 215 - 206 --- 216 - 206 <--x 171 - 209 --- 210 - 209 --- 211 - 209 --- 212 - 209 --- 213 - 209 --- 214 - 209 --- 215 - 209 --- 216 - 209 --- 217 - 209 --- 218 - 209 --- 219 - 209 --- 220 - 209 --- 221 - 209 --- 222 - 215 <--x 210 - 215 <--x 214 - 216 <--x 210 - 216 <--x 213 - 217 <--x 211 - 217 <--x 214 - 218 <--x 210 - 218 <--x 211 - 219 <--x 212 - 219 <--x 214 - 220 <--x 211 - 220 <--x 212 - 221 <--x 213 - 221 <--x 214 - 222 <--x 212 - 222 <--x 213 - 224 --- 225 - 224 --- 252 - 225 --- 226 - 225 --- 227 - 225 --- 228 - 225 --- 229 - 225 --- 230 - 225 ---- 232 - 225 --- 231 - 226 --- 236 - 226 --- 245 - 226 --- 246 - 226 x--> 237 - 227 --- 235 - 227 --- 243 - 227 --- 244 - 227 x--> 237 - 228 --- 234 - 228 --- 241 - 228 --- 242 - 228 x--> 237 - 229 --- 233 - 229 --- 239 - 229 --- 240 - 229 x--> 237 - 232 --- 233 - 232 --- 234 - 232 --- 235 - 232 --- 236 - 232 --- 237 - 232 --- 238 - 232 --- 239 - 232 --- 240 - 232 --- 241 - 232 --- 242 - 232 --- 243 - 232 --- 244 - 232 --- 245 - 232 --- 246 - 239 <--x 233 - 239 <--x 238 - 240 <--x 233 - 240 <--x 236 - 241 <--x 234 - 241 <--x 238 - 242 <--x 233 - 242 <--x 234 - 243 <--x 235 - 243 <--x 238 - 244 <--x 234 - 244 <--x 235 - 245 <--x 236 - 245 <--x 238 - 246 <--x 235 - 246 <--x 236 - 252 --- 253 - 252 --- 254 - 252 --- 255 - 252 --- 256 - 252 --- 257 - 252 ---- 259 - 252 --- 258 - 253 --- 263 - 253 --- 272 - 253 --- 273 - 253 x--> 264 - 254 --- 262 - 254 --- 270 - 254 --- 271 - 254 x--> 264 - 255 --- 261 - 255 --- 268 - 255 --- 269 - 255 x--> 264 - 256 --- 260 - 256 --- 266 - 256 --- 267 - 256 x--> 264 - 259 --- 260 - 259 --- 261 - 259 --- 262 - 259 --- 263 - 259 --- 264 - 259 --- 265 - 259 --- 266 - 259 --- 267 - 259 --- 268 - 259 --- 269 - 259 --- 270 - 259 --- 271 - 259 --- 272 - 259 --- 273 - 266 <--x 260 - 266 <--x 265 - 267 <--x 260 - 267 <--x 263 - 268 <--x 261 - 268 <--x 265 - 269 <--x 260 - 269 <--x 261 - 270 <--x 262 - 270 <--x 265 - 271 <--x 261 - 271 <--x 262 - 272 <--x 263 - 272 <--x 265 - 273 <--x 262 - 273 <--x 263 - 275 --- 276 - 276 --- 277 - 276 --- 278 - 276 --- 279 - 276 --- 280 - 276 --- 281 - 282 --- 283 - 283 --- 284 - 283 ---- 286 - 283 --- 285 - 284 --- 287 - 284 --- 290 - 284 --- 291 - 284 x--> 288 - 286 --- 287 - 286 --- 288 - 286 --- 289 - 286 --- 290 - 286 --- 291 - 290 <--x 287 - 290 <--x 289 - 291 <--x 287 - 31 <--x 292 - 82 <--x 293 - 110 <--x 294 - 157 <--x 295 - 170 <--x 296 - 171 <--x 297 - 224 <--x 298 - 275 <--x 299 + 4 --- 22 + 5 <--x 9 + 5 --- 23 + 6 <--x 12 + 6 --- 26 + 6 --- 27 + 7 <--x 11 + 7 --- 28 + 8 --- 29 + 190 x--> 15 + 202 x--> 16 + 17 --- 30 + 17 --- 31 + 17 --- 32 + 17 --- 33 + 17 --- 34 + 17 --- 98 + 17 ---- 104 + 18 --- 35 + 18 --- 36 + 18 --- 37 + 18 --- 38 + 18 --- 39 + 18 --- 101 + 18 ---- 114 + 19 --- 40 + 19 --- 41 + 19 --- 42 + 19 --- 43 + 19 --- 44 + 19 --- 97 + 19 ---- 117 + 20 --- 45 + 20 --- 46 + 20 --- 47 + 20 --- 48 + 20 --- 49 + 20 --- 94 + 20 ---- 119 + 21 --- 50 + 21 --- 51 + 21 --- 52 + 21 --- 53 + 21 --- 54 + 21 --- 102 + 21 ---- 126 + 22 --- 55 + 22 --- 56 + 22 --- 57 + 22 --- 58 + 22 --- 59 + 22 --- 92 + 22 ---- 128 + 23 --- 60 + 23 --- 61 + 23 --- 62 + 23 --- 63 + 23 --- 64 + 23 --- 96 + 23 ---- 129 + 24 --- 65 + 24 --- 66 + 24 --- 67 + 24 --- 68 + 24 --- 69 + 24 --- 100 + 24 ---- 130 + 190 --- 24 + 25 --- 70 + 25 --- 71 + 25 --- 72 + 25 --- 73 + 25 --- 74 + 25 --- 91 + 25 ---- 133 + 202 --- 25 + 26 --- 75 + 26 --- 76 + 26 --- 77 + 26 --- 78 + 26 --- 79 + 26 --- 95 + 26 ---- 139 + 27 --- 80 + 27 --- 81 + 27 --- 82 + 27 --- 83 + 27 --- 84 + 27 --- 99 + 27 ---- 141 + 28 --- 85 + 28 --- 86 + 28 --- 87 + 28 --- 88 + 28 --- 89 + 29 --- 90 + 29 --- 93 + 29 ---- 142 + 30 --- 158 + 30 x--> 191 + 30 --- 223 + 30 --- 269 + 31 --- 156 + 31 x--> 191 + 31 --- 222 + 31 --- 267 + 32 --- 155 + 32 x--> 191 + 32 --- 224 + 32 --- 270 + 33 --- 157 + 33 x--> 191 + 33 --- 225 + 33 --- 268 + 35 --- 172 + 35 x--> 196 + 35 --- 242 + 35 --- 286 + 36 --- 175 + 36 x--> 196 + 36 --- 240 + 36 --- 285 + 37 --- 174 + 37 x--> 196 + 37 --- 241 + 37 --- 287 + 38 --- 173 + 38 x--> 196 + 38 --- 239 + 38 --- 284 + 40 --- 150 + 40 x--> 189 + 40 --- 215 + 40 --- 259 + 41 --- 147 + 41 x--> 189 + 41 --- 214 + 41 --- 261 + 42 --- 148 + 42 x--> 189 + 42 --- 217 + 42 --- 260 + 43 --- 149 + 43 x--> 189 + 43 --- 216 + 43 --- 262 + 45 --- 145 + 45 x--> 188 + 45 --- 210 + 45 --- 258 + 46 --- 143 + 46 x--> 188 + 46 --- 213 + 46 --- 256 + 47 --- 146 + 47 x--> 188 + 47 --- 212 + 47 --- 255 + 48 --- 144 + 48 x--> 188 + 48 --- 211 + 48 --- 257 + 50 --- 177 + 50 x--> 207 + 50 --- 246 + 50 --- 291 + 51 --- 179 + 51 x--> 207 + 51 --- 243 + 51 --- 289 + 52 --- 176 + 52 x--> 207 + 52 --- 244 + 52 --- 288 + 53 --- 178 + 53 x--> 207 + 53 --- 245 + 53 --- 290 + 55 --- 183 + 55 x--> 208 + 55 --- 249 + 55 --- 292 + 56 --- 181 + 56 x--> 208 + 56 --- 247 + 56 --- 294 + 57 --- 182 + 57 x--> 208 + 57 --- 250 + 57 --- 293 + 58 --- 180 + 58 x--> 208 + 58 --- 248 + 58 --- 295 + 60 --- 151 + 60 x--> 202 + 60 --- 220 + 60 --- 265 + 61 --- 154 + 61 x--> 202 + 61 --- 218 + 61 --- 264 + 62 --- 153 + 62 x--> 202 + 62 --- 221 + 62 --- 263 + 63 --- 152 + 63 x--> 202 + 63 --- 219 + 63 --- 266 + 65 --- 160 + 65 x--> 190 + 65 --- 230 + 65 --- 274 + 66 --- 163 + 66 x--> 190 + 66 --- 227 + 66 --- 272 + 67 --- 162 + 67 x--> 190 + 67 --- 229 + 67 --- 275 + 68 --- 161 + 68 x--> 190 + 68 --- 228 + 68 --- 273 + 70 --- 169 + 70 x--> 202 + 70 --- 237 + 70 --- 283 + 71 --- 171 + 71 x--> 202 + 71 --- 238 + 71 --- 281 + 72 --- 170 + 72 x--> 202 + 72 --- 236 + 72 --- 280 + 73 --- 168 + 73 x--> 202 + 73 --- 235 + 73 --- 282 + 75 --- 165 + 75 x--> 194 + 75 --- 234 + 75 --- 278 + 76 --- 164 + 76 x--> 194 + 76 --- 231 + 76 --- 277 + 77 --- 167 + 77 x--> 194 + 77 --- 233 + 77 --- 276 + 78 --- 166 + 78 x--> 194 + 78 --- 232 + 78 --- 279 + 80 --- 186 + 80 x--> 199 + 80 --- 254 + 80 --- 296 + 81 --- 187 + 81 x--> 199 + 81 --- 253 + 81 --- 297 + 82 --- 184 + 82 x--> 199 + 82 --- 252 + 82 --- 299 + 83 --- 185 + 83 x--> 199 + 83 --- 251 + 83 --- 298 + 90 --- 159 + 90 x--> 193 + 90 --- 226 + 90 --- 271 + 104 --- 155 + 104 --- 156 + 104 --- 157 + 104 --- 158 + 104 --- 191 + 104 --- 203 + 104 --- 222 + 104 --- 223 + 104 --- 224 + 104 --- 225 + 104 --- 267 + 104 --- 268 + 104 --- 269 + 104 --- 270 + 114 --- 172 + 114 --- 173 + 114 --- 174 + 114 --- 175 + 114 --- 196 + 114 --- 206 + 114 --- 239 + 114 --- 240 + 114 --- 241 + 114 --- 242 + 114 --- 284 + 114 --- 285 + 114 --- 286 + 114 --- 287 + 117 --- 147 + 117 --- 148 + 117 --- 149 + 117 --- 150 + 117 --- 189 + 117 --- 201 + 117 --- 214 + 117 --- 215 + 117 --- 216 + 117 --- 217 + 117 --- 259 + 117 --- 260 + 117 --- 261 + 117 --- 262 + 119 --- 143 + 119 --- 144 + 119 --- 145 + 119 --- 146 + 119 --- 188 + 119 --- 200 + 119 --- 210 + 119 --- 211 + 119 --- 212 + 119 --- 213 + 119 --- 255 + 119 --- 256 + 119 --- 257 + 119 --- 258 + 126 --- 176 + 126 --- 177 + 126 --- 178 + 126 --- 179 + 126 --- 197 + 126 --- 207 + 126 --- 243 + 126 --- 244 + 126 --- 245 + 126 --- 246 + 126 --- 288 + 126 --- 289 + 126 --- 290 + 126 --- 291 + 128 --- 180 + 128 --- 181 + 128 --- 182 + 128 --- 183 + 128 --- 198 + 128 --- 208 + 128 --- 247 + 128 --- 248 + 128 --- 249 + 128 --- 250 + 128 --- 292 + 128 --- 293 + 128 --- 294 + 128 --- 295 + 129 --- 151 + 129 --- 152 + 129 --- 153 + 129 --- 154 + 129 --- 190 + 129 --- 202 + 129 --- 218 + 129 --- 219 + 129 --- 220 + 129 --- 221 + 129 --- 263 + 129 --- 264 + 129 --- 265 + 129 --- 266 + 130 --- 160 + 130 --- 161 + 130 --- 162 + 130 --- 163 + 130 --- 204 + 130 --- 227 + 130 --- 228 + 130 --- 229 + 130 --- 230 + 130 --- 272 + 130 --- 273 + 130 --- 274 + 130 --- 275 + 133 --- 168 + 133 --- 169 + 133 --- 170 + 133 --- 171 + 133 --- 195 + 133 --- 235 + 133 --- 236 + 133 --- 237 + 133 --- 238 + 133 --- 280 + 133 --- 281 + 133 --- 282 + 133 --- 283 + 139 --- 164 + 139 --- 165 + 139 --- 166 + 139 --- 167 + 139 --- 194 + 139 --- 205 + 139 --- 231 + 139 --- 232 + 139 --- 233 + 139 --- 234 + 139 --- 276 + 139 --- 277 + 139 --- 278 + 139 --- 279 + 141 --- 184 + 141 --- 185 + 141 --- 186 + 141 --- 187 + 141 --- 199 + 141 --- 209 + 141 --- 251 + 141 --- 252 + 141 --- 253 + 141 --- 254 + 141 --- 296 + 141 --- 297 + 141 --- 298 + 141 --- 299 + 142 --- 159 + 142 --- 192 + 142 --- 193 + 142 --- 226 + 142 --- 271 + 213 <--x 143 + 256 <--x 143 + 258 <--x 143 + 211 <--x 144 + 255 <--x 144 + 257 <--x 144 + 210 <--x 145 + 257 <--x 145 + 258 <--x 145 + 212 <--x 146 + 255 <--x 146 + 256 <--x 146 + 214 <--x 147 + 259 <--x 147 + 261 <--x 147 + 217 <--x 148 + 260 <--x 148 + 261 <--x 148 + 216 <--x 149 + 260 <--x 149 + 262 <--x 149 + 215 <--x 150 + 259 <--x 150 + 262 <--x 150 + 220 <--x 151 + 265 <--x 151 + 266 <--x 151 + 219 <--x 152 + 263 <--x 152 + 266 <--x 152 + 221 <--x 153 + 263 <--x 153 + 264 <--x 153 + 218 <--x 154 + 264 <--x 154 + 265 <--x 154 + 224 <--x 155 + 267 <--x 155 + 270 <--x 155 + 222 <--x 156 + 267 <--x 156 + 269 <--x 156 + 225 <--x 157 + 268 <--x 157 + 270 <--x 157 + 223 <--x 158 + 268 <--x 158 + 269 <--x 158 + 226 <--x 159 + 271 <--x 159 + 230 <--x 160 + 273 <--x 160 + 274 <--x 160 + 228 <--x 161 + 273 <--x 161 + 275 <--x 161 + 229 <--x 162 + 272 <--x 162 + 275 <--x 162 + 227 <--x 163 + 272 <--x 163 + 274 <--x 163 + 231 <--x 164 + 277 <--x 164 + 278 <--x 164 + 234 <--x 165 + 278 <--x 165 + 279 <--x 165 + 232 <--x 166 + 276 <--x 166 + 279 <--x 166 + 233 <--x 167 + 276 <--x 167 + 277 <--x 167 + 235 <--x 168 + 280 <--x 168 + 282 <--x 168 + 237 <--x 169 + 282 <--x 169 + 283 <--x 169 + 236 <--x 170 + 280 <--x 170 + 281 <--x 170 + 238 <--x 171 + 281 <--x 171 + 283 <--x 171 + 242 <--x 172 + 284 <--x 172 + 286 <--x 172 + 239 <--x 173 + 284 <--x 173 + 287 <--x 173 + 241 <--x 174 + 285 <--x 174 + 287 <--x 174 + 240 <--x 175 + 285 <--x 175 + 286 <--x 175 + 244 <--x 176 + 288 <--x 176 + 289 <--x 176 + 246 <--x 177 + 290 <--x 177 + 291 <--x 177 + 245 <--x 178 + 288 <--x 178 + 290 <--x 178 + 243 <--x 179 + 289 <--x 179 + 291 <--x 179 + 248 <--x 180 + 293 <--x 180 + 295 <--x 180 + 247 <--x 181 + 292 <--x 181 + 294 <--x 181 + 250 <--x 182 + 293 <--x 182 + 294 <--x 182 + 249 <--x 183 + 292 <--x 183 + 295 <--x 183 + 252 <--x 184 + 297 <--x 184 + 299 <--x 184 + 251 <--x 185 + 298 <--x 185 + 299 <--x 185 + 254 <--x 186 + 296 <--x 186 + 298 <--x 186 + 253 <--x 187 + 296 <--x 187 + 297 <--x 187 + 218 <--x 190 + 219 <--x 190 + 220 <--x 190 + 221 <--x 190 + 226 <--x 192 + 235 <--x 195 + 236 <--x 195 + 237 <--x 195 + 238 <--x 195 + 243 <--x 197 + 244 <--x 197 + 245 <--x 197 + 246 <--x 197 + 247 <--x 198 + 248 <--x 198 + 249 <--x 198 + 250 <--x 198 + 210 <--x 200 + 211 <--x 200 + 212 <--x 200 + 213 <--x 200 + 214 <--x 201 + 215 <--x 201 + 216 <--x 201 + 217 <--x 201 + 222 <--x 203 + 223 <--x 203 + 224 <--x 203 + 225 <--x 203 + 227 <--x 204 + 228 <--x 204 + 229 <--x 204 + 230 <--x 204 + 231 <--x 205 + 232 <--x 205 + 233 <--x 205 + 234 <--x 205 + 239 <--x 206 + 240 <--x 206 + 241 <--x 206 + 242 <--x 206 + 251 <--x 209 + 252 <--x 209 + 253 <--x 209 + 254 <--x 209 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/ops.snap b/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/ops.snap index 008e85e1d..bb69d696a 100644 --- a/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/ops.snap @@ -97,6 +97,21 @@ description: Operations executed dual-basin-utility-sink.kcl "sourceRange": [] } }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -127,6 +142,116 @@ description: Operations executed dual-basin-utility-sink.kcl }, "sourceRange": [] }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 13.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 13.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, { "labeledArgs": { "planeOrSolid": { @@ -142,116 +267,6 @@ description: Operations executed dual-basin-utility-sink.kcl "type": "StdLibCall", "unlabeledArg": null }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 13.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 13.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -282,21 +297,6 @@ description: Operations executed dual-basin-utility-sink.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -364,6 +364,21 @@ description: Operations executed dual-basin-utility-sink.kcl "sourceRange": [] } }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -394,6 +409,92 @@ description: Operations executed dual-basin-utility-sink.kcl }, "sourceRange": [] }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -13.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -13.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, { "labeledArgs": { "planeOrSolid": { @@ -409,92 +510,6 @@ description: Operations executed dual-basin-utility-sink.kcl "type": "StdLibCall", "unlabeledArg": null }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -13.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -13.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -525,21 +540,6 @@ description: Operations executed dual-basin-utility-sink.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -704,6 +704,21 @@ description: Operations executed dual-basin-utility-sink.kcl "sourceRange": [] } }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -734,6 +749,116 @@ description: Operations executed dual-basin-utility-sink.kcl }, "sourceRange": [] }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 667.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 667.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, { "labeledArgs": { "planeOrSolid": { @@ -749,116 +874,6 @@ description: Operations executed dual-basin-utility-sink.kcl "type": "StdLibCall", "unlabeledArg": null }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 667.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 667.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -904,21 +919,6 @@ description: Operations executed dual-basin-utility-sink.kcl "type": "StdLibCall", "unlabeledArg": null }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "path": { diff --git a/rust/kcl-lib/tests/kcl_samples/enclosure/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/enclosure/artifact_commands.snap index d662c344b..98d273a1e 100644 --- a/rust/kcl-lib/tests/kcl_samples/enclosure/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/enclosure/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands enclosure.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands enclosure.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -200,6 +200,14 @@ description: Artifact commands enclosure.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -211,8 +219,108 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -228,9 +336,40 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -247,39 +386,12 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -290,43 +402,6 @@ description: Artifact commands enclosure.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -337,121 +412,6 @@ description: Artifact commands enclosure.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -500,6 +460,46 @@ description: Artifact commands enclosure.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -538,6 +538,113 @@ description: Artifact commands enclosure.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -558,7 +665,148 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 13.0, + "y": 13.0 + }, + "radius": 7.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 13.0, + "y": 162.0 + }, + "radius": 7.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 112.0, + "y": 13.0 + }, + "radius": 7.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 112.0, + "y": 162.0 + }, + "radius": 7.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } } }, { @@ -574,333 +822,6 @@ description: Artifact commands enclosure.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 13.0, - "y": 13.0 - }, - "radius": 7.0, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 17.0, - "y": 13.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 13.0, - "y": 13.0 - }, - "radius": 4.0, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 67.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 3.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -914,6 +835,68 @@ description: Artifact commands enclosure.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 119.0, + "y": 13.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 119.0, + "y": 162.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -925,25 +908,145 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 13.0, - "y": 162.0 - }, - "radius": 7.0, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -974,7 +1077,161 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 13.0, + "y": 13.0 + }, + "radius": 4.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 13.0, + "y": 162.0 + }, + "radius": 4.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 112.0, + "y": 13.0 + }, + "radius": 4.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 112.0, + "y": 162.0 + }, + "radius": 4.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 17.0, + "y": 13.0, + "z": 0.0 + } } }, { @@ -990,333 +1247,6 @@ description: Artifact commands enclosure.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 13.0, - "y": 162.0 - }, - "radius": 4.0, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 67.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 3.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 119.0, - "y": 13.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 112.0, - "y": 13.0 - }, - "radius": 7.0, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1330,333 +1260,6 @@ description: Artifact commands enclosure.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 112.0, - "y": 13.0 - }, - "radius": 4.0, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 67.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 3.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 119.0, - "y": 162.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 112.0, - "y": 162.0 - }, - "radius": 7.0, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1674,49 +1277,9 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 112.0, - "y": 162.0 - }, - "radius": 4.0, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -1728,6 +1291,128 @@ description: Artifact commands enclosure.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -1759,7 +1444,33 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 67.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 67.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 67.0, + "faces": null, + "opposite": "None" } }, { @@ -1770,6 +1481,274 @@ description: Artifact commands enclosure.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1783,7 +1762,7 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1792,17 +1771,16 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1821,39 +1799,12 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1868,9 +1819,130 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1914,13 +1986,6 @@ description: Artifact commands enclosure.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1941,6 +2006,13 @@ description: Artifact commands enclosure.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2017,6 +2089,32 @@ description: Artifact commands enclosure.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2033,33 +2131,6 @@ description: Artifact commands enclosure.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 167.0, - "y": 13.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2089,8 +2160,36 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 167.0, + "y": 13.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -2106,9 +2205,8 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -2127,33 +2225,6 @@ description: Artifact commands enclosure.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 167.0, - "y": 162.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2183,8 +2254,36 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 167.0, + "y": 162.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -2200,9 +2299,8 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -2221,33 +2319,6 @@ description: Artifact commands enclosure.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 266.0, - "y": 13.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2277,8 +2348,36 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 266.0, + "y": 13.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -2294,9 +2393,8 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -2315,33 +2413,6 @@ description: Artifact commands enclosure.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 266.0, - "y": 162.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2371,26 +2442,27 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 266.0, + "y": 162.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "start_path" } }, { @@ -2420,6 +2492,14 @@ description: Artifact commands enclosure.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2431,8 +2511,216 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -2448,9 +2736,80 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2467,39 +2826,12 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2514,39 +2846,12 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2561,39 +2866,12 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2604,43 +2882,6 @@ description: Artifact commands enclosure.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2651,215 +2892,6 @@ description: Artifact commands enclosure.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2908,6 +2940,46 @@ description: Artifact commands enclosure.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2920,13 +2992,6 @@ description: Artifact commands enclosure.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2947,6 +3012,13 @@ description: Artifact commands enclosure.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3023,6 +3095,32 @@ description: Artifact commands enclosure.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3035,33 +3133,6 @@ description: Artifact commands enclosure.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 170.0, - "y": 13.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3091,17 +3162,27 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 170.0, + "y": 13.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -3113,6 +3194,23 @@ description: Artifact commands enclosure.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3125,33 +3223,6 @@ description: Artifact commands enclosure.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 170.0, - "y": 162.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3181,17 +3252,27 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 170.0, + "y": 162.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -3203,6 +3284,23 @@ description: Artifact commands enclosure.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3215,33 +3313,6 @@ description: Artifact commands enclosure.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 269.0, - "y": 13.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3271,17 +3342,27 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 269.0, + "y": 13.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -3293,6 +3374,23 @@ description: Artifact commands enclosure.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3305,33 +3403,6 @@ description: Artifact commands enclosure.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 269.0, - "y": 162.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3361,26 +3432,27 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 269.0, + "y": 162.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "start_path" } }, { @@ -3406,6 +3478,14 @@ description: Artifact commands enclosure.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3417,8 +3497,216 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -3434,9 +3722,80 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3453,39 +3812,12 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3500,39 +3832,12 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3547,39 +3852,12 @@ description: Artifact commands enclosure.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3590,43 +3868,6 @@ description: Artifact commands enclosure.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3637,287 +3878,6 @@ description: Artifact commands enclosure.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -3965,5 +3925,45 @@ description: Artifact commands enclosure.kcl "tolerance": 0.0000001, "cut_type": "fillet" } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/enclosure/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/enclosure/artifact_graph_flowchart.snap.md index eefd25b7f..cb4ecd677 100644 --- a/rust/kcl-lib/tests/kcl_samples/enclosure/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/enclosure/artifact_graph_flowchart.snap.md @@ -1,449 +1,449 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[287, 312, 0]"] - 3["Segment
[318, 384, 0]"] - 4["Segment
[390, 489, 0]"] - 5["Segment
[495, 612, 0]"] - 6["Segment
[618, 703, 0]"] - 7["Segment
[709, 716, 0]"] - 8[Solid2d] - end - subgraph path29 [Path] - 29["Path
[1597, 1680, 0]"] - 30["Segment
[1597, 1680, 0]"] - 31[Solid2d] - end - subgraph path32 [Path] - 32["Path
[1706, 1773, 0]"] - 33["Segment
[1706, 1773, 0]"] - 34[Solid2d] - end - subgraph path42 [Path] - 42["Path
[1597, 1680, 0]"] - 43["Segment
[1597, 1680, 0]"] - 44[Solid2d] - end - subgraph path45 [Path] - 45["Path
[1706, 1773, 0]"] - 46["Segment
[1706, 1773, 0]"] - 47[Solid2d] - end - subgraph path55 [Path] - 55["Path
[1597, 1680, 0]"] - 56["Segment
[1597, 1680, 0]"] - 57[Solid2d] - end - subgraph path58 [Path] - 58["Path
[1706, 1773, 0]"] - 59["Segment
[1706, 1773, 0]"] - 60[Solid2d] - end - subgraph path68 [Path] - 68["Path
[1597, 1680, 0]"] - 69["Segment
[1597, 1680, 0]"] + subgraph path8 [Path] + 8["Path
[287, 312, 0]"] + 27["Segment
[318, 384, 0]"] + 28["Segment
[390, 489, 0]"] + 29["Segment
[495, 612, 0]"] + 30["Segment
[618, 703, 0]"] + 31["Segment
[709, 716, 0]"] 70[Solid2d] end - subgraph path71 [Path] - 71["Path
[1706, 1773, 0]"] - 72["Segment
[1706, 1773, 0]"] + subgraph path9 [Path] + 9["Path
[1597, 1680, 0]"] + 33["Segment
[1597, 1680, 0]"] + 62[Solid2d] + end + subgraph path10 [Path] + 10["Path
[1597, 1680, 0]"] + 32["Segment
[1597, 1680, 0]"] + 67[Solid2d] + end + subgraph path11 [Path] + 11["Path
[1597, 1680, 0]"] + 34["Segment
[1597, 1680, 0]"] + 72[Solid2d] + end + subgraph path12 [Path] + 12["Path
[1597, 1680, 0]"] + 35["Segment
[1597, 1680, 0]"] 73[Solid2d] end - subgraph path81 [Path] - 81["Path
[2341, 2376, 0]"] - 82["Segment
[2382, 2448, 0]"] - 83["Segment
[2454, 2553, 0]"] - 84["Segment
[2559, 2676, 0]"] - 85["Segment
[2682, 2767, 0]"] - 86["Segment
[2773, 2780, 0]"] - 87[Solid2d] + subgraph path13 [Path] + 13["Path
[1706, 1773, 0]"] + 38["Segment
[1706, 1773, 0]"] + 59[Solid2d] end - subgraph path88 [Path] - 88["Path
[2804, 2960, 0]"] - 89["Segment
[2804, 2960, 0]"] - 90[Solid2d] + subgraph path14 [Path] + 14["Path
[1706, 1773, 0]"] + 39["Segment
[1706, 1773, 0]"] + 63[Solid2d] end - subgraph path91 [Path] - 91["Path
[2985, 3152, 0]"] - 92["Segment
[2985, 3152, 0]"] - 93[Solid2d] + subgraph path15 [Path] + 15["Path
[1706, 1773, 0]"] + 37["Segment
[1706, 1773, 0]"] + 64[Solid2d] end - subgraph path94 [Path] - 94["Path
[3177, 3335, 0]"] - 95["Segment
[3177, 3335, 0]"] - 96[Solid2d] + subgraph path16 [Path] + 16["Path
[1706, 1773, 0]"] + 36["Segment
[1706, 1773, 0]"] + 66[Solid2d] end - subgraph path97 [Path] - 97["Path
[3360, 3529, 0]"] - 98["Segment
[3360, 3529, 0]"] - 99[Solid2d] + subgraph path17 [Path] + 17["Path
[2341, 2376, 0]"] + 40["Segment
[2382, 2448, 0]"] + 41["Segment
[2454, 2553, 0]"] + 42["Segment
[2559, 2676, 0]"] + 43["Segment
[2682, 2767, 0]"] + 44["Segment
[2773, 2780, 0]"] + 75[Solid2d] end - subgraph path119 [Path] - 119["Path
[3972, 4056, 0]"] - 120["Segment
[4062, 4150, 0]"] - 121["Segment
[4156, 4277, 0]"] - 122["Segment
[4283, 4400, 0]"] - 123["Segment
[4406, 4491, 0]"] - 124["Segment
[4497, 4504, 0]"] - 125[Solid2d] + subgraph path18 [Path] + 18["Path
[2804, 2960, 0]"] + 45["Segment
[2804, 2960, 0]"] + 58[Solid2d] end - subgraph path126 [Path] - 126["Path
[4528, 4700, 0]"] - 127["Segment
[4528, 4700, 0]"] - 128[Solid2d] + subgraph path19 [Path] + 19["Path
[2985, 3152, 0]"] + 46["Segment
[2985, 3152, 0]"] + 76[Solid2d] end - subgraph path129 [Path] - 129["Path
[4725, 4908, 0]"] - 130["Segment
[4725, 4908, 0]"] - 131[Solid2d] + subgraph path20 [Path] + 20["Path
[3177, 3335, 0]"] + 47["Segment
[3177, 3335, 0]"] + 60[Solid2d] end - subgraph path132 [Path] - 132["Path
[4933, 5107, 0]"] - 133["Segment
[4933, 5107, 0]"] - 134[Solid2d] + subgraph path21 [Path] + 21["Path
[3360, 3529, 0]"] + 48["Segment
[3360, 3529, 0]"] + 69[Solid2d] end - subgraph path135 [Path] - 135["Path
[5132, 5317, 0]"] - 136["Segment
[5132, 5317, 0]"] - 137[Solid2d] + subgraph path22 [Path] + 22["Path
[3972, 4056, 0]"] + 49["Segment
[4062, 4150, 0]"] + 50["Segment
[4156, 4277, 0]"] + 51["Segment
[4283, 4400, 0]"] + 52["Segment
[4406, 4491, 0]"] + 53["Segment
[4497, 4504, 0]"] + 65[Solid2d] + end + subgraph path23 [Path] + 23["Path
[4528, 4700, 0]"] + 54["Segment
[4528, 4700, 0]"] + 61[Solid2d] + end + subgraph path24 [Path] + 24["Path
[4725, 4908, 0]"] + 55["Segment
[4725, 4908, 0]"] + 68[Solid2d] + end + subgraph path25 [Path] + 25["Path
[4933, 5107, 0]"] + 56["Segment
[4933, 5107, 0]"] + 71[Solid2d] + end + subgraph path26 [Path] + 26["Path
[5132, 5317, 0]"] + 57["Segment
[5132, 5317, 0]"] + 74[Solid2d] end 1["Plane
[264, 281, 0]"] - 9["Sweep Extrusion
[730, 765, 0]"] - 10[Wall] - 11[Wall] - 12[Wall] - 13[Wall] - 14["Cap Start"] - 15["Cap End"] - 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] - 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 20["SweepEdge Opposite"] - 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] - 23["SweepEdge Adjacent"] - 24["EdgeCut Fillet
[771, 1053, 0]"] - 25["EdgeCut Fillet
[771, 1053, 0]"] - 26["EdgeCut Fillet
[771, 1053, 0]"] - 27["EdgeCut Fillet
[771, 1053, 0]"] - 28["Plane
[1566, 1589, 0]"] - 35["Sweep Extrusion
[1790, 1841, 0]"] - 36[Wall] - 37["Cap Start"] - 38["Cap End"] - 39["SweepEdge Opposite"] - 40["SweepEdge Adjacent"] - 41["Plane
[1566, 1589, 0]"] - 48["Sweep Extrusion
[1790, 1841, 0]"] - 49[Wall] - 50["Cap Start"] - 51["Cap End"] - 52["SweepEdge Opposite"] - 53["SweepEdge Adjacent"] - 54["Plane
[1566, 1589, 0]"] - 61["Sweep Extrusion
[1790, 1841, 0]"] - 62[Wall] - 63["Cap Start"] - 64["Cap End"] - 65["SweepEdge Opposite"] - 66["SweepEdge Adjacent"] - 67["Plane
[1566, 1589, 0]"] - 74["Sweep Extrusion
[1790, 1841, 0]"] - 75[Wall] - 76["Cap Start"] - 77["Cap End"] - 78["SweepEdge Opposite"] - 79["SweepEdge Adjacent"] - 80["Plane
[2318, 2335, 0]"] - 100["Sweep Extrusion
[3544, 3586, 0]"] - 101[Wall] - 102[Wall] - 103[Wall] - 104[Wall] + 2["Plane
[1566, 1589, 0]"] + 3["Plane
[1566, 1589, 0]"] + 4["Plane
[1566, 1589, 0]"] + 5["Plane
[1566, 1589, 0]"] + 6["Plane
[2318, 2335, 0]"] + 7["StartSketchOnFace
[3929, 3966, 0]"] + 77["Sweep Extrusion
[730, 765, 0]"] + 78["Sweep Extrusion
[1790, 1841, 0]"] + 79["Sweep Extrusion
[1790, 1841, 0]"] + 80["Sweep Extrusion
[1790, 1841, 0]"] + 81["Sweep Extrusion
[1790, 1841, 0]"] + 82["Sweep Extrusion
[3544, 3586, 0]"] + 83["Sweep Extrusion
[5332, 5374, 0]"] + 84[Wall] + 85[Wall] + 86[Wall] + 87[Wall] + 88[Wall] + 89[Wall] + 90[Wall] + 91[Wall] + 92[Wall] + 93[Wall] + 94[Wall] + 95[Wall] + 96[Wall] + 97[Wall] + 98[Wall] + 99[Wall] + 100["Cap Start"] + 101["Cap Start"] + 102["Cap Start"] + 103["Cap Start"] + 104["Cap Start"] 105["Cap Start"] - 106["Cap End"] - 107["SweepEdge Opposite"] - 108["SweepEdge Adjacent"] - 109["SweepEdge Opposite"] - 110["SweepEdge Adjacent"] - 111["SweepEdge Opposite"] - 112["SweepEdge Adjacent"] - 113["SweepEdge Opposite"] - 114["SweepEdge Adjacent"] - 115["EdgeCut Fillet
[3592, 3874, 0]"] - 116["EdgeCut Fillet
[3592, 3874, 0]"] - 117["EdgeCut Fillet
[3592, 3874, 0]"] - 118["EdgeCut Fillet
[3592, 3874, 0]"] - 138["Sweep Extrusion
[5332, 5374, 0]"] - 139[Wall] - 140[Wall] - 141[Wall] - 142[Wall] - 143["Cap Start"] - 144["Cap End"] - 145["SweepEdge Opposite"] - 146["SweepEdge Adjacent"] - 147["SweepEdge Opposite"] - 148["SweepEdge Adjacent"] - 149["SweepEdge Opposite"] - 150["SweepEdge Adjacent"] - 151["SweepEdge Opposite"] - 152["SweepEdge Adjacent"] - 153["EdgeCut Fillet
[5380, 5662, 0]"] + 106["Cap Start"] + 107["Cap End"] + 108["Cap End"] + 109["Cap End"] + 110["Cap End"] + 111["Cap End"] + 112["Cap End"] + 113["Cap End"] + 114["SweepEdge Opposite"] + 115["SweepEdge Opposite"] + 116["SweepEdge Opposite"] + 117["SweepEdge Opposite"] + 118["SweepEdge Opposite"] + 119["SweepEdge Opposite"] + 120["SweepEdge Opposite"] + 121["SweepEdge Opposite"] + 122["SweepEdge Opposite"] + 123["SweepEdge Opposite"] + 124["SweepEdge Opposite"] + 125["SweepEdge Opposite"] + 126["SweepEdge Opposite"] + 127["SweepEdge Opposite"] + 128["SweepEdge Opposite"] + 129["SweepEdge Opposite"] + 130["SweepEdge Adjacent"] + 131["SweepEdge Adjacent"] + 132["SweepEdge Adjacent"] + 133["SweepEdge Adjacent"] + 134["SweepEdge Adjacent"] + 135["SweepEdge Adjacent"] + 136["SweepEdge Adjacent"] + 137["SweepEdge Adjacent"] + 138["SweepEdge Adjacent"] + 139["SweepEdge Adjacent"] + 140["SweepEdge Adjacent"] + 141["SweepEdge Adjacent"] + 142["SweepEdge Adjacent"] + 143["SweepEdge Adjacent"] + 144["SweepEdge Adjacent"] + 145["SweepEdge Adjacent"] + 146["EdgeCut Fillet
[771, 1053, 0]"] + 147["EdgeCut Fillet
[771, 1053, 0]"] + 148["EdgeCut Fillet
[771, 1053, 0]"] + 149["EdgeCut Fillet
[771, 1053, 0]"] + 150["EdgeCut Fillet
[3592, 3874, 0]"] + 151["EdgeCut Fillet
[3592, 3874, 0]"] + 152["EdgeCut Fillet
[3592, 3874, 0]"] + 153["EdgeCut Fillet
[3592, 3874, 0]"] 154["EdgeCut Fillet
[5380, 5662, 0]"] 155["EdgeCut Fillet
[5380, 5662, 0]"] 156["EdgeCut Fillet
[5380, 5662, 0]"] - 157["StartSketchOnFace
[3929, 3966, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 ---- 9 - 2 --- 8 - 3 --- 10 - 3 --- 16 - 3 --- 17 - 3 x--> 14 + 157["EdgeCut Fillet
[5380, 5662, 0]"] + 1 --- 8 + 2 --- 12 + 2 --- 14 + 3 --- 9 + 3 --- 15 4 --- 11 - 4 --- 18 - 4 --- 19 - 4 x--> 14 - 5 --- 12 - 5 --- 20 - 5 --- 21 - 5 x--> 14 - 6 --- 13 - 6 --- 22 - 6 --- 23 - 6 x--> 14 - 9 --- 10 - 9 --- 11 - 9 --- 12 - 9 --- 13 - 9 --- 14 - 9 --- 15 - 9 --- 16 - 9 --- 17 - 9 --- 18 - 9 --- 19 - 9 --- 20 - 9 --- 21 - 9 --- 22 - 9 --- 23 - 16 <--x 10 - 16 <--x 15 - 18 <--x 11 - 18 <--x 15 - 20 <--x 12 - 20 <--x 15 - 22 <--x 13 - 22 <--x 15 - 17 <--x 24 - 19 <--x 25 - 21 <--x 26 - 23 <--x 27 - 28 --- 29 - 28 --- 32 - 29 --- 30 - 29 ---- 35 - 29 --- 31 - 30 --- 36 - 30 --- 39 - 30 --- 40 - 30 x--> 37 - 32 --- 33 - 32 --- 34 - 35 --- 36 - 35 --- 37 - 35 --- 38 - 35 --- 39 - 35 --- 40 - 39 <--x 36 - 39 <--x 38 - 40 <--x 36 - 41 --- 42 - 41 --- 45 - 42 --- 43 - 42 ---- 48 - 42 --- 44 - 43 --- 49 - 43 --- 52 - 43 --- 53 - 43 x--> 50 - 45 --- 46 - 45 --- 47 - 48 --- 49 - 48 --- 50 - 48 --- 51 - 48 --- 52 - 48 --- 53 - 52 <--x 49 - 52 <--x 51 - 53 <--x 49 - 54 --- 55 - 54 --- 58 - 55 --- 56 - 55 ---- 61 - 55 --- 57 - 56 --- 62 - 56 --- 65 - 56 --- 66 - 56 x--> 63 - 58 --- 59 - 58 --- 60 - 61 --- 62 - 61 --- 63 - 61 --- 64 - 61 --- 65 - 61 --- 66 - 65 <--x 62 - 65 <--x 64 - 66 <--x 62 - 67 --- 68 - 67 --- 71 - 68 --- 69 - 68 ---- 74 - 68 --- 70 - 69 --- 75 - 69 --- 78 - 69 --- 79 - 69 x--> 76 - 71 --- 72 - 71 --- 73 - 74 --- 75 - 74 --- 76 - 74 --- 77 - 74 --- 78 - 74 --- 79 - 78 <--x 75 - 78 <--x 77 - 79 <--x 75 - 80 --- 81 - 80 --- 88 - 80 --- 91 + 4 --- 16 + 5 --- 10 + 5 --- 13 + 6 --- 17 + 6 --- 18 + 6 --- 19 + 6 --- 20 + 6 --- 21 + 113 x--> 7 + 8 --- 27 + 8 --- 28 + 8 --- 29 + 8 --- 30 + 8 --- 31 + 8 --- 70 + 8 ---- 77 + 9 --- 33 + 9 --- 62 + 9 ---- 80 + 10 --- 32 + 10 --- 67 + 10 ---- 79 + 11 --- 34 + 11 --- 72 + 11 ---- 78 + 12 --- 35 + 12 --- 73 + 12 ---- 81 + 13 --- 38 + 13 --- 59 + 14 --- 39 + 14 --- 63 + 15 --- 37 + 15 --- 64 + 16 --- 36 + 16 --- 66 + 17 --- 40 + 17 --- 41 + 17 --- 42 + 17 --- 43 + 17 --- 44 + 17 --- 75 + 17 ---- 82 + 18 --- 45 + 18 --- 58 + 19 --- 46 + 19 --- 76 + 20 --- 47 + 20 --- 60 + 21 --- 48 + 21 --- 69 + 22 --- 49 + 22 --- 50 + 22 --- 51 + 22 --- 52 + 22 --- 53 + 22 --- 65 + 22 ---- 83 + 113 --- 22 + 23 --- 54 + 23 --- 61 + 113 --- 23 + 24 --- 55 + 24 --- 68 + 113 --- 24 + 25 --- 56 + 25 --- 71 + 113 --- 25 + 26 --- 57 + 26 --- 74 + 113 --- 26 + 27 --- 92 + 27 x--> 102 + 27 --- 119 + 27 --- 137 + 28 --- 90 + 28 x--> 102 + 28 --- 122 + 28 --- 136 + 29 --- 89 + 29 x--> 102 + 29 --- 121 + 29 --- 138 + 30 --- 91 + 30 x--> 102 + 30 --- 120 + 30 --- 135 + 32 --- 93 + 32 x--> 103 + 32 --- 123 + 32 --- 139 + 33 --- 94 + 33 x--> 104 + 33 --- 124 + 33 --- 140 + 34 --- 88 + 34 x--> 101 + 34 --- 118 + 34 --- 134 + 35 --- 95 + 35 x--> 105 + 35 --- 125 + 35 --- 141 + 40 --- 98 + 40 x--> 106 + 40 --- 129 + 40 --- 144 + 41 --- 96 + 41 x--> 106 + 41 --- 127 + 41 --- 143 + 42 --- 99 + 42 x--> 106 + 42 --- 126 + 42 --- 145 + 43 --- 97 + 43 x--> 106 + 43 --- 128 + 43 --- 142 + 49 --- 87 + 49 x--> 100 + 49 --- 114 + 49 --- 130 + 50 --- 86 + 50 x--> 100 + 50 --- 117 + 50 --- 133 + 51 --- 84 + 51 x--> 100 + 51 --- 116 + 51 --- 132 + 52 --- 85 + 52 x--> 100 + 52 --- 115 + 52 --- 131 + 77 --- 89 + 77 --- 90 + 77 --- 91 + 77 --- 92 + 77 --- 102 + 77 --- 109 + 77 --- 119 + 77 --- 120 + 77 --- 121 + 77 --- 122 + 77 --- 135 + 77 --- 136 + 77 --- 137 + 77 --- 138 + 78 --- 88 + 78 --- 101 + 78 --- 108 + 78 --- 118 + 78 --- 134 + 79 --- 93 + 79 --- 103 + 79 --- 110 + 79 --- 123 + 79 --- 139 80 --- 94 - 80 --- 97 - 81 --- 82 - 81 --- 83 - 81 --- 84 - 81 --- 85 - 81 --- 86 - 81 ---- 100 - 81 --- 87 - 82 --- 101 - 82 --- 107 - 82 --- 108 - 82 x--> 105 - 83 --- 102 - 83 --- 109 - 83 --- 110 - 83 x--> 105 - 84 --- 103 - 84 --- 111 - 84 --- 112 - 84 x--> 105 - 85 --- 104 - 85 --- 113 - 85 --- 114 - 85 x--> 105 - 88 --- 89 - 88 --- 90 - 91 --- 92 - 91 --- 93 - 94 --- 95 - 94 --- 96 - 97 --- 98 - 97 --- 99 - 100 --- 101 - 100 --- 102 - 100 --- 103 - 100 --- 104 - 100 --- 105 - 100 --- 106 - 100 --- 107 - 100 --- 108 - 100 --- 109 - 100 --- 110 - 100 --- 111 - 100 --- 112 - 100 --- 113 - 100 --- 114 - 106 --- 119 - 106 --- 126 - 106 --- 129 - 106 --- 132 - 106 --- 135 - 107 <--x 101 - 107 <--x 106 - 109 <--x 102 - 109 <--x 106 - 111 <--x 103 - 111 <--x 106 - 113 <--x 104 - 113 <--x 106 - 108 <--x 115 - 110 <--x 116 - 112 <--x 117 - 114 <--x 118 - 119 --- 120 - 119 --- 121 - 119 --- 122 - 119 --- 123 - 119 --- 124 - 119 ---- 138 - 119 --- 125 - 120 --- 139 - 120 --- 145 - 120 --- 146 - 120 x--> 143 - 121 --- 140 - 121 --- 147 - 121 --- 148 - 121 x--> 143 - 122 --- 141 - 122 --- 149 - 122 --- 150 - 122 x--> 143 - 123 --- 142 - 123 --- 151 - 123 --- 152 - 123 x--> 143 - 126 --- 127 - 126 --- 128 - 129 --- 130 - 129 --- 131 - 132 --- 133 - 132 --- 134 - 135 --- 136 - 135 --- 137 - 138 --- 139 - 138 --- 140 - 138 --- 141 - 138 --- 142 - 138 --- 143 - 138 --- 144 - 138 --- 145 - 138 --- 146 - 138 --- 147 - 138 --- 148 - 138 --- 149 - 138 --- 150 - 138 --- 151 - 138 --- 152 - 145 <--x 139 - 145 <--x 144 - 147 <--x 140 - 147 <--x 144 - 149 <--x 141 - 149 <--x 144 - 151 <--x 142 - 151 <--x 144 - 146 <--x 153 - 148 <--x 154 - 150 <--x 155 - 152 <--x 156 - 106 <--x 157 + 80 --- 104 + 80 --- 111 + 80 --- 124 + 80 --- 140 + 81 --- 95 + 81 --- 105 + 81 --- 112 + 81 --- 125 + 81 --- 141 + 82 --- 96 + 82 --- 97 + 82 --- 98 + 82 --- 99 + 82 --- 106 + 82 --- 113 + 82 --- 126 + 82 --- 127 + 82 --- 128 + 82 --- 129 + 82 --- 142 + 82 --- 143 + 82 --- 144 + 82 --- 145 + 83 --- 84 + 83 --- 85 + 83 --- 86 + 83 --- 87 + 83 --- 100 + 83 --- 107 + 83 --- 114 + 83 --- 115 + 83 --- 116 + 83 --- 117 + 83 --- 130 + 83 --- 131 + 83 --- 132 + 83 --- 133 + 116 <--x 84 + 115 <--x 85 + 117 <--x 86 + 114 <--x 87 + 118 <--x 88 + 134 <--x 88 + 121 <--x 89 + 122 <--x 90 + 120 <--x 91 + 119 <--x 92 + 123 <--x 93 + 139 <--x 93 + 124 <--x 94 + 140 <--x 94 + 125 <--x 95 + 141 <--x 95 + 127 <--x 96 + 128 <--x 97 + 129 <--x 98 + 126 <--x 99 + 114 <--x 107 + 115 <--x 107 + 116 <--x 107 + 117 <--x 107 + 118 <--x 108 + 119 <--x 109 + 120 <--x 109 + 121 <--x 109 + 122 <--x 109 + 123 <--x 110 + 124 <--x 111 + 125 <--x 112 + 126 <--x 113 + 127 <--x 113 + 128 <--x 113 + 129 <--x 113 + 130 <--x 154 + 131 <--x 157 + 132 <--x 156 + 133 <--x 155 + 135 <--x 149 + 136 <--x 147 + 137 <--x 146 + 138 <--x 148 + 142 <--x 153 + 143 <--x 151 + 144 <--x 150 + 145 <--x 152 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/enclosure/ops.snap b/rust/kcl-lib/tests/kcl_samples/enclosure/ops.snap index 7b4b3b943..01cd231b6 100644 --- a/rust/kcl-lib/tests/kcl_samples/enclosure/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/enclosure/ops.snap @@ -151,15 +151,580 @@ description: Operations executed enclosure.kcl "sourceRange": [] }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "function001", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 3.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } }, - "sourceRange": [] + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 3.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 3.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { "labeledArgs": { @@ -380,24 +945,17 @@ description: Operations executed enclosure.kcl }, { "labeledArgs": { - "length": { + "tool": { "value": { - "type": "Number", - "value": 67.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } + "type": "Sketch", + "value": { + "artifactId": "[uuid]" } }, "sourceRange": [] } }, - "name": "extrude", + "name": "subtract2d", "sourceRange": [], "type": "StdLibCall", "unlabeledArg": { @@ -410,211 +968,30 @@ description: Operations executed enclosure.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "function001", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { - "planeOrSolid": { + "tool": { "value": { - "type": "Object", + "type": "Sketch", "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } + "artifactId": "[uuid]" } }, "sourceRange": [] } }, - "name": "startSketchOn", + "name": "subtract2d", "sourceRange": [], "type": "StdLibCall", - "unlabeledArg": null + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } }, { "labeledArgs": { @@ -673,225 +1050,26 @@ description: Operations executed enclosure.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "function001", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { - "planeOrSolid": { + "length": { "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] + "type": "Number", + "value": 67.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] + "angle": { + "type": "Degrees" } } }, "sourceRange": [] } }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", + "name": "extrude", "sourceRange": [], "type": "StdLibCall", "unlabeledArg": { @@ -936,237 +1114,6 @@ description: Operations executed enclosure.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "function001", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "length": { @@ -1200,7 +1147,48 @@ description: Operations executed enclosure.kcl } }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "function001", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "function001", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "function001", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "function001", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -1615,5 +1603,17 @@ description: Operations executed enclosure.kcl } }, "sourceRange": [] + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/artifact_commands.snap index 6746bc78e..2428745ec 100644 --- a/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/artifact_commands.snap @@ -54,411 +54,6 @@ description: Artifact commands exhaust-manifold.kcl "hide": true } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": -0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.0, - "y": 3.175, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 76.2, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 76.19999999999999, - "offset": { - "unit": "degrees", - "value": -80.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 150.0847, - "y": 26.464, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 76.19999999999999, - "offset": { - "unit": "degrees", - "value": 85.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -11.0688, - "y": 126.5167, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 20.6375, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 20.6375, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 18.6055, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 18.6055, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sweep", - "target": "[uuid]", - "trajectory": "[uuid]", - "sectional": false, - "tolerance": 0.0000001 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -484,411 +79,6 @@ description: Artifact commands exhaust-manifold.kcl "hide": true } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.9998476951563913, - "y": 0.01745240643728351, - "z": -0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.0, - "y": 3.175, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 76.2, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 76.19999999999999, - "offset": { - "unit": "degrees", - "value": -80.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 150.0847, - "y": 26.464, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 76.19999999999999, - "offset": { - "unit": "degrees", - "value": 85.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -11.0688, - "y": 126.5167, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 71.4375, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 50.8, - "y": 0.0 - }, - "radius": 20.6375, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 69.40549999999999, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 50.8, - "y": 0.0 - }, - "radius": 18.6055, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sweep", - "target": "[uuid]", - "trajectory": "[uuid]", - "sectional": false, - "tolerance": 0.0000001 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -914,411 +104,6 @@ description: Artifact commands exhaust-manifold.kcl "hide": true } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.9114032766354453, - "y": 0.4115143586051088, - "z": -0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.0, - "y": 3.175, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 127.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 76.19999999999999, - "offset": { - "unit": "degrees", - "value": -80.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 125.0706, - "y": 22.0533, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 76.19999999999999, - "offset": { - "unit": "degrees", - "value": 85.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -6.6413, - "y": 75.91, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 122.2375, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 101.6, - "y": 0.0 - }, - "radius": 20.6375, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 120.20549999999999, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 101.6, - "y": 0.0 - }, - "radius": 18.6055, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sweep", - "target": "[uuid]", - "trajectory": "[uuid]", - "sectional": false, - "tolerance": 0.0000001 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -1354,8 +139,8 @@ description: Artifact commands exhaust-manifold.kcl "animated": false, "adjust_camera": false, "planar_normal": { - "x": 0.9048270524660196, - "y": 0.42577929156507266, + "x": 1.0, + "y": 0.0, "z": -0.0 } } @@ -1364,7 +149,48 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.9998476951563913, + "y": 0.01745240643728351, + "z": -0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.9114032766354453, + "y": 0.4115143586051088, + "z": -0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.9048270524660196, + "y": 0.42577929156507266, + "z": -0.0 + } } }, { @@ -1380,6 +206,81 @@ description: Artifact commands exhaust-manifold.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 3.175, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 3.175, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 3.175, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -1387,6 +288,106 @@ description: Artifact commands exhaust-manifold.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 76.2, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 76.2, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 127.0, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -1420,6 +421,105 @@ description: Artifact commands exhaust-manifold.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 76.19999999999999, + "offset": { + "unit": "degrees", + "value": -80.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 76.19999999999999, + "offset": { + "unit": "degrees", + "value": -80.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 76.19999999999999, + "offset": { + "unit": "degrees", + "value": -80.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 150.0847, + "y": 26.464, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 150.0847, + "y": 26.464, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 125.0706, + "y": 22.0533, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -1453,6 +553,105 @@ description: Artifact commands exhaust-manifold.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 76.19999999999999, + "offset": { + "unit": "degrees", + "value": 85.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 76.19999999999999, + "offset": { + "unit": "degrees", + "value": 85.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 76.19999999999999, + "offset": { + "unit": "degrees", + "value": 85.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -11.0688, + "y": 126.5167, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -11.0688, + "y": 126.5167, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -6.6413, + "y": 75.91, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -1495,6 +694,113 @@ description: Artifact commands exhaust-manifold.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1515,19 +821,15 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 173.0375, + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, "y": 0.0, - "z": 0.0 + "z": 1.0 } } }, @@ -1535,7 +837,107 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 20.6375, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 50.8, + "y": 0.0 + }, + "radius": 20.6375, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 101.6, + "y": 0.0 + }, + "radius": 20.6375, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } } }, { @@ -1563,6 +965,210 @@ description: Artifact commands exhaust-manifold.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 20.6375, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 71.4375, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 122.2375, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 173.0375, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1591,19 +1197,15 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 171.00549999999998, + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, "y": 0.0, - "z": 0.0 + "z": 1.0 } } }, @@ -1611,7 +1213,107 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 18.6055, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 50.8, + "y": 0.0 + }, + "radius": 18.6055, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 101.6, + "y": 0.0 + }, + "radius": 18.6055, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } } }, { @@ -1643,17 +1345,140 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 18.6055, + "y": 0.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 69.40549999999999, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 120.20549999999999, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 171.00549999999998, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -1669,19 +1494,135 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sweep", - "target": "[uuid]", - "trajectory": "[uuid]", - "sectional": false, - "tolerance": 0.0000001 + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1697,7 +1638,7 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1706,17 +1647,16 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1735,18 +1675,114 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "hidden": true + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sweep", + "target": "[uuid]", + "trajectory": "[uuid]", + "sectional": false, + "tolerance": 0.0000001 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sweep", + "target": "[uuid]", + "trajectory": "[uuid]", + "sectional": false, + "tolerance": 0.0000001 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sweep", + "target": "[uuid]", + "trajectory": "[uuid]", + "sectional": false, + "tolerance": 0.0000001 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sweep", + "target": "[uuid]", + "trajectory": "[uuid]", + "sectional": false, + "tolerance": 0.0000001 } }, { @@ -1790,13 +1826,6 @@ description: Artifact commands exhaust-manifold.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1817,6 +1846,13 @@ description: Artifact commands exhaust-manifold.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2089,6 +2125,32 @@ description: Artifact commands exhaust-manifold.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2105,33 +2167,6 @@ description: Artifact commands exhaust-manifold.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 18.6055, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2161,8 +2196,36 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 18.6055, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -2178,9 +2241,8 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -2199,33 +2261,6 @@ description: Artifact commands exhaust-manifold.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 69.40549999999999, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2255,8 +2290,36 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 69.40549999999999, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -2272,9 +2335,8 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -2293,33 +2355,6 @@ description: Artifact commands exhaust-manifold.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 120.20549999999999, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2349,8 +2384,36 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 120.20549999999999, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -2366,9 +2429,8 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -2387,33 +2449,6 @@ description: Artifact commands exhaust-manifold.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 171.00549999999998, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2443,8 +2478,36 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 171.00549999999998, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -2460,9 +2523,8 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -2481,33 +2543,6 @@ description: Artifact commands exhaust-manifold.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -21.59, - "y": -24.764999999999997, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2537,8 +2572,36 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -21.59, + "y": -24.764999999999997, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -2554,9 +2617,8 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -2575,33 +2637,6 @@ description: Artifact commands exhaust-manifold.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 27.94, - "y": 24.764999999999997, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2631,8 +2666,36 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 27.94, + "y": 24.764999999999997, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -2648,9 +2711,8 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -2669,33 +2731,6 @@ description: Artifact commands exhaust-manifold.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 130.81, - "y": 24.764999999999997, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2725,8 +2760,36 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 130.81, + "y": 24.764999999999997, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -2742,9 +2805,8 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -2763,33 +2825,6 @@ description: Artifact commands exhaust-manifold.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 180.33999999999997, - "y": -24.764999999999997, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2819,26 +2854,27 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 180.33999999999997, + "y": -24.764999999999997, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "start_path" } }, { @@ -2868,6 +2904,14 @@ description: Artifact commands exhaust-manifold.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2879,8 +2923,648 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -2896,9 +3580,240 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2915,39 +3830,12 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2962,39 +3850,12 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3009,39 +3870,12 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3056,39 +3890,12 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3103,39 +3910,12 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3150,39 +3930,12 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3197,39 +3950,12 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3244,39 +3970,12 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3291,39 +3990,12 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3338,39 +4010,12 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3385,39 +4030,12 @@ description: Artifact commands exhaust-manifold.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3428,43 +4046,6 @@ description: Artifact commands exhaust-manifold.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3475,627 +4056,6 @@ description: Artifact commands exhaust-manifold.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -4120,6 +4080,26 @@ description: Artifact commands exhaust-manifold.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4143,5 +4123,25 @@ description: Artifact commands exhaust-manifold.kcl "tolerance": 0.0000001, "cut_type": "fillet" } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/artifact_graph_flowchart.snap.md index f8dfd8a79..f09b198de 100644 --- a/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/artifact_graph_flowchart.snap.md @@ -1,542 +1,542 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[748, 783, 0]"] - 3["Segment
[791, 817, 0]"] - 4["Segment
[825, 886, 0]"] - 5["Segment
[894, 953, 0]"] - 6["Segment
[961, 1021, 0]"] - 7["Segment
[1029, 1088, 0]"] + subgraph path10 [Path] + 10["Path
[748, 783, 0]"] + 33["Segment
[791, 817, 0]"] + 36["Segment
[825, 886, 0]"] + 41["Segment
[894, 953, 0]"] + 45["Segment
[961, 1021, 0]"] + 48["Segment
[1029, 1088, 0]"] end - subgraph path9 [Path] - 9["Path
[1190, 1252, 0]"] - 10["Segment
[1190, 1252, 0]"] - 11[Solid2d] - end - subgraph path12 [Path] - 12["Path
[1278, 1356, 0]"] - 13["Segment
[1278, 1356, 0]"] - 14[Solid2d] - end - subgraph path22 [Path] - 22["Path
[748, 783, 0]"] - 23["Segment
[791, 817, 0]"] - 24["Segment
[825, 886, 0]"] - 25["Segment
[894, 953, 0]"] - 26["Segment
[961, 1021, 0]"] - 27["Segment
[1029, 1088, 0]"] - end - subgraph path29 [Path] - 29["Path
[1190, 1252, 0]"] - 30["Segment
[1190, 1252, 0]"] - 31[Solid2d] - end - subgraph path32 [Path] - 32["Path
[1278, 1356, 0]"] - 33["Segment
[1278, 1356, 0]"] - 34[Solid2d] - end - subgraph path42 [Path] - 42["Path
[748, 783, 0]"] - 43["Segment
[791, 817, 0]"] - 44["Segment
[825, 886, 0]"] - 45["Segment
[894, 953, 0]"] - 46["Segment
[961, 1021, 0]"] + subgraph path11 [Path] + 11["Path
[748, 783, 0]"] + 31["Segment
[791, 817, 0]"] + 35["Segment
[825, 886, 0]"] + 39["Segment
[894, 953, 0]"] + 44["Segment
[961, 1021, 0]"] 47["Segment
[1029, 1088, 0]"] end - subgraph path49 [Path] - 49["Path
[1190, 1252, 0]"] - 50["Segment
[1190, 1252, 0]"] - 51[Solid2d] + subgraph path12 [Path] + 12["Path
[748, 783, 0]"] + 32["Segment
[791, 817, 0]"] + 38["Segment
[825, 886, 0]"] + 42["Segment
[894, 953, 0]"] + 43["Segment
[961, 1021, 0]"] + 49["Segment
[1029, 1088, 0]"] end - subgraph path52 [Path] - 52["Path
[1278, 1356, 0]"] - 53["Segment
[1278, 1356, 0]"] - 54[Solid2d] + subgraph path13 [Path] + 13["Path
[748, 783, 0]"] + 34["Segment
[791, 817, 0]"] + 37["Segment
[825, 886, 0]"] + 40["Segment
[894, 953, 0]"] + 46["Segment
[961, 1021, 0]"] + 50["Segment
[1029, 1088, 0]"] end - subgraph path62 [Path] - 62["Path
[748, 783, 0]"] - 63["Segment
[791, 817, 0]"] - 64["Segment
[825, 886, 0]"] - 65["Segment
[894, 953, 0]"] - 66["Segment
[961, 1021, 0]"] - 67["Segment
[1029, 1088, 0]"] + subgraph path14 [Path] + 14["Path
[1190, 1252, 0]"] + 53["Segment
[1190, 1252, 0]"] + 85[Solid2d] end - subgraph path69 [Path] - 69["Path
[1190, 1252, 0]"] - 70["Segment
[1190, 1252, 0]"] - 71[Solid2d] + subgraph path15 [Path] + 15["Path
[1190, 1252, 0]"] + 52["Segment
[1190, 1252, 0]"] + 89[Solid2d] end - subgraph path72 [Path] - 72["Path
[1278, 1356, 0]"] - 73["Segment
[1278, 1356, 0]"] - 74[Solid2d] + subgraph path16 [Path] + 16["Path
[1190, 1252, 0]"] + 54["Segment
[1190, 1252, 0]"] + 95[Solid2d] end - subgraph path82 [Path] - 82["Path
[1680, 1715, 0]"] - 83["Segment
[1721, 1755, 0]"] - 84["Segment
[1761, 1800, 0]"] - 85["Segment
[1806, 1844, 0]"] - 86["Segment
[1850, 1889, 0]"] - 87["Segment
[1895, 1929, 0]"] - 88["Segment
[1935, 1978, 0]"] - 89["Segment
[1984, 2017, 0]"] - 90["Segment
[2023, 2062, 0]"] - 91["Segment
[2068, 2107, 0]"] - 92["Segment
[2113, 2152, 0]"] - 93["Segment
[2158, 2201, 0]"] - 94["Segment
[2207, 2258, 0]"] - 95["Segment
[2264, 2308, 0]"] - 96["Segment
[2314, 2353, 0]"] - 97["Segment
[2359, 2397, 0]"] - 98["Segment
[2403, 2468, 0]"] - 99["Segment
[2474, 2481, 0]"] + subgraph path17 [Path] + 17["Path
[1190, 1252, 0]"] + 51["Segment
[1190, 1252, 0]"] + 98[Solid2d] + end + subgraph path18 [Path] + 18["Path
[1278, 1356, 0]"] + 58["Segment
[1278, 1356, 0]"] + 87[Solid2d] + end + subgraph path19 [Path] + 19["Path
[1278, 1356, 0]"] + 56["Segment
[1278, 1356, 0]"] + 88[Solid2d] + end + subgraph path20 [Path] + 20["Path
[1278, 1356, 0]"] + 57["Segment
[1278, 1356, 0]"] + 92[Solid2d] + end + subgraph path21 [Path] + 21["Path
[1278, 1356, 0]"] + 55["Segment
[1278, 1356, 0]"] + 96[Solid2d] + end + subgraph path22 [Path] + 22["Path
[1680, 1715, 0]"] + 59["Segment
[1721, 1755, 0]"] + 60["Segment
[1761, 1800, 0]"] + 61["Segment
[1806, 1844, 0]"] + 62["Segment
[1850, 1889, 0]"] + 63["Segment
[1895, 1929, 0]"] + 64["Segment
[1935, 1978, 0]"] + 65["Segment
[1984, 2017, 0]"] + 66["Segment
[2023, 2062, 0]"] + 67["Segment
[2068, 2107, 0]"] + 68["Segment
[2113, 2152, 0]"] + 69["Segment
[2158, 2201, 0]"] + 70["Segment
[2207, 2258, 0]"] + 71["Segment
[2264, 2308, 0]"] + 72["Segment
[2314, 2353, 0]"] + 73["Segment
[2359, 2397, 0]"] + 74["Segment
[2403, 2468, 0]"] + 75["Segment
[2474, 2481, 0]"] + 84[Solid2d] + end + subgraph path23 [Path] + 23["Path
[2566, 2639, 0]"] + 76["Segment
[2566, 2639, 0]"] + 91[Solid2d] + end + subgraph path24 [Path] + 24["Path
[2664, 2737, 0]"] + 77["Segment
[2664, 2737, 0]"] + 86[Solid2d] + end + subgraph path25 [Path] + 25["Path
[2762, 2835, 0]"] + 78["Segment
[2762, 2835, 0]"] + 94[Solid2d] + end + subgraph path26 [Path] + 26["Path
[2860, 2933, 0]"] + 79["Segment
[2860, 2933, 0]"] + 99[Solid2d] + end + subgraph path27 [Path] + 27["Path
[2997, 3136, 0]"] + 80["Segment
[2997, 3136, 0]"] 100[Solid2d] end - subgraph path101 [Path] - 101["Path
[2566, 2639, 0]"] - 102["Segment
[2566, 2639, 0]"] - 103[Solid2d] + subgraph path28 [Path] + 28["Path
[3161, 3298, 0]"] + 81["Segment
[3161, 3298, 0]"] + 97[Solid2d] end - subgraph path104 [Path] - 104["Path
[2664, 2737, 0]"] - 105["Segment
[2664, 2737, 0]"] - 106[Solid2d] + subgraph path29 [Path] + 29["Path
[3323, 3470, 0]"] + 82["Segment
[3323, 3470, 0]"] + 93[Solid2d] end - subgraph path107 [Path] - 107["Path
[2762, 2835, 0]"] - 108["Segment
[2762, 2835, 0]"] - 109[Solid2d] - end - subgraph path110 [Path] - 110["Path
[2860, 2933, 0]"] - 111["Segment
[2860, 2933, 0]"] - 112[Solid2d] - end - subgraph path113 [Path] - 113["Path
[2997, 3136, 0]"] - 114["Segment
[2997, 3136, 0]"] - 115[Solid2d] - end - subgraph path116 [Path] - 116["Path
[3161, 3298, 0]"] - 117["Segment
[3161, 3298, 0]"] - 118[Solid2d] - end - subgraph path119 [Path] - 119["Path
[3323, 3470, 0]"] - 120["Segment
[3323, 3470, 0]"] - 121[Solid2d] - end - subgraph path122 [Path] - 122["Path
[3495, 3641, 0]"] - 123["Segment
[3495, 3641, 0]"] - 124[Solid2d] + subgraph path30 [Path] + 30["Path
[3495, 3641, 0]"] + 83["Segment
[3495, 3641, 0]"] + 90[Solid2d] end 1["Plane
[715, 740, 0]"] + 2["Plane
[715, 740, 0]"] + 3["Plane
[715, 740, 0]"] + 4["Plane
[715, 740, 0]"] + 5["Plane
[1165, 1182, 0]"] + 6["Plane
[1165, 1182, 0]"] + 7["Plane
[1165, 1182, 0]"] 8["Plane
[1165, 1182, 0]"] - 15["Sweep Sweep
[1365, 1388, 0]"] - 16[Wall] - 17["Cap Start"] - 18["Cap End"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["Plane
[715, 740, 0]"] - 28["Plane
[1165, 1182, 0]"] - 35["Sweep Sweep
[1365, 1388, 0]"] - 36[Wall] - 37["Cap Start"] - 38["Cap End"] - 39["SweepEdge Opposite"] - 40["SweepEdge Adjacent"] - 41["Plane
[715, 740, 0]"] - 48["Plane
[1165, 1182, 0]"] - 55["Sweep Sweep
[1365, 1388, 0]"] - 56[Wall] - 57["Cap Start"] - 58["Cap End"] - 59["SweepEdge Opposite"] - 60["SweepEdge Adjacent"] - 61["Plane
[715, 740, 0]"] - 68["Plane
[1165, 1182, 0]"] - 75["Sweep Sweep
[1365, 1388, 0]"] - 76[Wall] - 77["Cap Start"] - 78["Cap End"] - 79["SweepEdge Opposite"] - 80["SweepEdge Adjacent"] - 81["Plane
[1657, 1674, 0]"] - 125["Sweep Extrusion
[3694, 3723, 0]"] - 126[Wall] - 127[Wall] - 128[Wall] - 129[Wall] - 130[Wall] - 131[Wall] - 132[Wall] - 133[Wall] - 134[Wall] - 135[Wall] - 136[Wall] - 137[Wall] - 138[Wall] - 139[Wall] - 140[Wall] - 141[Wall] - 142["Cap Start"] - 143["Cap End"] + 9["Plane
[1657, 1674, 0]"] + 101["Sweep Sweep
[1365, 1388, 0]"] + 102["Sweep Sweep
[1365, 1388, 0]"] + 103["Sweep Sweep
[1365, 1388, 0]"] + 104["Sweep Sweep
[1365, 1388, 0]"] + 105["Sweep Extrusion
[3694, 3723, 0]"] + 106[Wall] + 107[Wall] + 108[Wall] + 109[Wall] + 110[Wall] + 111[Wall] + 112[Wall] + 113[Wall] + 114[Wall] + 115[Wall] + 116[Wall] + 117[Wall] + 118[Wall] + 119[Wall] + 120[Wall] + 121[Wall] + 122[Wall] + 123[Wall] + 124[Wall] + 125[Wall] + 126["Cap Start"] + 127["Cap Start"] + 128["Cap Start"] + 129["Cap Start"] + 130["Cap Start"] + 131["Cap End"] + 132["Cap End"] + 133["Cap End"] + 134["Cap End"] + 135["Cap End"] + 136["SweepEdge Opposite"] + 137["SweepEdge Opposite"] + 138["SweepEdge Opposite"] + 139["SweepEdge Opposite"] + 140["SweepEdge Opposite"] + 141["SweepEdge Opposite"] + 142["SweepEdge Opposite"] + 143["SweepEdge Opposite"] 144["SweepEdge Opposite"] - 145["SweepEdge Adjacent"] + 145["SweepEdge Opposite"] 146["SweepEdge Opposite"] - 147["SweepEdge Adjacent"] + 147["SweepEdge Opposite"] 148["SweepEdge Opposite"] - 149["SweepEdge Adjacent"] + 149["SweepEdge Opposite"] 150["SweepEdge Opposite"] - 151["SweepEdge Adjacent"] + 151["SweepEdge Opposite"] 152["SweepEdge Opposite"] - 153["SweepEdge Adjacent"] + 153["SweepEdge Opposite"] 154["SweepEdge Opposite"] - 155["SweepEdge Adjacent"] - 156["SweepEdge Opposite"] + 155["SweepEdge Opposite"] + 156["SweepEdge Adjacent"] 157["SweepEdge Adjacent"] - 158["SweepEdge Opposite"] + 158["SweepEdge Adjacent"] 159["SweepEdge Adjacent"] - 160["SweepEdge Opposite"] + 160["SweepEdge Adjacent"] 161["SweepEdge Adjacent"] - 162["SweepEdge Opposite"] + 162["SweepEdge Adjacent"] 163["SweepEdge Adjacent"] - 164["SweepEdge Opposite"] + 164["SweepEdge Adjacent"] 165["SweepEdge Adjacent"] - 166["SweepEdge Opposite"] + 166["SweepEdge Adjacent"] 167["SweepEdge Adjacent"] - 168["SweepEdge Opposite"] + 168["SweepEdge Adjacent"] 169["SweepEdge Adjacent"] - 170["SweepEdge Opposite"] + 170["SweepEdge Adjacent"] 171["SweepEdge Adjacent"] - 172["SweepEdge Opposite"] + 172["SweepEdge Adjacent"] 173["SweepEdge Adjacent"] - 174["SweepEdge Opposite"] + 174["SweepEdge Adjacent"] 175["SweepEdge Adjacent"] 176["EdgeCut Fillet
[3729, 3863, 0]"] 177["EdgeCut Fillet
[3729, 3863, 0]"] 178["EdgeCut Fillet
[3869, 4003, 0]"] 179["EdgeCut Fillet
[3869, 4003, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 8 --- 9 - 8 --- 12 - 9 --- 10 - 9 ---- 15 - 9 --- 11 - 10 --- 16 - 10 --- 19 - 10 --- 20 - 10 x--> 17 - 12 --- 13 - 12 --- 14 - 15 --- 16 - 15 --- 17 - 15 --- 18 - 15 --- 19 - 15 --- 20 - 19 <--x 16 - 19 <--x 18 - 20 <--x 16 - 21 --- 22 - 22 --- 23 - 22 --- 24 - 22 --- 25 - 22 --- 26 - 22 --- 27 - 28 --- 29 - 28 --- 32 - 29 --- 30 - 29 ---- 35 - 29 --- 31 - 30 --- 36 - 30 --- 39 - 30 --- 40 - 30 x--> 37 - 32 --- 33 - 32 --- 34 - 35 --- 36 - 35 --- 37 - 35 --- 38 - 35 --- 39 - 35 --- 40 - 39 <--x 36 - 39 <--x 38 - 40 <--x 36 - 41 --- 42 - 42 --- 43 - 42 --- 44 - 42 --- 45 - 42 --- 46 - 42 --- 47 - 48 --- 49 - 48 --- 52 - 49 --- 50 - 49 ---- 55 - 49 --- 51 - 50 --- 56 - 50 --- 59 - 50 --- 60 - 50 x--> 57 - 52 --- 53 - 52 --- 54 - 55 --- 56 - 55 --- 57 - 55 --- 58 - 55 --- 59 - 55 --- 60 - 59 <--x 56 - 59 <--x 58 - 60 <--x 56 - 61 --- 62 - 62 --- 63 - 62 --- 64 - 62 --- 65 - 62 --- 66 - 62 --- 67 - 68 --- 69 - 68 --- 72 - 69 --- 70 - 69 ---- 75 - 69 --- 71 - 70 --- 76 - 70 --- 79 - 70 --- 80 - 70 x--> 77 - 72 --- 73 - 72 --- 74 - 75 --- 76 - 75 --- 77 - 75 --- 78 - 75 --- 79 - 75 --- 80 - 79 <--x 76 - 79 <--x 78 - 80 <--x 76 - 81 --- 82 - 81 --- 101 - 81 --- 104 - 81 --- 107 - 81 --- 110 - 81 --- 113 - 81 --- 116 - 81 --- 119 - 81 --- 122 - 82 --- 83 - 82 --- 84 - 82 --- 85 - 82 --- 86 - 82 --- 87 - 82 --- 88 - 82 --- 89 - 82 --- 90 - 82 --- 91 - 82 --- 92 - 82 --- 93 - 82 --- 94 - 82 --- 95 - 82 --- 96 - 82 --- 97 - 82 --- 98 - 82 --- 99 - 82 ---- 125 - 82 --- 100 - 83 --- 141 - 83 --- 174 - 83 --- 175 - 83 x--> 142 - 84 --- 140 - 84 --- 172 - 84 --- 173 - 84 x--> 142 - 85 --- 139 - 85 --- 170 - 85 --- 171 - 85 x--> 142 - 86 --- 138 - 86 --- 168 - 86 --- 169 - 86 x--> 142 - 87 --- 137 - 87 --- 166 - 87 --- 167 - 87 x--> 142 - 88 --- 136 - 88 --- 164 - 88 --- 165 - 88 x--> 142 - 89 --- 135 - 89 --- 162 - 89 --- 163 - 89 x--> 142 - 90 --- 134 - 90 --- 160 - 90 --- 161 - 90 x--> 142 - 91 --- 133 - 91 --- 158 - 91 --- 159 - 91 x--> 142 - 92 --- 132 - 92 --- 156 - 92 --- 157 - 92 x--> 142 - 93 --- 131 - 93 --- 154 - 93 --- 155 - 93 x--> 142 - 94 --- 130 - 94 --- 152 - 94 --- 153 - 94 x--> 142 - 95 --- 129 - 95 --- 150 - 95 --- 151 - 95 x--> 142 - 96 --- 128 - 96 --- 148 - 96 --- 149 - 96 x--> 142 - 97 --- 127 - 97 --- 146 - 97 --- 147 - 97 x--> 142 - 98 --- 126 - 98 --- 144 - 98 --- 145 - 98 x--> 142 - 101 --- 102 - 101 --- 103 - 104 --- 105 - 104 --- 106 - 107 --- 108 - 107 --- 109 - 110 --- 111 - 110 --- 112 - 113 --- 114 - 113 --- 115 - 116 --- 117 - 116 --- 118 - 119 --- 120 - 119 --- 121 - 122 --- 123 - 122 --- 124 - 125 --- 126 - 125 --- 127 - 125 --- 128 - 125 --- 129 - 125 --- 130 - 125 --- 131 - 125 --- 132 - 125 --- 133 - 125 --- 134 - 125 --- 135 - 125 --- 136 - 125 --- 137 - 125 --- 138 - 125 --- 139 - 125 --- 140 - 125 --- 141 - 125 --- 142 - 125 --- 143 - 125 --- 144 - 125 --- 145 - 125 --- 146 - 125 --- 147 - 125 --- 148 - 125 --- 149 - 125 --- 150 - 125 --- 151 - 125 --- 152 - 125 --- 153 - 125 --- 154 - 125 --- 155 - 125 --- 156 - 125 --- 157 - 125 --- 158 - 125 --- 159 - 125 --- 160 - 125 --- 161 - 125 --- 162 - 125 --- 163 - 125 --- 164 - 125 --- 165 - 125 --- 166 - 125 --- 167 - 125 --- 168 - 125 --- 169 - 125 --- 170 - 125 --- 171 - 125 --- 172 - 125 --- 173 - 125 --- 174 - 125 --- 175 - 144 <--x 126 - 144 <--x 143 - 145 <--x 126 - 145 <--x 141 - 146 <--x 127 - 146 <--x 143 - 147 <--x 126 - 147 <--x 127 - 148 <--x 128 - 148 <--x 143 - 149 <--x 127 - 149 <--x 128 - 150 <--x 129 - 150 <--x 143 - 151 <--x 128 - 151 <--x 129 - 152 <--x 130 - 152 <--x 143 - 154 <--x 131 - 154 <--x 143 - 156 <--x 132 - 156 <--x 143 - 157 <--x 131 - 157 <--x 132 - 158 <--x 133 - 158 <--x 143 - 159 <--x 132 - 159 <--x 133 - 160 <--x 134 - 160 <--x 143 - 161 <--x 133 - 161 <--x 134 - 162 <--x 135 - 162 <--x 143 - 163 <--x 134 - 163 <--x 135 - 164 <--x 136 - 164 <--x 143 - 166 <--x 137 - 166 <--x 143 - 168 <--x 138 - 168 <--x 143 - 169 <--x 137 - 169 <--x 138 - 170 <--x 139 - 170 <--x 143 - 171 <--x 138 - 171 <--x 139 - 172 <--x 140 - 172 <--x 143 - 173 <--x 139 - 173 <--x 140 - 174 <--x 141 - 174 <--x 143 - 175 <--x 140 - 175 <--x 141 - 165 <--x 176 - 155 <--x 177 - 167 <--x 178 - 153 <--x 179 + 1 --- 11 + 2 --- 10 + 3 --- 13 + 4 --- 12 + 5 --- 14 + 5 --- 20 + 6 --- 17 + 6 --- 18 + 7 --- 16 + 7 --- 19 + 8 --- 15 + 8 --- 21 + 9 --- 22 + 9 --- 23 + 9 --- 24 + 9 --- 25 + 9 --- 26 + 9 --- 27 + 9 --- 28 + 9 --- 29 + 9 --- 30 + 10 --- 33 + 10 --- 36 + 10 --- 41 + 10 --- 45 + 10 --- 48 + 11 --- 31 + 11 --- 35 + 11 --- 39 + 11 --- 44 + 11 --- 47 + 12 --- 32 + 12 --- 38 + 12 --- 42 + 12 --- 43 + 12 --- 49 + 13 --- 34 + 13 --- 37 + 13 --- 40 + 13 --- 46 + 13 --- 50 + 14 --- 53 + 14 --- 85 + 14 ---- 101 + 15 --- 52 + 15 --- 89 + 15 ---- 104 + 16 --- 54 + 16 --- 95 + 16 ---- 103 + 17 --- 51 + 17 --- 98 + 17 ---- 102 + 18 --- 58 + 18 --- 87 + 19 --- 56 + 19 --- 88 + 20 --- 57 + 20 --- 92 + 21 --- 55 + 21 --- 96 + 22 --- 59 + 22 --- 60 + 22 --- 61 + 22 --- 62 + 22 --- 63 + 22 --- 64 + 22 --- 65 + 22 --- 66 + 22 --- 67 + 22 --- 68 + 22 --- 69 + 22 --- 70 + 22 --- 71 + 22 --- 72 + 22 --- 73 + 22 --- 74 + 22 --- 75 + 22 --- 84 + 22 ---- 105 + 23 --- 76 + 23 --- 91 + 24 --- 77 + 24 --- 86 + 25 --- 78 + 25 --- 94 + 26 --- 79 + 26 --- 99 + 27 --- 80 + 27 --- 100 + 28 --- 81 + 28 --- 97 + 29 --- 82 + 29 --- 93 + 30 --- 83 + 30 --- 90 + 51 --- 107 + 51 x--> 127 + 51 --- 137 + 51 --- 157 + 52 --- 109 + 52 x--> 129 + 52 --- 139 + 52 --- 159 + 53 --- 106 + 53 x--> 126 + 53 --- 136 + 53 --- 156 + 54 --- 108 + 54 x--> 128 + 54 --- 138 + 54 --- 158 + 59 --- 119 + 59 x--> 130 + 59 --- 147 + 59 --- 172 + 60 --- 114 + 60 x--> 130 + 60 --- 152 + 60 --- 163 + 61 --- 121 + 61 x--> 130 + 61 --- 151 + 61 --- 161 + 62 --- 117 + 62 x--> 130 + 62 --- 145 + 62 --- 167 + 63 --- 111 + 63 x--> 130 + 63 --- 144 + 63 --- 173 + 64 --- 116 + 64 x--> 130 + 64 --- 142 + 64 --- 166 + 65 --- 113 + 65 x--> 130 + 65 --- 155 + 65 --- 168 + 66 --- 112 + 66 x--> 130 + 66 --- 143 + 66 --- 175 + 67 --- 124 + 67 x--> 130 + 67 --- 146 + 67 --- 170 + 68 --- 125 + 68 x--> 130 + 68 --- 153 + 68 --- 165 + 69 --- 122 + 69 x--> 130 + 69 --- 141 + 69 --- 164 + 70 --- 115 + 70 x--> 130 + 70 --- 150 + 70 --- 171 + 71 --- 120 + 71 x--> 130 + 71 --- 140 + 71 --- 162 + 72 --- 123 + 72 x--> 130 + 72 --- 154 + 72 --- 169 + 73 --- 110 + 73 x--> 130 + 73 --- 149 + 73 --- 174 + 74 --- 118 + 74 x--> 130 + 74 --- 148 + 74 --- 160 + 101 --- 106 + 101 --- 126 + 101 --- 131 + 101 --- 136 + 101 --- 156 + 102 --- 107 + 102 --- 127 + 102 --- 132 + 102 --- 137 + 102 --- 157 + 103 --- 108 + 103 --- 128 + 103 --- 133 + 103 --- 138 + 103 --- 158 + 104 --- 109 + 104 --- 129 + 104 --- 134 + 104 --- 139 + 104 --- 159 + 105 --- 110 + 105 --- 111 + 105 --- 112 + 105 --- 113 + 105 --- 114 + 105 --- 115 + 105 --- 116 + 105 --- 117 + 105 --- 118 + 105 --- 119 + 105 --- 120 + 105 --- 121 + 105 --- 122 + 105 --- 123 + 105 --- 124 + 105 --- 125 + 105 --- 130 + 105 --- 135 + 105 --- 140 + 105 --- 141 + 105 --- 142 + 105 --- 143 + 105 --- 144 + 105 --- 145 + 105 --- 146 + 105 --- 147 + 105 --- 148 + 105 --- 149 + 105 --- 150 + 105 --- 151 + 105 --- 152 + 105 --- 153 + 105 --- 154 + 105 --- 155 + 105 --- 160 + 105 --- 161 + 105 --- 162 + 105 --- 163 + 105 --- 164 + 105 --- 165 + 105 --- 166 + 105 --- 167 + 105 --- 168 + 105 --- 169 + 105 --- 170 + 105 --- 171 + 105 --- 172 + 105 --- 173 + 105 --- 174 + 105 --- 175 + 136 <--x 106 + 156 <--x 106 + 137 <--x 107 + 157 <--x 107 + 138 <--x 108 + 158 <--x 108 + 139 <--x 109 + 159 <--x 109 + 149 <--x 110 + 169 <--x 110 + 174 <--x 110 + 144 <--x 111 + 167 <--x 111 + 143 <--x 112 + 168 <--x 112 + 175 <--x 112 + 155 <--x 113 + 168 <--x 113 + 152 <--x 114 + 163 <--x 114 + 172 <--x 114 + 150 <--x 115 + 142 <--x 116 + 145 <--x 117 + 161 <--x 117 + 167 <--x 117 + 148 <--x 118 + 160 <--x 118 + 174 <--x 118 + 147 <--x 119 + 160 <--x 119 + 172 <--x 119 + 140 <--x 120 + 162 <--x 120 + 151 <--x 121 + 161 <--x 121 + 163 <--x 121 + 141 <--x 122 + 165 <--x 122 + 154 <--x 123 + 162 <--x 123 + 169 <--x 123 + 146 <--x 124 + 170 <--x 124 + 175 <--x 124 + 153 <--x 125 + 165 <--x 125 + 170 <--x 125 + 136 <--x 131 + 137 <--x 132 + 138 <--x 133 + 139 <--x 134 + 140 <--x 135 + 141 <--x 135 + 142 <--x 135 + 143 <--x 135 + 144 <--x 135 + 145 <--x 135 + 146 <--x 135 + 147 <--x 135 + 148 <--x 135 + 149 <--x 135 + 150 <--x 135 + 151 <--x 135 + 152 <--x 135 + 153 <--x 135 + 154 <--x 135 + 155 <--x 135 + 164 <--x 177 + 166 <--x 176 + 171 <--x 179 + 173 <--x 178 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/ops.snap b/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/ops.snap index e89e26b92..9614ba813 100644 --- a/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/ops.snap @@ -7,7 +7,7 @@ description: Operations executed exhaust-manifold.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "primaryTube", + "name": "sin", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} @@ -26,7 +26,26 @@ description: Operations executed exhaust-manifold.kcl "sourceRange": [] }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "type": "GroupBegin", @@ -40,7 +59,37 @@ description: Operations executed exhaust-manifold.kcl "sourceRange": [] }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -224,113 +273,6 @@ description: Operations executed exhaust-manifold.kcl "type": "StdLibCall", "unlabeledArg": null }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "path": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "sweep", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "primaryTube", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "planeOrSolid": { @@ -513,113 +455,6 @@ description: Operations executed exhaust-manifold.kcl "type": "StdLibCall", "unlabeledArg": null }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "path": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "sweep", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "primaryTube", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "planeOrSolid": { @@ -802,113 +637,6 @@ description: Operations executed exhaust-manifold.kcl "type": "StdLibCall", "unlabeledArg": null }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "path": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "sweep", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "primaryTube", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "planeOrSolid": { @@ -1106,6 +834,126 @@ description: Operations executed exhaust-manifold.kcl "type": "StdLibCall", "unlabeledArg": null }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, { "labeledArgs": { "tool": { @@ -1157,7 +1005,123 @@ description: Operations executed exhaust-manifold.kcl } }, { - "type": "GroupEnd" + "labeledArgs": { + "path": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "sweep", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "path": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "sweep", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "path": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "sweep", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "primaryTube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "primaryTube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "primaryTube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "primaryTube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -1501,5 +1465,41 @@ description: Operations executed exhaust-manifold.kcl } }, "sourceRange": [] + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/kcl_samples/flange/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/flange/artifact_commands.snap index c521ae3a9..271d5062f 100644 --- a/rust/kcl-lib/tests/kcl_samples/flange/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/flange/artifact_commands.snap @@ -54,6 +54,14 @@ description: Artifact commands flange.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -70,33 +78,6 @@ description: Artifact commands flange.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 52.387499999999996, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -126,8 +107,27 @@ description: Artifact commands flange.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 52.387499999999996, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -176,6 +176,14 @@ description: Artifact commands flange.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -192,33 +200,6 @@ description: Artifact commands flange.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 58.7375, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -248,17 +229,54 @@ description: Artifact commands flange.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 58.7375, + "y": 0.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -283,9 +301,9 @@ description: Artifact commands flange.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -297,15 +315,6 @@ description: Artifact commands flange.kcl "hole_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -315,15 +324,6 @@ description: Artifact commands flange.kcl "hole_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -351,6 +351,14 @@ description: Artifact commands flange.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -362,8 +370,135 @@ description: Artifact commands flange.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -379,30 +514,12 @@ description: Artifact commands flange.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -417,39 +534,12 @@ description: Artifact commands flange.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -464,18 +554,10 @@ description: Artifact commands flange.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -492,39 +574,12 @@ description: Artifact commands flange.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -539,39 +594,12 @@ description: Artifact commands flange.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -586,28 +614,8 @@ description: Artifact commands flange.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -622,33 +630,6 @@ description: Artifact commands flange.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 29.3751, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -678,8 +659,27 @@ description: Artifact commands flange.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 29.3751, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -705,13 +705,6 @@ description: Artifact commands flange.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -720,6 +713,40 @@ description: Artifact commands flange.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -729,34 +756,6 @@ description: Artifact commands flange.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -771,9 +770,18 @@ description: Artifact commands flange.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -788,33 +796,6 @@ description: Artifact commands flange.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 31.75, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -844,8 +825,27 @@ description: Artifact commands flange.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 31.75, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -871,13 +871,6 @@ description: Artifact commands flange.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -886,6 +879,40 @@ description: Artifact commands flange.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -895,34 +922,6 @@ description: Artifact commands flange.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -937,9 +936,18 @@ description: Artifact commands flange.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -954,33 +962,6 @@ description: Artifact commands flange.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 15.875, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1010,8 +991,27 @@ description: Artifact commands flange.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 15.875, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -1037,13 +1037,6 @@ description: Artifact commands flange.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1052,6 +1045,40 @@ description: Artifact commands flange.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1061,34 +1088,6 @@ description: Artifact commands flange.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1103,9 +1102,10 @@ description: Artifact commands flange.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/flange/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/flange/artifact_graph_flowchart.snap.md index fe30d8f36..10c776f1e 100644 --- a/rust/kcl-lib/tests/kcl_samples/flange/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/flange/artifact_graph_flowchart.snap.md @@ -1,119 +1,119 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[863, 948, 0]"] - 3["Segment
[863, 948, 0]"] - 4[Solid2d] - end subgraph path6 [Path] - 6["Path
[1185, 1230, 0]"] - 7["Segment
[1185, 1230, 0]"] - 8[Solid2d] + 6["Path
[863, 948, 0]"] + 11["Segment
[863, 948, 0]"] + 20[Solid2d] end - subgraph path15 [Path] - 15["Path
[1413, 1467, 0]"] - 16["Segment
[1413, 1467, 0]"] + subgraph path7 [Path] + 7["Path
[1185, 1230, 0]"] + 12["Segment
[1185, 1230, 0]"] + 18[Solid2d] + end + subgraph path8 [Path] + 8["Path
[1413, 1467, 0]"] + 13["Segment
[1413, 1467, 0]"] + 19[Solid2d] + end + subgraph path9 [Path] + 9["Path
[1630, 1687, 0]"] + 14["Segment
[1630, 1687, 0]"] 17[Solid2d] end - subgraph path23 [Path] - 23["Path
[1630, 1687, 0]"] - 24["Segment
[1630, 1687, 0]"] - 25[Solid2d] - end - subgraph path31 [Path] - 31["Path
[1822, 1867, 0]"] - 32["Segment
[1822, 1867, 0]"] - 33[Solid2d] + subgraph path10 [Path] + 10["Path
[1822, 1867, 0]"] + 15["Segment
[1822, 1867, 0]"] + 16[Solid2d] end 1["Plane
[840, 857, 0]"] - 5["Plane
[1162, 1179, 0]"] - 9["Sweep Extrusion
[1268, 1299, 0]"] - 10[Wall] - 11["Cap Start"] - 12["Cap End"] - 13["SweepEdge Opposite"] - 14["SweepEdge Adjacent"] - 18["Sweep Extrusion
[1473, 1508, 0]"] - 19[Wall] - 20["Cap End"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 26["Sweep Extrusion
[1693, 1726, 0]"] + 2["Plane
[1162, 1179, 0]"] + 3["StartSketchOnFace
[1777, 1816, 0]"] + 4["StartSketchOnFace
[1370, 1407, 0]"] + 5["StartSketchOnFace
[1585, 1624, 0]"] + 21["Sweep Extrusion
[1268, 1299, 0]"] + 22["Sweep Extrusion
[1473, 1508, 0]"] + 23["Sweep Extrusion
[1693, 1726, 0]"] + 24["Sweep Extrusion
[1873, 1948, 0]"] + 25[Wall] + 26[Wall] 27[Wall] - 28["Cap End"] - 29["SweepEdge Opposite"] - 30["SweepEdge Adjacent"] - 34["Sweep Extrusion
[1873, 1948, 0]"] - 35[Wall] + 28[Wall] + 29["Cap Start"] + 30["Cap End"] + 31["Cap End"] + 32["Cap End"] + 33["SweepEdge Opposite"] + 34["SweepEdge Opposite"] + 35["SweepEdge Opposite"] 36["SweepEdge Opposite"] 37["SweepEdge Adjacent"] - 38["StartSketchOnFace
[1370, 1407, 0]"] - 39["StartSketchOnFace
[1585, 1624, 0]"] - 40["StartSketchOnFace
[1777, 1816, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 5 --- 6 - 6 --- 7 - 6 ---- 9 - 6 --- 8 - 7 --- 10 - 7 --- 13 - 7 --- 14 - 7 x--> 11 - 9 --- 10 - 9 --- 11 - 9 --- 12 - 9 --- 13 + 38["SweepEdge Adjacent"] + 39["SweepEdge Adjacent"] + 40["SweepEdge Adjacent"] + 1 --- 6 + 2 --- 7 + 32 x--> 3 + 30 x--> 4 + 29 x--> 5 + 6 --- 11 + 6 --- 20 + 7 --- 12 + 7 --- 18 + 7 ---- 21 + 8 --- 13 + 8 --- 19 + 8 ---- 22 + 30 --- 8 9 --- 14 - 11 --- 23 - 12 --- 15 - 13 <--x 10 - 13 <--x 12 - 14 <--x 10 - 15 --- 16 - 15 ---- 18 - 15 --- 17 - 16 --- 19 - 16 --- 21 - 16 --- 22 - 16 <--x 12 - 18 --- 19 - 18 --- 20 - 18 --- 21 - 18 --- 22 - 20 --- 31 - 21 <--x 19 - 21 <--x 20 - 22 <--x 19 - 23 --- 24 - 23 ---- 26 - 23 --- 25 - 24 --- 27 - 24 --- 29 - 24 --- 30 - 24 <--x 11 - 26 --- 27 - 26 --- 28 - 26 --- 29 - 26 --- 30 - 29 <--x 27 - 29 <--x 28 - 30 <--x 27 - 31 --- 32 - 31 ---- 34 - 31 --- 33 - 32 --- 35 - 32 --- 36 - 32 --- 37 - 32 <--x 20 - 34 --- 35 - 34 --- 36 - 34 --- 37 - 36 <--x 35 + 9 --- 17 + 9 ---- 23 + 29 --- 9 + 10 --- 15 + 10 --- 16 + 10 ---- 24 + 32 --- 10 + 12 --- 26 + 12 x--> 29 + 12 --- 34 + 12 --- 38 + 13 --- 28 + 13 x--> 30 + 13 --- 36 + 13 --- 40 + 14 --- 27 + 14 x--> 29 + 14 --- 35 + 14 --- 39 + 15 --- 25 + 15 x--> 32 + 15 --- 33 + 15 --- 37 + 21 --- 26 + 21 --- 29 + 21 --- 30 + 21 --- 34 + 21 --- 38 + 22 --- 28 + 22 --- 32 + 22 --- 36 + 22 --- 40 + 23 --- 27 + 23 --- 31 + 23 --- 35 + 23 --- 39 + 24 --- 25 + 24 --- 33 + 24 --- 37 + 33 <--x 25 + 37 <--x 25 + 34 <--x 26 + 38 <--x 26 + 35 <--x 27 + 39 <--x 27 36 <--x 28 - 37 <--x 35 - 12 <--x 38 - 11 <--x 39 - 20 <--x 40 + 40 <--x 28 + 34 <--x 30 + 33 <--x 31 + 35 <--x 31 + 36 <--x 32 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/artifact_commands.snap index 560493357..538108b56 100644 --- a/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -90,6 +83,15 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +99,13 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -251,6 +260,14 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -262,8 +279,216 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -279,30 +504,12 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -317,39 +524,12 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -364,39 +544,12 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -411,39 +564,12 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -458,18 +584,10 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -486,39 +604,12 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -533,39 +624,12 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -580,39 +644,12 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -627,28 +664,48 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", "edge_id": "[uuid]", - "face_id": "[uuid]" + "radius": 6.0, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "radius": 6.0, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 6.0, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 6.0, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { @@ -732,13 +789,6 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -752,6 +802,15 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -759,6 +818,13 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -818,6 +884,32 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -834,33 +926,6 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 84.5, - "y": 27.333333333333332, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -890,17 +955,13 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 84.5, + "y": 27.333333333333332, + "z": 0.0 + } } }, { @@ -912,6 +973,20 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -939,6 +1014,14 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -950,8 +1033,135 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -967,9 +1177,50 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -986,39 +1237,12 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1029,43 +1253,6 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1076,43 +1263,6 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1123,101 +1273,6 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1242,6 +1297,26 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1323,13 +1398,6 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1343,6 +1411,15 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -1350,6 +1427,13 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1409,6 +1493,32 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1425,33 +1535,6 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -79.5, - "y": 27.333333333333332, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1481,17 +1564,13 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -79.5, + "y": 27.333333333333332, + "z": 0.0 + } } }, { @@ -1503,6 +1582,20 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1530,6 +1623,14 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1541,8 +1642,135 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1558,9 +1786,50 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1577,39 +1846,12 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1620,43 +1862,6 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1667,43 +1872,6 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1714,101 +1882,6 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1833,6 +1906,26 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1914,13 +2007,6 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1934,6 +2020,15 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -1941,6 +2036,13 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2010,6 +2112,14 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2021,8 +2131,81 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -2038,30 +2221,12 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2076,18 +2241,10 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2100,43 +2257,6 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2151,30 +2271,12 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2216,13 +2318,6 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2236,6 +2331,15 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -2243,6 +2347,13 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2329,6 +2440,14 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2340,8 +2459,108 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -2357,30 +2576,12 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2395,39 +2596,12 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2442,18 +2616,10 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2466,43 +2632,6 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2517,139 +2646,10 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 6.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 6.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 6.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 6.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/artifact_graph_flowchart.snap.md index 3fa330dab..4f47d27d5 100644 --- a/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/artifact_graph_flowchart.snap.md @@ -1,460 +1,460 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[1234, 1272, 0]"] - 3["Segment
[1280, 1330, 0]"] - 4["Segment
[1338, 1387, 0]"] - 5["Segment
[1395, 1447, 0]"] - 6["Segment
[1455, 1503, 0]"] - 7["Segment
[1511, 1555, 0]"] - 8["Segment
[1563, 1608, 0]"] - 9["Segment
[1616, 1665, 0]"] - 10["Segment
[1673, 1692, 0]"] - 11[Solid2d] + subgraph path6 [Path] + 6["Path
[1234, 1272, 0]"] + 13["Segment
[1280, 1330, 0]"] + 14["Segment
[1338, 1387, 0]"] + 15["Segment
[1395, 1447, 0]"] + 16["Segment
[1455, 1503, 0]"] + 17["Segment
[1511, 1555, 0]"] + 18["Segment
[1563, 1608, 0]"] + 19["Segment
[1616, 1665, 0]"] + 20["Segment
[1673, 1692, 0]"] + 43[Solid2d] end - subgraph path40 [Path] - 40["Path
[2383, 2437, 0]"] - 41["Segment
[2443, 2496, 0]"] - 42["Segment
[2502, 2552, 0]"] - 43["Segment
[2558, 2612, 0]"] - 44["Segment
[2618, 2638, 0]"] - 45[Solid2d] + subgraph path7 [Path] + 7["Path
[2383, 2437, 0]"] + 21["Segment
[2443, 2496, 0]"] + 22["Segment
[2502, 2552, 0]"] + 23["Segment
[2558, 2612, 0]"] + 24["Segment
[2618, 2638, 0]"] + 42[Solid2d] end - subgraph path46 [Path] - 46["Path
[2662, 2825, 0]"] - 47["Segment
[2662, 2825, 0]"] - 48[Solid2d] + subgraph path8 [Path] + 8["Path
[2662, 2825, 0]"] + 25["Segment
[2662, 2825, 0]"] + 39[Solid2d] end - subgraph path67 [Path] - 67["Path
[3207, 3262, 0]"] - 68["Segment
[3268, 3322, 0]"] - 69["Segment
[3328, 3378, 0]"] - 70["Segment
[3384, 3437, 0]"] - 71["Segment
[3443, 3463, 0]"] - 72[Solid2d] + subgraph path9 [Path] + 9["Path
[3207, 3262, 0]"] + 26["Segment
[3268, 3322, 0]"] + 27["Segment
[3328, 3378, 0]"] + 28["Segment
[3384, 3437, 0]"] + 29["Segment
[3443, 3463, 0]"] + 38[Solid2d] end - subgraph path73 [Path] - 73["Path
[3487, 3653, 0]"] - 74["Segment
[3487, 3653, 0]"] - 75[Solid2d] + subgraph path10 [Path] + 10["Path
[3487, 3653, 0]"] + 30["Segment
[3487, 3653, 0]"] + 40[Solid2d] end - subgraph path94 [Path] - 94["Path
[4233, 4274, 0]"] - 95["Segment
[4280, 4300, 0]"] - 96["Segment
[4306, 4329, 0]"] - 97["Segment
[4335, 4342, 0]"] - 98[Solid2d] + subgraph path11 [Path] + 11["Path
[4233, 4274, 0]"] + 31["Segment
[4280, 4300, 0]"] + 32["Segment
[4306, 4329, 0]"] + 33["Segment
[4335, 4342, 0]"] + 44[Solid2d] end - subgraph path112 [Path] - 112["Path
[4457, 4497, 0]"] - 113["Segment
[4503, 4523, 0]"] - 114["Segment
[4529, 4550, 0]"] - 115["Segment
[4556, 4577, 0]"] - 116["Segment
[4583, 4590, 0]"] - 117[Solid2d] + subgraph path12 [Path] + 12["Path
[4457, 4497, 0]"] + 34["Segment
[4503, 4523, 0]"] + 35["Segment
[4529, 4550, 0]"] + 36["Segment
[4556, 4577, 0]"] + 37["Segment
[4583, 4590, 0]"] + 41[Solid2d] end 1["Plane
[1199, 1226, 0]"] - 12["Sweep Extrusion
[1800, 1834, 0]"] - 13[Wall] - 14[Wall] - 15[Wall] - 16[Wall] - 17[Wall] - 18[Wall] - 19[Wall] - 20[Wall] - 21["Cap Start"] - 22["Cap End"] - 23["SweepEdge Opposite"] - 24["SweepEdge Adjacent"] - 25["SweepEdge Opposite"] - 26["SweepEdge Adjacent"] - 27["SweepEdge Opposite"] - 28["SweepEdge Adjacent"] - 29["SweepEdge Opposite"] - 30["SweepEdge Adjacent"] - 31["SweepEdge Opposite"] - 32["SweepEdge Adjacent"] - 33["SweepEdge Opposite"] - 34["SweepEdge Adjacent"] - 35["SweepEdge Opposite"] - 36["SweepEdge Adjacent"] - 37["SweepEdge Opposite"] - 38["SweepEdge Adjacent"] - 39["Plane
[2354, 2377, 0]"] - 49["Sweep Extrusion
[2832, 2857, 0]"] + 2["Plane
[2354, 2377, 0]"] + 3["Plane
[3178, 3201, 0]"] + 4["Plane
[4204, 4227, 0]"] + 5["Plane
[4428, 4451, 0]"] + 45["Sweep Extrusion
[1800, 1834, 0]"] + 46["Sweep Extrusion
[2832, 2857, 0]"] + 47["Sweep Extrusion
[3660, 3685, 0]"] + 48["Sweep Extrusion
[4348, 4376, 0]"] + 49["Sweep Extrusion
[4596, 4624, 0]"] 50[Wall] 51[Wall] 52[Wall] 53[Wall] - 54["Cap Start"] - 55["Cap End"] - 56["SweepEdge Opposite"] - 57["SweepEdge Adjacent"] - 58["SweepEdge Opposite"] - 59["SweepEdge Adjacent"] - 60["SweepEdge Opposite"] - 61["SweepEdge Adjacent"] - 62["SweepEdge Opposite"] - 63["SweepEdge Adjacent"] - 64["EdgeCut Fillet
[2863, 3008, 0]"] - 65["EdgeCut Fillet
[2863, 3008, 0]"] - 66["Plane
[3178, 3201, 0]"] - 76["Sweep Extrusion
[3660, 3685, 0]"] - 77[Wall] - 78[Wall] - 79[Wall] - 80[Wall] - 81["Cap Start"] + 54[Wall] + 55[Wall] + 56[Wall] + 57[Wall] + 58[Wall] + 59[Wall] + 60[Wall] + 61[Wall] + 62[Wall] + 63[Wall] + 64[Wall] + 65[Wall] + 66[Wall] + 67[Wall] + 68[Wall] + 69[Wall] + 70[Wall] + 71[Wall] + 72[Wall] + 73["Cap Start"] + 74["Cap Start"] + 75["Cap Start"] + 76["Cap Start"] + 77["Cap Start"] + 78["Cap End"] + 79["Cap End"] + 80["Cap End"] + 81["Cap End"] 82["Cap End"] 83["SweepEdge Opposite"] - 84["SweepEdge Adjacent"] + 84["SweepEdge Opposite"] 85["SweepEdge Opposite"] - 86["SweepEdge Adjacent"] + 86["SweepEdge Opposite"] 87["SweepEdge Opposite"] - 88["SweepEdge Adjacent"] + 88["SweepEdge Opposite"] 89["SweepEdge Opposite"] - 90["SweepEdge Adjacent"] - 91["EdgeCut Fillet
[3691, 3836, 0]"] - 92["EdgeCut Fillet
[3691, 3836, 0]"] - 93["Plane
[4204, 4227, 0]"] - 99["Sweep Extrusion
[4348, 4376, 0]"] - 100[Wall] - 101[Wall] - 102[Wall] - 103["Cap Start"] - 104["Cap End"] + 90["SweepEdge Opposite"] + 91["SweepEdge Opposite"] + 92["SweepEdge Opposite"] + 93["SweepEdge Opposite"] + 94["SweepEdge Opposite"] + 95["SweepEdge Opposite"] + 96["SweepEdge Opposite"] + 97["SweepEdge Opposite"] + 98["SweepEdge Opposite"] + 99["SweepEdge Opposite"] + 100["SweepEdge Opposite"] + 101["SweepEdge Opposite"] + 102["SweepEdge Opposite"] + 103["SweepEdge Opposite"] + 104["SweepEdge Opposite"] 105["SweepEdge Opposite"] 106["SweepEdge Adjacent"] - 107["SweepEdge Opposite"] + 107["SweepEdge Adjacent"] 108["SweepEdge Adjacent"] - 109["SweepEdge Opposite"] + 109["SweepEdge Adjacent"] 110["SweepEdge Adjacent"] - 111["Plane
[4428, 4451, 0]"] - 118["Sweep Extrusion
[4596, 4624, 0]"] - 119[Wall] - 120[Wall] - 121[Wall] - 122[Wall] - 123["Cap Start"] - 124["Cap End"] - 125["SweepEdge Opposite"] + 111["SweepEdge Adjacent"] + 112["SweepEdge Adjacent"] + 113["SweepEdge Adjacent"] + 114["SweepEdge Adjacent"] + 115["SweepEdge Adjacent"] + 116["SweepEdge Adjacent"] + 117["SweepEdge Adjacent"] + 118["SweepEdge Adjacent"] + 119["SweepEdge Adjacent"] + 120["SweepEdge Adjacent"] + 121["SweepEdge Adjacent"] + 122["SweepEdge Adjacent"] + 123["SweepEdge Adjacent"] + 124["SweepEdge Adjacent"] + 125["SweepEdge Adjacent"] 126["SweepEdge Adjacent"] - 127["SweepEdge Opposite"] + 127["SweepEdge Adjacent"] 128["SweepEdge Adjacent"] - 129["SweepEdge Opposite"] - 130["SweepEdge Adjacent"] - 131["SweepEdge Opposite"] - 132["SweepEdge Adjacent"] + 129["EdgeCut Fillet
[2863, 3008, 0]"] + 130["EdgeCut Fillet
[2863, 3008, 0]"] + 131["EdgeCut Fillet
[3691, 3836, 0]"] + 132["EdgeCut Fillet
[3691, 3836, 0]"] 133["EdgeCut Fillet
[1840, 2099, 0]"] 134["EdgeCut Fillet
[1840, 2099, 0]"] 135["EdgeCut Fillet
[1840, 2099, 0]"] 136["EdgeCut Fillet
[1840, 2099, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 + 1 --- 6 2 --- 7 2 --- 8 - 2 --- 9 - 2 --- 10 - 2 ---- 12 - 2 --- 11 - 3 --- 13 - 3 --- 23 - 3 --- 24 - 3 x--> 21 - 4 --- 14 - 4 --- 25 - 4 --- 26 - 4 x--> 21 - 5 --- 15 - 5 --- 27 - 5 --- 28 - 5 x--> 21 + 3 --- 9 + 3 --- 10 + 4 --- 11 + 5 --- 12 + 6 --- 13 + 6 --- 14 + 6 --- 15 6 --- 16 - 6 --- 29 - 6 --- 30 - 6 x--> 21 - 7 --- 17 - 7 --- 31 - 7 --- 32 - 7 x--> 21 - 8 --- 18 - 8 --- 33 - 8 --- 34 - 8 x--> 21 - 9 --- 19 - 9 --- 35 - 9 --- 36 - 9 x--> 21 - 10 --- 20 - 10 --- 37 - 10 --- 38 - 10 x--> 21 - 12 --- 13 - 12 --- 14 - 12 --- 15 - 12 --- 16 - 12 --- 17 - 12 --- 18 - 12 --- 19 - 12 --- 20 - 12 --- 21 - 12 --- 22 - 12 --- 23 - 12 --- 24 - 12 --- 25 - 12 --- 26 - 12 --- 27 - 12 --- 28 - 12 --- 29 - 12 --- 30 - 12 --- 31 - 12 --- 32 - 12 --- 33 + 6 --- 17 + 6 --- 18 + 6 --- 19 + 6 --- 20 + 6 --- 43 + 6 ---- 45 + 7 --- 21 + 7 --- 22 + 7 --- 23 + 7 --- 24 + 7 --- 42 + 7 ---- 46 + 8 --- 25 + 8 --- 39 + 9 --- 26 + 9 --- 27 + 9 --- 28 + 9 --- 29 + 9 --- 38 + 9 ---- 47 + 10 --- 30 + 10 --- 40 + 11 --- 31 + 11 --- 32 + 11 --- 33 + 11 --- 44 + 11 ---- 48 12 --- 34 12 --- 35 12 --- 36 12 --- 37 - 12 --- 38 - 23 <--x 13 - 23 <--x 22 - 24 <--x 13 - 24 <--x 14 - 25 <--x 14 - 25 <--x 22 - 26 <--x 14 - 26 <--x 15 - 27 <--x 15 - 27 <--x 22 - 28 <--x 15 - 28 <--x 16 - 29 <--x 16 - 29 <--x 22 - 30 <--x 16 - 30 <--x 17 - 31 <--x 17 - 31 <--x 22 - 32 <--x 17 - 32 <--x 18 - 33 <--x 18 - 33 <--x 22 - 34 <--x 18 - 34 <--x 19 - 35 <--x 19 - 35 <--x 22 - 36 <--x 19 - 36 <--x 20 - 37 <--x 20 - 37 <--x 22 - 38 <--x 13 - 38 <--x 20 - 39 --- 40 - 39 --- 46 - 40 --- 41 - 40 --- 42 - 40 --- 43 - 40 --- 44 - 40 ---- 49 - 40 --- 45 - 41 --- 53 - 41 --- 62 - 41 --- 63 - 41 x--> 55 - 42 --- 52 - 42 --- 60 - 42 --- 61 - 42 x--> 55 - 43 --- 51 - 43 --- 58 - 43 --- 59 - 43 x--> 55 - 44 --- 50 - 44 --- 56 - 44 --- 57 - 44 x--> 55 - 46 --- 47 - 46 --- 48 - 49 --- 50 - 49 --- 51 - 49 --- 52 - 49 --- 53 + 12 --- 41 + 12 ---- 49 + 13 --- 69 + 13 x--> 77 + 13 --- 99 + 13 --- 128 + 14 --- 68 + 14 x--> 77 + 14 --- 103 + 14 --- 123 + 15 --- 67 + 15 x--> 77 + 15 --- 98 + 15 --- 127 + 16 --- 70 + 16 x--> 77 + 16 --- 101 + 16 --- 124 + 17 --- 72 + 17 x--> 77 + 17 --- 104 + 17 --- 122 + 18 --- 71 + 18 x--> 77 + 18 --- 100 + 18 --- 126 + 19 --- 65 + 19 x--> 77 + 19 --- 105 + 19 --- 121 + 20 --- 66 + 20 x--> 77 + 20 --- 102 + 20 --- 125 + 21 --- 53 + 21 x--> 78 + 21 --- 86 + 21 --- 107 + 22 --- 50 + 22 x--> 78 + 22 --- 84 + 22 --- 108 + 23 --- 51 + 23 x--> 78 + 23 --- 83 + 23 --- 109 + 24 --- 52 + 24 x--> 78 + 24 --- 85 + 24 --- 106 + 26 --- 62 + 26 x--> 81 + 26 --- 96 + 26 --- 120 + 27 --- 63 + 27 x--> 81 + 27 --- 97 + 27 --- 117 + 28 --- 61 + 28 x--> 81 + 28 --- 95 + 28 --- 119 + 29 --- 64 + 29 x--> 81 + 29 --- 94 + 29 --- 118 + 31 --- 58 + 31 x--> 75 + 31 --- 93 + 31 --- 116 + 32 --- 60 + 32 x--> 75 + 32 --- 91 + 32 --- 115 + 33 --- 59 + 33 x--> 75 + 33 --- 92 + 33 --- 114 + 34 --- 56 + 34 x--> 74 + 34 --- 87 + 34 --- 111 + 35 --- 55 + 35 x--> 74 + 35 --- 90 + 35 --- 113 + 36 --- 54 + 36 x--> 74 + 36 --- 88 + 36 --- 110 + 37 --- 57 + 37 x--> 74 + 37 --- 89 + 37 --- 112 + 45 --- 65 + 45 --- 66 + 45 --- 67 + 45 --- 68 + 45 --- 69 + 45 --- 70 + 45 --- 71 + 45 --- 72 + 45 --- 77 + 45 --- 82 + 45 --- 98 + 45 --- 99 + 45 --- 100 + 45 --- 101 + 45 --- 102 + 45 --- 103 + 45 --- 104 + 45 --- 105 + 45 --- 121 + 45 --- 122 + 45 --- 123 + 45 --- 124 + 45 --- 125 + 45 --- 126 + 45 --- 127 + 45 --- 128 + 46 --- 50 + 46 --- 51 + 46 --- 52 + 46 --- 53 + 46 --- 73 + 46 --- 78 + 46 --- 83 + 46 --- 84 + 46 --- 85 + 46 --- 86 + 46 --- 106 + 46 --- 107 + 46 --- 108 + 46 --- 109 + 47 --- 61 + 47 --- 62 + 47 --- 63 + 47 --- 64 + 47 --- 76 + 47 --- 81 + 47 --- 94 + 47 --- 95 + 47 --- 96 + 47 --- 97 + 47 --- 117 + 47 --- 118 + 47 --- 119 + 47 --- 120 + 48 --- 58 + 48 --- 59 + 48 --- 60 + 48 --- 75 + 48 --- 80 + 48 --- 91 + 48 --- 92 + 48 --- 93 + 48 --- 114 + 48 --- 115 + 48 --- 116 49 --- 54 49 --- 55 49 --- 56 49 --- 57 - 49 --- 58 - 49 --- 59 - 49 --- 60 - 49 --- 61 - 49 --- 62 - 49 --- 63 - 56 <--x 50 - 56 <--x 54 - 57 <--x 50 - 57 <--x 53 - 58 <--x 51 - 58 <--x 54 - 59 <--x 50 - 59 <--x 51 - 60 <--x 52 - 60 <--x 54 - 62 <--x 53 - 62 <--x 54 - 63 <--x 64 - 61 <--x 65 - 66 --- 67 - 66 --- 73 - 67 --- 68 - 67 --- 69 - 67 --- 70 - 67 --- 71 - 67 ---- 76 - 67 --- 72 - 68 --- 77 - 68 --- 83 - 68 --- 84 - 68 x--> 82 - 69 --- 78 - 69 --- 85 - 69 --- 86 - 69 x--> 82 - 70 --- 79 - 70 --- 87 - 70 --- 88 - 70 x--> 82 - 71 --- 80 - 71 --- 89 - 71 --- 90 - 71 x--> 82 - 73 --- 74 - 73 --- 75 - 76 --- 77 - 76 --- 78 - 76 --- 79 - 76 --- 80 - 76 --- 81 - 76 --- 82 - 76 --- 83 - 76 --- 84 - 76 --- 85 - 76 --- 86 - 76 --- 87 - 76 --- 88 - 76 --- 89 - 76 --- 90 - 83 <--x 77 - 83 <--x 81 - 85 <--x 78 - 85 <--x 81 + 49 --- 74 + 49 --- 79 + 49 --- 87 + 49 --- 88 + 49 --- 89 + 49 --- 90 + 49 --- 110 + 49 --- 111 + 49 --- 112 + 49 --- 113 + 84 <--x 50 + 83 <--x 51 + 109 <--x 51 + 85 <--x 52 + 106 <--x 52 + 109 <--x 52 + 86 <--x 53 + 106 <--x 53 + 88 <--x 54 + 110 <--x 54 + 113 <--x 54 + 90 <--x 55 + 111 <--x 55 + 113 <--x 55 + 87 <--x 56 + 111 <--x 56 + 112 <--x 56 + 89 <--x 57 + 110 <--x 57 + 112 <--x 57 + 93 <--x 58 + 114 <--x 58 + 116 <--x 58 + 92 <--x 59 + 114 <--x 59 + 115 <--x 59 + 91 <--x 60 + 115 <--x 60 + 116 <--x 60 + 95 <--x 61 + 119 <--x 61 + 96 <--x 62 + 118 <--x 62 + 97 <--x 63 + 94 <--x 64 + 118 <--x 64 + 119 <--x 64 + 105 <--x 65 + 121 <--x 65 + 126 <--x 65 + 102 <--x 66 + 121 <--x 66 + 125 <--x 66 + 98 <--x 67 + 123 <--x 67 + 127 <--x 67 + 103 <--x 68 + 123 <--x 68 + 128 <--x 68 + 99 <--x 69 + 125 <--x 69 + 128 <--x 69 + 101 <--x 70 + 124 <--x 70 + 127 <--x 70 + 100 <--x 71 + 122 <--x 71 + 126 <--x 71 + 104 <--x 72 + 122 <--x 72 + 124 <--x 72 + 83 <--x 73 + 84 <--x 73 + 85 <--x 73 + 86 <--x 73 + 94 <--x 76 + 95 <--x 76 + 96 <--x 76 + 97 <--x 76 87 <--x 79 - 87 <--x 81 88 <--x 79 - 88 <--x 80 - 89 <--x 80 - 89 <--x 81 - 90 <--x 77 - 90 <--x 80 - 84 <--x 91 - 86 <--x 92 - 93 --- 94 - 94 --- 95 - 94 --- 96 - 94 --- 97 - 94 ---- 99 - 94 --- 98 - 95 --- 102 - 95 --- 109 - 95 --- 110 - 95 x--> 103 - 96 --- 101 - 96 --- 107 - 96 --- 108 - 96 x--> 103 - 97 --- 100 - 97 --- 105 - 97 --- 106 - 97 x--> 103 - 99 --- 100 - 99 --- 101 - 99 --- 102 - 99 --- 103 - 99 --- 104 - 99 --- 105 - 99 --- 106 - 99 --- 107 - 99 --- 108 - 99 --- 109 - 99 --- 110 - 105 <--x 100 - 105 <--x 104 - 106 <--x 100 - 106 <--x 102 - 107 <--x 101 - 107 <--x 104 - 108 <--x 100 - 108 <--x 101 - 109 <--x 102 - 109 <--x 104 - 110 <--x 101 - 110 <--x 102 - 111 --- 112 - 112 --- 113 - 112 --- 114 - 112 --- 115 - 112 --- 116 - 112 ---- 118 - 112 --- 117 - 113 --- 119 - 113 --- 125 - 113 --- 126 - 113 x--> 123 - 114 --- 120 - 114 --- 127 - 114 --- 128 - 114 x--> 123 - 115 --- 121 - 115 --- 129 - 115 --- 130 - 115 x--> 123 - 116 --- 122 - 116 --- 131 - 116 --- 132 - 116 x--> 123 - 118 --- 119 - 118 --- 120 - 118 --- 121 - 118 --- 122 - 118 --- 123 - 118 --- 124 - 118 --- 125 - 118 --- 126 - 118 --- 127 - 118 --- 128 - 118 --- 129 - 118 --- 130 - 118 --- 131 - 118 --- 132 - 125 <--x 119 - 125 <--x 124 - 126 <--x 119 - 126 <--x 120 - 127 <--x 120 - 127 <--x 124 - 128 <--x 120 - 128 <--x 121 - 129 <--x 121 - 129 <--x 124 - 130 <--x 121 - 130 <--x 122 - 131 <--x 122 - 131 <--x 124 - 132 <--x 119 - 132 <--x 122 - 34 <--x 133 - 24 <--x 134 - 26 <--x 135 - 32 <--x 136 + 89 <--x 79 + 90 <--x 79 + 91 <--x 80 + 92 <--x 80 + 93 <--x 80 + 98 <--x 82 + 99 <--x 82 + 100 <--x 82 + 101 <--x 82 + 102 <--x 82 + 103 <--x 82 + 104 <--x 82 + 105 <--x 82 + 107 <--x 129 + 108 <--x 130 + 117 <--x 132 + 120 <--x 131 + 122 <--x 136 + 123 <--x 135 + 126 <--x 133 + 128 <--x 134 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/ops.snap b/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/ops.snap index b593d7056..7ca435454 100644 --- a/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/ops.snap @@ -3,17 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed focusrite-scarlett-mounting-bracket.kcl --- [ - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "bracketSketch", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -207,7 +196,15 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl "unlabeledArg": null }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "bracketSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -1528,5 +1525,8 @@ description: Operations executed focusrite-scarlett-mounting-bracket.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/kcl_samples/food-service-spatula/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/food-service-spatula/artifact_commands.snap index 41eceab28..5e0a11659 100644 --- a/rust/kcl-lib/tests/kcl_samples/food-service-spatula/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/food-service-spatula/artifact_commands.snap @@ -29,6 +29,474 @@ description: Artifact commands food-service-spatula.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -25.0, + "y": 5.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -24.833425848836807, + "y": 22.99722453489577, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -25.16657415116319, + "y": -13.002775465104229, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 4.0, + "y": 200.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -30.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -30.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -30.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 10.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 5.0, + "offset": { + "unit": "degrees", + "value": 180.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 5.0, + "offset": { + "unit": "degrees", + "value": 180.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 5.0, + "offset": { + "unit": "degrees", + "value": 180.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 4.0, + "offset": { + "unit": "degrees", + "value": 180.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 30.0, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 30.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 30.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.0, + "y": -10.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 0.0, + "y": 10.0, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 0.3331, + "y": 9.9944, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": -0.3331, + "y": 9.9944, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc_to", + "to": { + "x": 8.0, + "y": 0.0, + "z": 0.0 + }, + "angle_snap_increment": null + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -70,13 +538,6 @@ description: Artifact commands food-service-spatula.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +558,13 @@ description: Artifact commands food-service-spatula.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -185,354 +653,9 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -25.0, - "y": 5.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -30.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 5.0, - "offset": { - "unit": "degrees", - "value": 180.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 30.0, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 0.0, - "y": 10.0, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -24.833425848836807, - "y": 22.99722453489577, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -30.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 5.0, - "offset": { - "unit": "degrees", - "value": 180.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 30.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 0.3331, - "y": 9.9944, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -25.16657415116319, - "y": -13.002775465104229, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -30.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 5.0, - "offset": { - "unit": "degrees", - "value": 180.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 30.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": -0.3331, - "y": 9.9944, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -580,15 +703,6 @@ description: Artifact commands food-service-spatula.kcl "hole_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -616,6 +730,14 @@ description: Artifact commands food-service-spatula.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -627,8 +749,459 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -644,30 +1217,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -682,39 +1237,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -729,39 +1257,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -776,39 +1277,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -823,39 +1297,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -870,39 +1317,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -917,39 +1337,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -964,39 +1357,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1011,18 +1377,10 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1039,39 +1397,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1086,39 +1417,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1133,39 +1437,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1180,39 +1457,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1227,39 +1477,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1274,39 +1497,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1321,39 +1517,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1368,39 +1537,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1415,28 +1557,24 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", "edge_id": "[uuid]", - "face_id": "[uuid]" + "radius": 5.0, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "radius": 5.0, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { @@ -1514,13 +1652,6 @@ description: Artifact commands food-service-spatula.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1534,6 +1665,15 @@ description: Artifact commands food-service-spatula.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -1541,6 +1681,13 @@ description: Artifact commands food-service-spatula.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1678,6 +1825,14 @@ description: Artifact commands food-service-spatula.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1689,8 +1844,189 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1706,30 +2042,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1744,39 +2062,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1791,39 +2082,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1838,18 +2102,10 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1866,39 +2122,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1913,39 +2142,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1960,39 +2162,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2007,28 +2182,24 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", "edge_id": "[uuid]", - "face_id": "[uuid]" + "radius": 4.0, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "radius": 4.0, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { @@ -2092,13 +2263,6 @@ description: Artifact commands food-service-spatula.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2112,6 +2276,15 @@ description: Artifact commands food-service-spatula.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -2119,6 +2292,13 @@ description: Artifact commands food-service-spatula.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2322,6 +2502,14 @@ description: Artifact commands food-service-spatula.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2333,8 +2521,216 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -2350,30 +2746,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2388,39 +2766,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2435,39 +2786,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2482,39 +2806,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2529,18 +2826,10 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2557,39 +2846,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2604,39 +2866,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2647,43 +2882,6 @@ description: Artifact commands food-service-spatula.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2698,144 +2896,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 4.0, - "y": 200.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 10.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 4.0, - "offset": { - "unit": "degrees", - "value": 180.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -0.0, - "y": -10.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc_to", - "to": { - "x": 8.0, - "y": 0.0, - "z": 0.0 - }, - "angle_snap_increment": null - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2859,6 +2925,14 @@ description: Artifact commands food-service-spatula.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2870,8 +2944,108 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -2887,30 +3061,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2925,39 +3081,12 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2972,18 +3101,10 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2996,43 +3117,6 @@ description: Artifact commands food-service-spatula.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3047,94 +3131,10 @@ description: Artifact commands food-service-spatula.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 5.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 5.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 4.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 4.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/food-service-spatula/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/food-service-spatula/artifact_graph_flowchart.snap.md index e01ab9c8d..33144c3d7 100644 --- a/rust/kcl-lib/tests/kcl_samples/food-service-spatula/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/food-service-spatula/artifact_graph_flowchart.snap.md @@ -1,492 +1,492 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[1488, 1545, 0]"] - 3["Segment
[1551, 1583, 0]"] - 4["Segment
[1589, 1626, 0]"] - 5["Segment
[1632, 1665, 0]"] - 6["Segment
[1671, 1738, 0]"] - 7["Segment
[1744, 1751, 0]"] - 8[Solid2d] + subgraph path6 [Path] + 6["Path
[1041, 1085, 0]"] + 15["Segment
[1093, 1133, 0]"] + 17["Segment
[1141, 1187, 0]"] + 23["Segment
[1195, 1236, 0]"] + 25["Segment
[1244, 1309, 0]"] + 29["Segment
[1317, 1324, 0]"] + 55[Solid2d] + end + subgraph path7 [Path] + 7["Path
[1041, 1085, 0]"] + 16["Segment
[1093, 1133, 0]"] + 19["Segment
[1141, 1187, 0]"] + 21["Segment
[1195, 1236, 0]"] + 28["Segment
[1244, 1309, 0]"] + 32["Segment
[1317, 1324, 0]"] + 56[Solid2d] + end + subgraph path8 [Path] + 8["Path
[1041, 1085, 0]"] + 13["Segment
[1093, 1133, 0]"] + 20["Segment
[1141, 1187, 0]"] + 22["Segment
[1195, 1236, 0]"] + 26["Segment
[1244, 1309, 0]"] + 31["Segment
[1317, 1324, 0]"] + 59[Solid2d] end subgraph path9 [Path] 9["Path
[1041, 1085, 0]"] - 10["Segment
[1093, 1133, 0]"] - 11["Segment
[1141, 1187, 0]"] - 12["Segment
[1195, 1236, 0]"] - 13["Segment
[1244, 1309, 0]"] - 14["Segment
[1317, 1324, 0]"] - 15[Solid2d] - end - subgraph path16 [Path] - 16["Path
[1041, 1085, 0]"] - 17["Segment
[1093, 1133, 0]"] + 14["Segment
[1093, 1133, 0]"] 18["Segment
[1141, 1187, 0]"] - 19["Segment
[1195, 1236, 0]"] - 20["Segment
[1244, 1309, 0]"] - 21["Segment
[1317, 1324, 0]"] - 22[Solid2d] - end - subgraph path23 [Path] - 23["Path
[1041, 1085, 0]"] - 24["Segment
[1093, 1133, 0]"] - 25["Segment
[1141, 1187, 0]"] - 26["Segment
[1195, 1236, 0]"] + 24["Segment
[1195, 1236, 0]"] 27["Segment
[1244, 1309, 0]"] - 28["Segment
[1317, 1324, 0]"] - 29[Solid2d] + 30["Segment
[1317, 1324, 0]"] + 60[Solid2d] end - subgraph path49 [Path] - 49["Path
[2784, 2840, 0]"] - 50["Segment
[2846, 2905, 0]"] - 51["Segment
[2911, 2946, 0]"] - 52["Segment
[2952, 2985, 0]"] - 53["Segment
[2991, 3050, 0]"] - 54["Segment
[3056, 3092, 0]"] - 55["Segment
[3098, 3122, 0]"] - 56["Segment
[3128, 3135, 0]"] + subgraph path10 [Path] + 10["Path
[1488, 1545, 0]"] + 33["Segment
[1551, 1583, 0]"] + 34["Segment
[1589, 1626, 0]"] + 35["Segment
[1632, 1665, 0]"] + 36["Segment
[1671, 1738, 0]"] + 37["Segment
[1744, 1751, 0]"] 57[Solid2d] end - subgraph path83 [Path] - 83["Path
[3730, 3780, 0]"] - 84["Segment
[3786, 3836, 0]"] - 85["Segment
[3842, 3908, 0]"] - 86["Segment
[3914, 3965, 0]"] - 87["Segment
[3971, 4036, 0]"] - 88["Segment
[4042, 4095, 0]"] - 89["Segment
[4101, 4168, 0]"] - 90["Segment
[4174, 4248, 0]"] - 91["Segment
[4254, 4322, 0]"] - 92["Segment
[4328, 4335, 0]"] - 93[Solid2d] + subgraph path11 [Path] + 11["Path
[2784, 2840, 0]"] + 38["Segment
[2846, 2905, 0]"] + 39["Segment
[2911, 2946, 0]"] + 40["Segment
[2952, 2985, 0]"] + 41["Segment
[2991, 3050, 0]"] + 42["Segment
[3056, 3092, 0]"] + 43["Segment
[3098, 3122, 0]"] + 44["Segment
[3128, 3135, 0]"] + 58[Solid2d] end - subgraph path121 [Path] - 121["Path
[1041, 1085, 0]"] - 122["Segment
[1093, 1133, 0]"] - 123["Segment
[1141, 1187, 0]"] - 124["Segment
[1195, 1236, 0]"] - 125["Segment
[1244, 1309, 0]"] - 126["Segment
[1317, 1324, 0]"] - 127[Solid2d] + subgraph path12 [Path] + 12["Path
[3730, 3780, 0]"] + 45["Segment
[3786, 3836, 0]"] + 46["Segment
[3842, 3908, 0]"] + 47["Segment
[3914, 3965, 0]"] + 48["Segment
[3971, 4036, 0]"] + 49["Segment
[4042, 4095, 0]"] + 50["Segment
[4101, 4168, 0]"] + 51["Segment
[4174, 4248, 0]"] + 52["Segment
[4254, 4322, 0]"] + 53["Segment
[4328, 4335, 0]"] + 54[Solid2d] end 1["Plane
[1417, 1434, 0]"] - 30["Sweep Extrusion
[2356, 2406, 0]"] - 31[Wall] - 32[Wall] - 33[Wall] - 34[Wall] - 35[Wall] - 36["Cap Start"] - 37["Cap End"] - 38["SweepEdge Opposite"] - 39["SweepEdge Adjacent"] - 40["SweepEdge Opposite"] - 41["SweepEdge Adjacent"] - 42["SweepEdge Opposite"] - 43["SweepEdge Adjacent"] - 44["SweepEdge Opposite"] - 45["SweepEdge Adjacent"] - 46["SweepEdge Opposite"] - 47["SweepEdge Adjacent"] - 48["Plane
[2681, 2723, 0]"] - 58["Sweep Extrusion
[3169, 3213, 0]"] - 59[Wall] - 60[Wall] - 61[Wall] - 62[Wall] - 63[Wall] - 64[Wall] + 2["Plane
[2681, 2723, 0]"] + 3["Plane
[3656, 3682, 0]"] + 4["StartSketchOnPlane
[2667, 2724, 0]"] + 5["StartSketchOnFace
[4492, 4531, 0]"] + 61["Sweep Extrusion
[2356, 2406, 0]"] + 62["Sweep Extrusion
[3169, 3213, 0]"] + 63["Sweep Extrusion
[4391, 4433, 0]"] + 64["Sweep Extrusion
[4668, 4718, 0]"] 65[Wall] - 66["Cap Start"] - 67["Cap End"] - 68["SweepEdge Opposite"] - 69["SweepEdge Adjacent"] - 70["SweepEdge Opposite"] - 71["SweepEdge Adjacent"] - 72["SweepEdge Opposite"] - 73["SweepEdge Adjacent"] - 74["SweepEdge Opposite"] - 75["SweepEdge Adjacent"] - 76["SweepEdge Opposite"] - 77["SweepEdge Adjacent"] - 78["SweepEdge Opposite"] - 79["SweepEdge Adjacent"] - 80["SweepEdge Opposite"] - 81["SweepEdge Adjacent"] - 82["Plane
[3656, 3682, 0]"] - 94["Sweep Extrusion
[4391, 4433, 0]"] - 95[Wall] - 96[Wall] - 97[Wall] - 98[Wall] - 99[Wall] - 100[Wall] - 101[Wall] - 102[Wall] - 103["Cap Start"] - 104["Cap End"] + 66[Wall] + 67[Wall] + 68[Wall] + 69[Wall] + 70[Wall] + 71[Wall] + 72[Wall] + 73[Wall] + 74[Wall] + 75[Wall] + 76[Wall] + 77[Wall] + 78[Wall] + 79[Wall] + 80[Wall] + 81[Wall] + 82[Wall] + 83[Wall] + 84[Wall] + 85[Wall] + 86[Wall] + 87[Wall] + 88[Wall] + 89["Cap Start"] + 90["Cap Start"] + 91["Cap Start"] + 92["Cap End"] + 93["Cap End"] + 94["Cap End"] + 95["SweepEdge Opposite"] + 96["SweepEdge Opposite"] + 97["SweepEdge Opposite"] + 98["SweepEdge Opposite"] + 99["SweepEdge Opposite"] + 100["SweepEdge Opposite"] + 101["SweepEdge Opposite"] + 102["SweepEdge Opposite"] + 103["SweepEdge Opposite"] + 104["SweepEdge Opposite"] 105["SweepEdge Opposite"] - 106["SweepEdge Adjacent"] + 106["SweepEdge Opposite"] 107["SweepEdge Opposite"] - 108["SweepEdge Adjacent"] + 108["SweepEdge Opposite"] 109["SweepEdge Opposite"] - 110["SweepEdge Adjacent"] + 110["SweepEdge Opposite"] 111["SweepEdge Opposite"] - 112["SweepEdge Adjacent"] + 112["SweepEdge Opposite"] 113["SweepEdge Opposite"] - 114["SweepEdge Adjacent"] + 114["SweepEdge Opposite"] 115["SweepEdge Opposite"] - 116["SweepEdge Adjacent"] + 116["SweepEdge Opposite"] 117["SweepEdge Opposite"] - 118["SweepEdge Adjacent"] - 119["SweepEdge Opposite"] + 118["SweepEdge Opposite"] + 119["SweepEdge Adjacent"] 120["SweepEdge Adjacent"] - 128["Sweep Extrusion
[4668, 4718, 0]"] - 129[Wall] - 130[Wall] - 131[Wall] - 132[Wall] - 133["SweepEdge Opposite"] + 121["SweepEdge Adjacent"] + 122["SweepEdge Adjacent"] + 123["SweepEdge Adjacent"] + 124["SweepEdge Adjacent"] + 125["SweepEdge Adjacent"] + 126["SweepEdge Adjacent"] + 127["SweepEdge Adjacent"] + 128["SweepEdge Adjacent"] + 129["SweepEdge Adjacent"] + 130["SweepEdge Adjacent"] + 131["SweepEdge Adjacent"] + 132["SweepEdge Adjacent"] + 133["SweepEdge Adjacent"] 134["SweepEdge Adjacent"] - 135["SweepEdge Opposite"] + 135["SweepEdge Adjacent"] 136["SweepEdge Adjacent"] - 137["SweepEdge Opposite"] + 137["SweepEdge Adjacent"] 138["SweepEdge Adjacent"] - 139["SweepEdge Opposite"] + 139["SweepEdge Adjacent"] 140["SweepEdge Adjacent"] - 141["EdgeCut Fillet
[2443, 2584, 0]"] - 142["EdgeCut Fillet
[2443, 2584, 0]"] - 143["EdgeCut Fillet
[3256, 3387, 0]"] - 144["EdgeCut Fillet
[3256, 3387, 0]"] - 145["StartSketchOnPlane
[2667, 2724, 0]"] - 146["StartSketchOnFace
[4492, 4531, 0]"] - 1 --- 2 + 141["SweepEdge Adjacent"] + 142["SweepEdge Adjacent"] + 143["EdgeCut Fillet
[2443, 2584, 0]"] + 144["EdgeCut Fillet
[2443, 2584, 0]"] + 145["EdgeCut Fillet
[3256, 3387, 0]"] + 146["EdgeCut Fillet
[3256, 3387, 0]"] + 1 --- 6 + 1 --- 8 1 --- 9 - 1 --- 16 - 1 --- 23 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 ---- 30 - 2 --- 8 - 3 --- 31 - 3 --- 38 - 3 --- 39 - 3 x--> 36 - 4 --- 32 - 4 --- 40 - 4 --- 41 - 4 x--> 36 - 5 --- 33 - 5 --- 42 - 5 --- 43 - 5 x--> 36 - 6 --- 34 - 6 --- 44 - 6 --- 45 - 6 x--> 36 - 7 --- 35 - 7 --- 46 - 7 --- 47 - 7 x--> 36 - 9 --- 10 - 9 --- 11 - 9 --- 12 - 9 --- 13 + 1 --- 10 + 2 <--x 4 + 2 --- 11 + 3 --- 12 + 81 x--> 5 + 6 --- 15 + 6 --- 17 + 6 --- 23 + 6 --- 25 + 6 --- 29 + 6 --- 55 + 7 --- 16 + 7 --- 19 + 7 --- 21 + 7 --- 28 + 7 --- 32 + 7 --- 56 + 7 ---- 64 + 81 --- 7 + 8 --- 13 + 8 --- 20 + 8 --- 22 + 8 --- 26 + 8 --- 31 + 8 --- 59 9 --- 14 - 9 --- 15 - 16 --- 17 - 16 --- 18 - 16 --- 19 - 16 --- 20 - 16 --- 21 - 16 --- 22 - 23 --- 24 - 23 --- 25 - 23 --- 26 - 23 --- 27 - 23 --- 28 - 23 --- 29 - 30 --- 31 - 30 --- 32 - 30 --- 33 - 30 --- 34 - 30 --- 35 - 30 --- 36 - 30 --- 37 - 30 --- 38 - 30 --- 39 - 30 --- 40 - 30 --- 41 - 30 --- 42 - 30 --- 43 - 30 --- 44 - 30 --- 45 - 30 --- 46 - 30 --- 47 - 38 <--x 31 - 38 <--x 37 - 39 <--x 31 - 39 <--x 32 - 40 <--x 32 - 40 <--x 37 - 42 <--x 33 - 42 <--x 37 - 43 <--x 33 - 43 <--x 34 - 44 <--x 34 - 44 <--x 37 - 45 <--x 34 - 45 <--x 35 - 46 <--x 35 - 46 <--x 37 - 47 <--x 31 - 47 <--x 35 - 48 --- 49 - 49 --- 50 - 49 --- 51 - 49 --- 52 - 49 --- 53 - 49 --- 54 - 49 --- 55 - 49 --- 56 - 49 ---- 58 - 49 --- 57 - 50 --- 59 - 50 --- 68 - 50 --- 69 - 50 x--> 66 - 51 --- 60 - 51 --- 70 - 51 --- 71 - 51 x--> 66 - 52 --- 61 - 52 --- 72 - 52 --- 73 - 52 x--> 66 - 53 --- 62 - 53 --- 74 - 53 --- 75 - 53 x--> 66 - 54 --- 63 - 54 --- 76 - 54 --- 77 - 54 x--> 66 - 55 --- 64 - 55 --- 78 - 55 --- 79 - 55 x--> 66 - 56 --- 65 - 56 --- 80 - 56 --- 81 - 56 x--> 66 - 58 --- 59 - 58 --- 60 - 58 --- 61 - 58 --- 62 - 58 --- 63 - 58 --- 64 - 58 --- 65 - 58 --- 66 - 58 --- 67 - 58 --- 68 - 58 --- 69 - 58 --- 70 - 58 --- 71 - 58 --- 72 - 58 --- 73 - 58 --- 74 - 58 --- 75 - 58 --- 76 - 58 --- 77 - 58 --- 78 - 58 --- 79 - 58 --- 80 - 58 --- 81 - 68 <--x 59 - 68 <--x 67 - 70 <--x 60 - 70 <--x 67 - 71 <--x 60 - 71 <--x 61 - 72 <--x 61 - 72 <--x 67 - 73 <--x 61 - 73 <--x 62 - 74 <--x 62 - 74 <--x 67 - 76 <--x 63 - 76 <--x 67 - 77 <--x 63 - 77 <--x 64 - 78 <--x 64 - 78 <--x 67 - 79 <--x 64 - 79 <--x 65 - 80 <--x 65 - 80 <--x 67 - 81 <--x 59 - 81 <--x 65 - 82 --- 83 - 83 --- 84 - 83 --- 85 - 83 --- 86 - 83 --- 87 - 83 --- 88 - 83 --- 89 - 83 --- 90 - 83 --- 91 - 83 --- 92 - 83 ---- 94 - 83 --- 93 - 84 --- 95 - 84 --- 105 - 84 --- 106 - 84 x--> 104 - 85 --- 96 - 85 --- 107 - 85 --- 108 - 85 x--> 104 - 86 --- 97 - 86 --- 109 - 86 --- 110 - 86 x--> 104 - 87 --- 98 - 87 --- 111 - 87 --- 112 - 87 x--> 104 - 88 --- 99 - 88 --- 113 - 88 --- 114 - 88 x--> 104 - 89 --- 100 - 89 --- 115 - 89 --- 116 - 89 x--> 104 - 90 --- 101 - 90 --- 117 - 90 --- 118 - 90 x--> 104 - 91 --- 102 - 91 --- 119 - 91 --- 120 - 91 x--> 104 - 94 --- 95 - 94 --- 96 - 94 --- 97 - 94 --- 98 - 94 --- 99 - 94 --- 100 - 94 --- 101 - 94 --- 102 - 94 --- 103 - 94 --- 104 - 94 --- 105 - 94 --- 106 - 94 --- 107 - 94 --- 108 - 94 --- 109 - 94 --- 110 - 94 --- 111 - 94 --- 112 - 94 --- 113 - 94 --- 114 - 94 --- 115 - 94 --- 116 - 94 --- 117 - 94 --- 118 - 94 --- 119 - 94 --- 120 - 101 --- 121 - 105 <--x 95 - 105 <--x 103 - 106 <--x 95 - 106 <--x 96 - 107 <--x 96 - 107 <--x 103 - 108 <--x 96 - 108 <--x 97 - 109 <--x 97 - 109 <--x 103 - 110 <--x 97 - 110 <--x 98 - 111 <--x 98 - 111 <--x 103 - 112 <--x 98 - 112 <--x 99 - 113 <--x 99 - 113 <--x 103 - 114 <--x 99 - 114 <--x 100 - 115 <--x 100 - 115 <--x 103 - 116 <--x 100 - 116 <--x 101 - 117 <--x 101 - 117 <--x 103 - 118 <--x 101 - 118 <--x 102 - 119 <--x 102 - 119 <--x 103 - 120 <--x 95 - 120 <--x 102 - 121 --- 122 - 121 --- 123 - 121 --- 124 - 121 --- 125 - 121 --- 126 - 121 ---- 128 - 121 --- 127 - 122 --- 129 - 122 --- 133 - 122 --- 134 - 122 <--x 101 - 123 --- 130 - 123 --- 135 - 123 --- 136 - 123 <--x 101 - 124 --- 131 - 124 --- 137 - 124 --- 138 - 124 <--x 101 - 125 --- 132 - 125 --- 139 - 125 --- 140 - 125 <--x 101 - 128 --- 129 - 128 --- 130 - 128 --- 131 - 128 --- 132 - 128 --- 133 - 128 --- 134 - 128 --- 135 - 128 --- 136 - 128 --- 137 - 128 --- 138 - 128 --- 139 - 128 --- 140 - 133 <--x 129 - 133 <--x 97 - 134 <--x 129 - 134 <--x 130 - 135 <--x 130 - 135 <--x 97 - 136 <--x 130 - 136 <--x 131 - 137 <--x 131 - 137 <--x 97 - 138 <--x 131 - 138 <--x 132 - 139 <--x 132 - 139 <--x 97 - 140 <--x 129 - 140 <--x 132 - 41 <--x 141 - 39 <--x 142 - 69 <--x 143 - 75 <--x 144 - 48 <--x 145 - 101 <--x 146 + 9 --- 18 + 9 --- 24 + 9 --- 27 + 9 --- 30 + 9 --- 60 + 10 --- 33 + 10 --- 34 + 10 --- 35 + 10 --- 36 + 10 --- 37 + 10 --- 57 + 10 ---- 61 + 11 --- 38 + 11 --- 39 + 11 --- 40 + 11 --- 41 + 11 --- 42 + 11 --- 43 + 11 --- 44 + 11 --- 58 + 11 ---- 62 + 12 --- 45 + 12 --- 46 + 12 --- 47 + 12 --- 48 + 12 --- 49 + 12 --- 50 + 12 --- 51 + 12 --- 52 + 12 --- 53 + 12 --- 54 + 12 ---- 63 + 16 --- 73 + 16 x--> 81 + 16 --- 101 + 16 --- 124 + 19 --- 71 + 19 x--> 81 + 19 --- 103 + 19 --- 127 + 21 --- 70 + 21 x--> 81 + 21 --- 102 + 21 --- 125 + 28 --- 72 + 28 x--> 81 + 28 --- 100 + 28 --- 126 + 33 --- 69 + 33 x--> 89 + 33 --- 97 + 33 --- 120 + 34 --- 67 + 34 x--> 89 + 34 --- 96 + 34 --- 122 + 35 --- 66 + 35 x--> 89 + 35 --- 99 + 35 --- 121 + 36 --- 68 + 36 x--> 89 + 36 --- 98 + 36 --- 123 + 37 --- 65 + 37 x--> 89 + 37 --- 95 + 37 --- 119 + 38 --- 85 + 38 x--> 91 + 38 --- 117 + 38 --- 137 + 39 --- 88 + 39 x--> 91 + 39 --- 114 + 39 --- 136 + 40 --- 87 + 40 x--> 91 + 40 --- 115 + 40 --- 139 + 41 --- 82 + 41 x--> 91 + 41 --- 113 + 41 --- 140 + 42 --- 86 + 42 x--> 91 + 42 --- 116 + 42 --- 141 + 43 --- 84 + 43 x--> 91 + 43 --- 112 + 43 --- 142 + 44 --- 83 + 44 x--> 91 + 44 --- 118 + 44 --- 138 + 45 --- 78 + 45 x--> 93 + 45 --- 109 + 45 --- 131 + 46 --- 77 + 46 x--> 93 + 46 --- 104 + 46 --- 130 + 47 --- 75 + 47 x--> 93 + 47 --- 111 + 47 --- 132 + 48 --- 79 + 48 x--> 93 + 48 --- 110 + 48 --- 134 + 49 --- 74 + 49 x--> 93 + 49 --- 105 + 49 --- 128 + 50 --- 80 + 50 x--> 93 + 50 --- 108 + 50 --- 133 + 51 --- 81 + 51 x--> 93 + 51 --- 106 + 51 --- 129 + 52 --- 76 + 52 x--> 93 + 52 --- 107 + 52 --- 135 + 61 --- 65 + 61 --- 66 + 61 --- 67 + 61 --- 68 + 61 --- 69 + 61 --- 89 + 61 --- 92 + 61 --- 95 + 61 --- 96 + 61 --- 97 + 61 --- 98 + 61 --- 99 + 61 --- 119 + 61 --- 120 + 61 --- 121 + 61 --- 122 + 61 --- 123 + 62 --- 82 + 62 --- 83 + 62 --- 84 + 62 --- 85 + 62 --- 86 + 62 --- 87 + 62 --- 88 + 62 --- 91 + 62 --- 94 + 62 --- 112 + 62 --- 113 + 62 --- 114 + 62 --- 115 + 62 --- 116 + 62 --- 117 + 62 --- 118 + 62 --- 136 + 62 --- 137 + 62 --- 138 + 62 --- 139 + 62 --- 140 + 62 --- 141 + 62 --- 142 + 63 --- 74 + 63 --- 75 + 63 --- 76 + 63 --- 77 + 63 --- 78 + 63 --- 79 + 63 --- 80 + 63 --- 81 + 63 --- 90 + 63 --- 93 + 63 --- 104 + 63 --- 105 + 63 --- 106 + 63 --- 107 + 63 --- 108 + 63 --- 109 + 63 --- 110 + 63 --- 111 + 63 --- 128 + 63 --- 129 + 63 --- 130 + 63 --- 131 + 63 --- 132 + 63 --- 133 + 63 --- 134 + 63 --- 135 + 64 --- 70 + 64 --- 71 + 64 --- 72 + 64 --- 73 + 64 --- 100 + 64 --- 101 + 64 --- 102 + 64 --- 103 + 64 --- 124 + 64 --- 125 + 64 --- 126 + 64 --- 127 + 95 <--x 65 + 119 <--x 65 + 123 <--x 65 + 99 <--x 66 + 121 <--x 66 + 96 <--x 67 + 120 <--x 67 + 98 <--x 68 + 121 <--x 68 + 123 <--x 68 + 97 <--x 69 + 119 <--x 69 + 120 <--x 69 + 102 <--x 70 + 125 <--x 70 + 127 <--x 70 + 103 <--x 71 + 124 <--x 71 + 127 <--x 71 + 100 <--x 72 + 125 <--x 72 + 126 <--x 72 + 101 <--x 73 + 124 <--x 73 + 126 <--x 73 + 105 <--x 74 + 128 <--x 74 + 134 <--x 74 + 100 <--x 75 + 101 <--x 75 + 102 <--x 75 + 103 <--x 75 + 111 <--x 75 + 130 <--x 75 + 132 <--x 75 + 107 <--x 76 + 129 <--x 76 + 135 <--x 76 + 104 <--x 77 + 130 <--x 77 + 131 <--x 77 + 109 <--x 78 + 131 <--x 78 + 135 <--x 78 + 110 <--x 79 + 132 <--x 79 + 134 <--x 79 + 108 <--x 80 + 128 <--x 80 + 133 <--x 80 + 106 <--x 81 + 129 <--x 81 + 133 <--x 81 + 113 <--x 82 + 139 <--x 82 + 118 <--x 83 + 138 <--x 83 + 142 <--x 83 + 112 <--x 84 + 141 <--x 84 + 142 <--x 84 + 117 <--x 85 + 138 <--x 85 + 116 <--x 86 + 141 <--x 86 + 115 <--x 87 + 136 <--x 87 + 139 <--x 87 + 114 <--x 88 + 136 <--x 88 + 104 <--x 90 + 105 <--x 90 + 106 <--x 90 + 107 <--x 90 + 108 <--x 90 + 109 <--x 90 + 110 <--x 90 + 111 <--x 90 + 95 <--x 92 + 96 <--x 92 + 97 <--x 92 + 98 <--x 92 + 99 <--x 92 + 112 <--x 94 + 113 <--x 94 + 114 <--x 94 + 115 <--x 94 + 116 <--x 94 + 117 <--x 94 + 118 <--x 94 + 120 <--x 144 + 122 <--x 143 + 137 <--x 145 + 140 <--x 146 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/food-service-spatula/ops.snap b/rust/kcl-lib/tests/kcl_samples/food-service-spatula/ops.snap index e683997e8..879129ed3 100644 --- a/rust/kcl-lib/tests/kcl_samples/food-service-spatula/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/food-service-spatula/ops.snap @@ -3,6 +3,215 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed food-service-spatula.kcl --- [ + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, { "labeledArgs": { "planeOrSolid": { @@ -29,79 +238,6 @@ description: Operations executed food-service-spatula.kcl }, "sourceRange": [] }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -113,79 +249,6 @@ description: Operations executed food-service-spatula.kcl }, "sourceRange": [] }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -197,79 +260,6 @@ description: Operations executed food-service-spatula.kcl }, "sourceRange": [] }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "tool": { @@ -425,6 +415,21 @@ description: Operations executed food-service-spatula.kcl }, "sourceRange": [] }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -455,21 +460,6 @@ description: Operations executed food-service-spatula.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -809,65 +799,6 @@ description: Operations executed food-service-spatula.kcl }, "sourceRange": [] }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "length": { @@ -899,5 +830,74 @@ description: Operations executed food-service-spatula.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/kcl_samples/french-press/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/french-press/artifact_commands.snap index 72c8fcc90..8a63f843b 100644 --- a/rust/kcl-lib/tests/kcl_samples/french-press/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/french-press/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands french-press.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands french-press.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -173,6 +173,14 @@ description: Artifact commands french-press.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -202,8 +210,108 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -219,30 +327,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -257,39 +347,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -304,18 +367,10 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -328,43 +383,6 @@ description: Artifact commands french-press.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -379,30 +397,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -444,13 +444,6 @@ description: Artifact commands french-press.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -464,6 +457,15 @@ description: Artifact commands french-press.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -471,6 +473,13 @@ description: Artifact commands french-press.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -826,6 +835,14 @@ description: Artifact commands french-press.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -837,8 +854,432 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -854,30 +1295,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -892,39 +1315,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -939,39 +1335,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -986,39 +1355,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1033,39 +1375,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1080,39 +1395,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1127,39 +1415,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1174,39 +1435,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1221,18 +1455,10 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1249,39 +1475,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1296,39 +1495,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1343,39 +1515,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1390,39 +1535,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1437,39 +1555,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1484,39 +1575,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1527,43 +1591,6 @@ description: Artifact commands french-press.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1578,30 +1605,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1662,6 +1671,14 @@ description: Artifact commands french-press.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1678,33 +1695,6 @@ description: Artifact commands french-press.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 52.197, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1734,8 +1724,36 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 52.197, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -1765,13 +1783,6 @@ description: Artifact commands french-press.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1780,6 +1791,40 @@ description: Artifact commands french-press.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1789,34 +1834,6 @@ description: Artifact commands french-press.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1831,9 +1848,10 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1848,13 +1866,6 @@ description: Artifact commands french-press.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1875,6 +1886,13 @@ description: Artifact commands french-press.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1979,176 +1997,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -1.27, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -2178,177 +2032,11 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -1.27, + "faces": null, + "opposite": "None" } }, { @@ -2366,7 +2054,8 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -2377,6 +2066,278 @@ description: Artifact commands french-press.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2390,7 +2351,7 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2399,17 +2360,7 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2428,39 +2379,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2475,39 +2399,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2522,9 +2419,130 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2568,13 +2586,6 @@ description: Artifact commands french-press.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2595,6 +2606,13 @@ description: Artifact commands french-press.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2705,6 +2723,14 @@ description: Artifact commands french-press.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2734,8 +2760,162 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -2751,30 +2931,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2789,39 +2951,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2836,39 +2971,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2883,18 +2991,10 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2911,39 +3011,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2954,43 +3027,6 @@ description: Artifact commands french-press.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3005,30 +3041,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3070,13 +3088,6 @@ description: Artifact commands french-press.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3097,6 +3108,13 @@ description: Artifact commands french-press.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3223,6 +3241,14 @@ description: Artifact commands french-press.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3252,8 +3278,189 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -3269,30 +3476,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3307,39 +3496,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3354,39 +3516,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3401,18 +3536,10 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3429,39 +3556,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3476,39 +3576,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3519,43 +3592,6 @@ description: Artifact commands french-press.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3570,30 +3606,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3633,6 +3651,14 @@ description: Artifact commands french-press.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3649,33 +3675,6 @@ description: Artifact commands french-press.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 49.911, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3701,6 +3700,60 @@ description: Artifact commands french-press.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 49.911, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3725,33 +3778,6 @@ description: Artifact commands french-press.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 3.8099999999999996, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3781,17 +3807,13 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 3.8099999999999996, + "y": 0.0, + "z": 0.0 + } } }, { @@ -3803,6 +3825,20 @@ description: Artifact commands french-press.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3830,6 +3866,14 @@ description: Artifact commands french-press.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3841,8 +3885,54 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -3858,30 +3948,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3896,18 +3968,10 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3924,28 +3988,8 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -3960,33 +4004,6 @@ description: Artifact commands french-press.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 43.18, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4016,8 +4033,27 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 43.18, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -4057,82 +4093,72 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -1.27, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -4162,83 +4188,11 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -1.27, + "faces": null, + "opposite": "None" } }, { @@ -4256,83 +4210,11 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -1.27, + "faces": null, + "opposite": "None" } }, { @@ -4350,83 +4232,11 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -1.27, + "faces": null, + "opposite": "None" } }, { @@ -4440,89 +4250,6 @@ description: Artifact commands french-press.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -4538,7 +4265,8 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -4549,6 +4277,326 @@ description: Artifact commands french-press.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4562,7 +4610,7 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -4571,17 +4619,52 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -4600,86 +4683,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -1.27, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4694,86 +4703,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -1.27, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4788,9 +4723,118 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -4805,33 +4849,6 @@ description: Artifact commands french-press.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 20.32, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4861,8 +4878,27 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 20.32, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -4902,82 +4938,24 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -1.27, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -5007,83 +4985,11 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -1.27, + "faces": null, + "opposite": "None" } }, { @@ -5097,89 +5003,6 @@ description: Artifact commands french-press.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -5195,7 +5018,8 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -5206,6 +5030,158 @@ description: Artifact commands french-press.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5219,7 +5195,7 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -5228,17 +5204,16 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -5257,9 +5232,70 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5287,6 +5323,14 @@ description: Artifact commands french-press.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5303,33 +5347,6 @@ description: Artifact commands french-press.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 56.007, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5359,8 +5376,27 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 56.007, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -5390,13 +5426,6 @@ description: Artifact commands french-press.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5405,6 +5434,40 @@ description: Artifact commands french-press.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5414,34 +5477,6 @@ description: Artifact commands french-press.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5456,9 +5491,10 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5515,13 +5551,6 @@ description: Artifact commands french-press.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5542,6 +5571,13 @@ description: Artifact commands french-press.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5679,6 +5715,14 @@ description: Artifact commands french-press.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5708,8 +5752,189 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -5725,30 +5950,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5763,39 +5970,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5810,39 +5990,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5857,18 +6010,10 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5885,39 +6030,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5932,39 +6050,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5975,43 +6066,6 @@ description: Artifact commands french-press.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6026,30 +6080,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6105,13 +6141,6 @@ description: Artifact commands french-press.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6125,6 +6154,15 @@ description: Artifact commands french-press.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -6132,6 +6170,13 @@ description: Artifact commands french-press.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6371,6 +6416,14 @@ description: Artifact commands french-press.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6382,8 +6435,324 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -6399,30 +6768,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6437,39 +6788,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6484,39 +6808,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6531,39 +6828,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6578,39 +6848,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6625,39 +6868,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6672,18 +6888,10 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6700,39 +6908,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6747,39 +6928,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6794,39 +6948,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6841,39 +6968,12 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6884,43 +6984,6 @@ description: Artifact commands french-press.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6935,73 +6998,10 @@ description: Artifact commands french-press.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/french-press/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/french-press/artifact_graph_flowchart.snap.md index edd8f514f..12263b640 100644 --- a/rust/kcl-lib/tests/kcl_samples/french-press/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/french-press/artifact_graph_flowchart.snap.md @@ -1,221 +1,181 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[265, 309, 0]"] - 3["Segment
[315, 379, 0]"] - 4["Segment
[385, 483, 0]"] - 5["Segment
[489, 606, 0]"] - 6["Segment
[612, 668, 0]"] - 7["Segment
[674, 681, 0]"] - 8[Solid2d] + subgraph path16 [Path] + 16["Path
[265, 309, 0]"] + 29["Segment
[315, 379, 0]"] + 30["Segment
[385, 483, 0]"] + 31["Segment
[489, 606, 0]"] + 32["Segment
[612, 668, 0]"] + 33["Segment
[674, 681, 0]"] + 101[Solid2d] + end + subgraph path17 [Path] + 17["Path
[971, 1015, 0]"] + 34["Segment
[1021, 1040, 0]"] + 35["Segment
[1046, 1080, 0]"] + 36["Segment
[1086, 1137, 0]"] + 37["Segment
[1143, 1194, 0]"] + 38["Segment
[1200, 1251, 0]"] + 39["Segment
[1257, 1315, 0]"] + 40["Segment
[1321, 1370, 0]"] + 41["Segment
[1376, 1416, 0]"] + 42["Segment
[1422, 1441, 0]"] + 43["Segment
[1447, 1500, 0]"] + 44["Segment
[1506, 1555, 0]"] + 45["Segment
[1561, 1631, 0]"] + 46["Segment
[1637, 1688, 0]"] + 47["Segment
[1694, 1764, 0]"] + 48["Segment
[1770, 1821, 0]"] + 49["Segment
[1827, 1883, 0]"] + 50["Segment
[1889, 1896, 0]"] + 97[Solid2d] end subgraph path18 [Path] - 18["Path
[971, 1015, 0]"] - 19["Segment
[1021, 1040, 0]"] - 20["Segment
[1046, 1080, 0]"] - 21["Segment
[1086, 1137, 0]"] - 22["Segment
[1143, 1194, 0]"] - 23["Segment
[1200, 1251, 0]"] - 24["Segment
[1257, 1315, 0]"] - 25["Segment
[1321, 1370, 0]"] - 26["Segment
[1376, 1416, 0]"] - 27["Segment
[1422, 1441, 0]"] - 28["Segment
[1447, 1500, 0]"] - 29["Segment
[1506, 1555, 0]"] - 30["Segment
[1561, 1631, 0]"] - 31["Segment
[1637, 1688, 0]"] - 32["Segment
[1694, 1764, 0]"] - 33["Segment
[1770, 1821, 0]"] - 34["Segment
[1827, 1883, 0]"] - 35["Segment
[1889, 1896, 0]"] - 36[Solid2d] + 18["Path
[2163, 2222, 0]"] + 51["Segment
[2163, 2222, 0]"] + 104[Solid2d] end - subgraph path89 [Path] - 89["Path
[2163, 2222, 0]"] - 90["Segment
[2163, 2222, 0]"] - 91[Solid2d] + subgraph path19 [Path] + 19["Path
[2328, 2358, 0]"] + 52["Segment
[2364, 2383, 0]"] + 53["Segment
[2389, 2439, 0]"] + 54["Segment
[2445, 2501, 0]"] + 55["Segment
[2507, 2514, 0]"] + 106[Solid2d] end - subgraph path98 [Path] - 98["Path
[2328, 2358, 0]"] - 99["Segment
[2364, 2383, 0]"] - 100["Segment
[2389, 2439, 0]"] - 101["Segment
[2445, 2501, 0]"] - 102["Segment
[2507, 2514, 0]"] + subgraph path20 [Path] + 20["Path
[2752, 2783, 0]"] + 56["Segment
[2789, 2834, 0]"] + 57["Segment
[2840, 2917, 0]"] + 58["Segment
[2923, 2962, 0]"] + 59["Segment
[2968, 3014, 0]"] + 60["Segment
[3020, 3045, 0]"] + 61["Segment
[3051, 3107, 0]"] + 62["Segment
[3113, 3120, 0]"] + 102[Solid2d] + end + subgraph path21 [Path] + 21["Path
[3200, 3227, 0]"] + 63["Segment
[3233, 3253, 0]"] + 64["Segment
[3259, 3302, 0]"] + 65["Segment
[3308, 3326, 0]"] + 66["Segment
[3332, 3352, 0]"] + 67["Segment
[3358, 3378, 0]"] + 68["Segment
[3384, 3424, 0]"] + 69["Segment
[3430, 3486, 0]"] + 70["Segment
[3492, 3499, 0]"] + 99[Solid2d] + end + subgraph path22 [Path] + 22["Path
[3603, 3662, 0]"] + 71["Segment
[3603, 3662, 0]"] 103[Solid2d] end - subgraph path117 [Path] - 117["Path
[2752, 2783, 0]"] - 118["Segment
[2789, 2834, 0]"] - 119["Segment
[2840, 2917, 0]"] - 120["Segment
[2923, 2962, 0]"] - 121["Segment
[2968, 3014, 0]"] - 122["Segment
[3020, 3045, 0]"] - 123["Segment
[3051, 3107, 0]"] - 124["Segment
[3113, 3120, 0]"] - 125[Solid2d] + subgraph path23 [Path] + 23["Path
[3686, 3723, 0]"] + 72["Segment
[3686, 3723, 0]"] + 98[Solid2d] end - subgraph path140 [Path] - 140["Path
[3200, 3227, 0]"] - 141["Segment
[3233, 3253, 0]"] - 142["Segment
[3259, 3302, 0]"] - 143["Segment
[3308, 3326, 0]"] - 144["Segment
[3332, 3352, 0]"] - 145["Segment
[3358, 3378, 0]"] - 146["Segment
[3384, 3424, 0]"] - 147["Segment
[3430, 3486, 0]"] - 148["Segment
[3492, 3499, 0]"] - 149[Solid2d] + subgraph path24 [Path] + 24["Path
[3867, 3905, 0]"] + 73["Segment
[3867, 3905, 0]"] + 100[Solid2d] end - subgraph path166 [Path] - 166["Path
[3603, 3662, 0]"] - 167["Segment
[3603, 3662, 0]"] - 168[Solid2d] + subgraph path25 [Path] + 25["Path
[4183, 4221, 0]"] + 74["Segment
[4183, 4221, 0]"] + 105[Solid2d] end - subgraph path169 [Path] - 169["Path
[3686, 3723, 0]"] - 170["Segment
[3686, 3723, 0]"] - 171[Solid2d] + subgraph path26 [Path] + 26["Path
[4473, 4525, 0]"] + 75["Segment
[4473, 4525, 0]"] + 108[Solid2d] end - subgraph path178 [Path] - 178["Path
[3867, 3905, 0]"] - 179["Segment
[3867, 3905, 0]"] - 180[Solid2d] + subgraph path27 [Path] + 27["Path
[4770, 4814, 0]"] + 76["Segment
[4820, 4860, 0]"] + 77["Segment
[4866, 4885, 0]"] + 78["Segment
[4891, 4910, 0]"] + 79["Segment
[4916, 4935, 0]"] + 80["Segment
[4941, 4966, 0]"] + 81["Segment
[4972, 5080, 0]"] + 82["Segment
[5086, 5142, 0]"] + 83["Segment
[5148, 5155, 0]"] + 107[Solid2d] end - subgraph path192 [Path] - 192["Path
[4183, 4221, 0]"] - 193["Segment
[4183, 4221, 0]"] - 194[Solid2d] - end - subgraph path203 [Path] - 203["Path
[4473, 4525, 0]"] - 204["Segment
[4473, 4525, 0]"] - 205[Solid2d] - end - subgraph path213 [Path] - 213["Path
[4770, 4814, 0]"] - 214["Segment
[4820, 4860, 0]"] - 215["Segment
[4866, 4885, 0]"] - 216["Segment
[4891, 4910, 0]"] - 217["Segment
[4916, 4935, 0]"] - 218["Segment
[4941, 4966, 0]"] - 219["Segment
[4972, 5080, 0]"] - 220["Segment
[5086, 5142, 0]"] - 221["Segment
[5148, 5155, 0]"] - 222[Solid2d] - end - subgraph path239 [Path] - 239["Path
[5285, 5314, 0]"] - 240["Segment
[5320, 5341, 0]"] - 241["Segment
[5347, 5387, 0]"] - 242["Segment
[5393, 5433, 0]"] - 243["Segment
[5439, 5480, 0]"] - 244["Segment
[5486, 5508, 0]"] - 245["Segment
[5514, 5535, 0]"] - 246["Segment
[5541, 5566, 0]"] - 247["Segment
[5572, 5612, 0]"] - 248["Segment
[5618, 5659, 0]"] - 249["Segment
[5665, 5706, 0]"] - 250["Segment
[5712, 5733, 0]"] - 251["Segment
[5739, 5795, 0]"] - 252["Segment
[5801, 5808, 0]"] - 253[Solid2d] + subgraph path28 [Path] + 28["Path
[5285, 5314, 0]"] + 84["Segment
[5320, 5341, 0]"] + 85["Segment
[5347, 5387, 0]"] + 86["Segment
[5393, 5433, 0]"] + 87["Segment
[5439, 5480, 0]"] + 88["Segment
[5486, 5508, 0]"] + 89["Segment
[5514, 5535, 0]"] + 90["Segment
[5541, 5566, 0]"] + 91["Segment
[5572, 5612, 0]"] + 92["Segment
[5618, 5659, 0]"] + 93["Segment
[5665, 5706, 0]"] + 94["Segment
[5712, 5733, 0]"] + 95["Segment
[5739, 5795, 0]"] + 96["Segment
[5801, 5808, 0]"] + 109[Solid2d] end 1["Plane
[242, 259, 0]"] - 9["Sweep Revolve
[687, 717, 0]"] - 10[Wall] - 11[Wall] - 12[Wall] - 13[Wall] - 14["SweepEdge Adjacent"] - 15["SweepEdge Adjacent"] - 16["SweepEdge Adjacent"] - 17["Plane
[942, 965, 0]"] - 37["Sweep Extrusion
[1902, 1924, 0]"] - 38[Wall] - 39[Wall] - 40[Wall] - 41[Wall] - 42[Wall] - 43[Wall] - 44[Wall] - 45[Wall] - 46[Wall] - 47[Wall] - 48[Wall] - 49[Wall] - 50[Wall] - 51[Wall] - 52[Wall] - 53[Wall] - 54["Cap Start"] - 55["Cap End"] - 56["SweepEdge Opposite"] - 57["SweepEdge Adjacent"] - 58["SweepEdge Opposite"] - 59["SweepEdge Adjacent"] - 60["SweepEdge Opposite"] - 61["SweepEdge Adjacent"] - 62["SweepEdge Opposite"] - 63["SweepEdge Adjacent"] - 64["SweepEdge Opposite"] - 65["SweepEdge Adjacent"] - 66["SweepEdge Opposite"] - 67["SweepEdge Adjacent"] - 68["SweepEdge Opposite"] - 69["SweepEdge Adjacent"] - 70["SweepEdge Opposite"] - 71["SweepEdge Adjacent"] - 72["SweepEdge Opposite"] - 73["SweepEdge Adjacent"] - 74["SweepEdge Opposite"] - 75["SweepEdge Adjacent"] - 76["SweepEdge Opposite"] - 77["SweepEdge Adjacent"] - 78["SweepEdge Opposite"] - 79["SweepEdge Adjacent"] - 80["SweepEdge Opposite"] - 81["SweepEdge Adjacent"] - 82["SweepEdge Opposite"] - 83["SweepEdge Adjacent"] - 84["SweepEdge Opposite"] - 85["SweepEdge Adjacent"] - 86["SweepEdge Opposite"] - 87["SweepEdge Adjacent"] - 88["Plane
[2129, 2156, 0]"] - 92["Sweep Extrusion
[2237, 2271, 0]"] - 93[Wall] - 94["Cap Start"] - 95["Cap End"] - 96["SweepEdge Opposite"] - 97["SweepEdge Adjacent"] - 104["Sweep Extrusion
[2663, 2698, 0]"] - 105[Wall] - 106[Wall] - 107[Wall] - 108["SweepEdge Opposite"] - 109["SweepEdge Adjacent"] - 110["SweepEdge Opposite"] - 111["SweepEdge Adjacent"] - 112["SweepEdge Opposite"] - 113["SweepEdge Adjacent"] + 2["Plane
[942, 965, 0]"] + 3["Plane
[2129, 2156, 0]"] + 4["Plane
[2729, 2746, 0]"] + 5["Plane
[3177, 3194, 0]"] + 6["Plane
[3566, 3596, 0]"] + 7["Plane
[4450, 4467, 0]"] + 8["Plane
[4747, 4764, 0]"] + 9["Plane
[5233, 5278, 0]"] + 10["StartSketchOnPlane
[3552, 3597, 0]"] + 11["StartSketchOnPlane
[2115, 2157, 0]"] + 12["StartSketchOnPlane
[5219, 5279, 0]"] + 13["StartSketchOnFace
[2285, 2322, 0]"] + 14["StartSketchOnFace
[3824, 3861, 0]"] + 15["StartSketchOnFace
[4140, 4177, 0]"] + 110["Sweep Revolve
[687, 717, 0]"] + 111["Sweep Extrusion
[1902, 1924, 0]"] + 112["Sweep Extrusion
[2237, 2271, 0]"] + 113["Sweep Extrusion
[2663, 2698, 0]"] 114["Sweep Extrusion
[2663, 2698, 0]"] 115["Sweep Extrusion
[2663, 2698, 0]"] - 116["Plane
[2729, 2746, 0]"] - 126["Sweep Revolve
[3126, 3143, 0]"] - 127[Wall] - 128[Wall] - 129[Wall] - 130[Wall] - 131[Wall] - 132[Wall] - 133["SweepEdge Adjacent"] - 134["SweepEdge Adjacent"] - 135["SweepEdge Adjacent"] - 136["SweepEdge Adjacent"] - 137["SweepEdge Adjacent"] - 138["SweepEdge Adjacent"] - 139["Plane
[3177, 3194, 0]"] - 150["Sweep Revolve
[3505, 3522, 0]"] + 116["Sweep Revolve
[3126, 3143, 0]"] + 117["Sweep Revolve
[3505, 3522, 0]"] + 118["Sweep Extrusion
[3739, 3773, 0]"] + 119["Sweep Extrusion
[4054, 4089, 0]"] + 120["Sweep Extrusion
[4054, 4089, 0]"] + 121["Sweep Extrusion
[4054, 4089, 0]"] + 122["Sweep Extrusion
[4054, 4089, 0]"] + 123["Sweep Extrusion
[4054, 4089, 0]"] + 124["Sweep Extrusion
[4054, 4089, 0]"] + 125["Sweep Extrusion
[4054, 4089, 0]"] + 126["Sweep Extrusion
[4054, 4089, 0]"] + 127["Sweep Extrusion
[4370, 4405, 0]"] + 128["Sweep Extrusion
[4370, 4405, 0]"] + 129["Sweep Extrusion
[4370, 4405, 0]"] + 130["Sweep Extrusion
[4370, 4405, 0]"] + 131["Sweep Extrusion
[4621, 4662, 0]"] + 132["Sweep Revolve
[5161, 5178, 0]"] + 133["Sweep Extrusion
[5822, 5867, 0]"] + 134[Wall] + 135[Wall] + 136[Wall] + 137[Wall] + 138[Wall] + 139[Wall] + 140[Wall] + 141[Wall] + 142[Wall] + 143[Wall] + 144[Wall] + 145[Wall] + 146[Wall] + 147[Wall] + 148[Wall] + 149[Wall] + 150[Wall] 151[Wall] 152[Wall] 153[Wall] @@ -223,783 +183,823 @@ flowchart LR 155[Wall] 156[Wall] 157[Wall] - 158["SweepEdge Adjacent"] - 159["SweepEdge Adjacent"] - 160["SweepEdge Adjacent"] - 161["SweepEdge Adjacent"] - 162["SweepEdge Adjacent"] - 163["SweepEdge Adjacent"] - 164["SweepEdge Adjacent"] - 165["Plane
[3566, 3596, 0]"] - 172["Sweep Extrusion
[3739, 3773, 0]"] + 158[Wall] + 159[Wall] + 160[Wall] + 161[Wall] + 162[Wall] + 163[Wall] + 164[Wall] + 165[Wall] + 166[Wall] + 167[Wall] + 168[Wall] + 169[Wall] + 170[Wall] + 171[Wall] + 172[Wall] 173[Wall] - 174["Cap Start"] - 175["Cap End"] - 176["SweepEdge Opposite"] - 177["SweepEdge Adjacent"] - 181["Sweep Extrusion
[4054, 4089, 0]"] + 174[Wall] + 175[Wall] + 176[Wall] + 177[Wall] + 178[Wall] + 179[Wall] + 180[Wall] + 181[Wall] 182[Wall] - 183["SweepEdge Opposite"] - 184["SweepEdge Adjacent"] - 185["Sweep Extrusion
[4054, 4089, 0]"] - 186["Sweep Extrusion
[4054, 4089, 0]"] - 187["Sweep Extrusion
[4054, 4089, 0]"] - 188["Sweep Extrusion
[4054, 4089, 0]"] - 189["Sweep Extrusion
[4054, 4089, 0]"] - 190["Sweep Extrusion
[4054, 4089, 0]"] - 191["Sweep Extrusion
[4054, 4089, 0]"] - 195["Sweep Extrusion
[4370, 4405, 0]"] - 196[Wall] - 197["SweepEdge Opposite"] - 198["SweepEdge Adjacent"] - 199["Sweep Extrusion
[4370, 4405, 0]"] - 200["Sweep Extrusion
[4370, 4405, 0]"] - 201["Sweep Extrusion
[4370, 4405, 0]"] - 202["Plane
[4450, 4467, 0]"] - 206["Sweep Extrusion
[4621, 4662, 0]"] - 207[Wall] - 208["Cap Start"] - 209["Cap End"] + 183[Wall] + 184[Wall] + 185[Wall] + 186[Wall] + 187[Wall] + 188[Wall] + 189[Wall] + 190[Wall] + 191[Wall] + 192[Wall] + 193[Wall] + 194["Cap Start"] + 195["Cap Start"] + 196["Cap Start"] + 197["Cap Start"] + 198["Cap Start"] + 199["Cap End"] + 200["Cap End"] + 201["Cap End"] + 202["Cap End"] + 203["Cap End"] + 204["SweepEdge Opposite"] + 205["SweepEdge Opposite"] + 206["SweepEdge Opposite"] + 207["SweepEdge Opposite"] + 208["SweepEdge Opposite"] + 209["SweepEdge Opposite"] 210["SweepEdge Opposite"] - 211["SweepEdge Adjacent"] - 212["Plane
[4747, 4764, 0]"] - 223["Sweep Revolve
[5161, 5178, 0]"] - 224[Wall] - 225[Wall] - 226[Wall] - 227[Wall] - 228[Wall] - 229[Wall] - 230[Wall] - 231["SweepEdge Adjacent"] - 232["SweepEdge Adjacent"] - 233["SweepEdge Adjacent"] - 234["SweepEdge Adjacent"] - 235["SweepEdge Adjacent"] - 236["SweepEdge Adjacent"] - 237["SweepEdge Adjacent"] - 238["Plane
[5233, 5278, 0]"] - 254["Sweep Extrusion
[5822, 5867, 0]"] - 255[Wall] - 256[Wall] - 257[Wall] - 258[Wall] - 259[Wall] - 260[Wall] - 261[Wall] - 262[Wall] - 263[Wall] - 264[Wall] - 265[Wall] - 266[Wall] - 267["Cap Start"] - 268["Cap End"] - 269["SweepEdge Opposite"] + 211["SweepEdge Opposite"] + 212["SweepEdge Opposite"] + 213["SweepEdge Opposite"] + 214["SweepEdge Opposite"] + 215["SweepEdge Opposite"] + 216["SweepEdge Opposite"] + 217["SweepEdge Opposite"] + 218["SweepEdge Opposite"] + 219["SweepEdge Opposite"] + 220["SweepEdge Opposite"] + 221["SweepEdge Opposite"] + 222["SweepEdge Opposite"] + 223["SweepEdge Opposite"] + 224["SweepEdge Opposite"] + 225["SweepEdge Opposite"] + 226["SweepEdge Opposite"] + 227["SweepEdge Opposite"] + 228["SweepEdge Opposite"] + 229["SweepEdge Opposite"] + 230["SweepEdge Opposite"] + 231["SweepEdge Opposite"] + 232["SweepEdge Opposite"] + 233["SweepEdge Opposite"] + 234["SweepEdge Opposite"] + 235["SweepEdge Opposite"] + 236["SweepEdge Opposite"] + 237["SweepEdge Opposite"] + 238["SweepEdge Opposite"] + 239["SweepEdge Opposite"] + 240["SweepEdge Adjacent"] + 241["SweepEdge Adjacent"] + 242["SweepEdge Adjacent"] + 243["SweepEdge Adjacent"] + 244["SweepEdge Adjacent"] + 245["SweepEdge Adjacent"] + 246["SweepEdge Adjacent"] + 247["SweepEdge Adjacent"] + 248["SweepEdge Adjacent"] + 249["SweepEdge Adjacent"] + 250["SweepEdge Adjacent"] + 251["SweepEdge Adjacent"] + 252["SweepEdge Adjacent"] + 253["SweepEdge Adjacent"] + 254["SweepEdge Adjacent"] + 255["SweepEdge Adjacent"] + 256["SweepEdge Adjacent"] + 257["SweepEdge Adjacent"] + 258["SweepEdge Adjacent"] + 259["SweepEdge Adjacent"] + 260["SweepEdge Adjacent"] + 261["SweepEdge Adjacent"] + 262["SweepEdge Adjacent"] + 263["SweepEdge Adjacent"] + 264["SweepEdge Adjacent"] + 265["SweepEdge Adjacent"] + 266["SweepEdge Adjacent"] + 267["SweepEdge Adjacent"] + 268["SweepEdge Adjacent"] + 269["SweepEdge Adjacent"] 270["SweepEdge Adjacent"] - 271["SweepEdge Opposite"] + 271["SweepEdge Adjacent"] 272["SweepEdge Adjacent"] - 273["SweepEdge Opposite"] + 273["SweepEdge Adjacent"] 274["SweepEdge Adjacent"] - 275["SweepEdge Opposite"] + 275["SweepEdge Adjacent"] 276["SweepEdge Adjacent"] - 277["SweepEdge Opposite"] + 277["SweepEdge Adjacent"] 278["SweepEdge Adjacent"] - 279["SweepEdge Opposite"] + 279["SweepEdge Adjacent"] 280["SweepEdge Adjacent"] - 281["SweepEdge Opposite"] + 281["SweepEdge Adjacent"] 282["SweepEdge Adjacent"] - 283["SweepEdge Opposite"] + 283["SweepEdge Adjacent"] 284["SweepEdge Adjacent"] - 285["SweepEdge Opposite"] + 285["SweepEdge Adjacent"] 286["SweepEdge Adjacent"] - 287["SweepEdge Opposite"] + 287["SweepEdge Adjacent"] 288["SweepEdge Adjacent"] - 289["SweepEdge Opposite"] + 289["SweepEdge Adjacent"] 290["SweepEdge Adjacent"] - 291["SweepEdge Opposite"] + 291["SweepEdge Adjacent"] 292["SweepEdge Adjacent"] - 293["StartSketchOnPlane
[2115, 2157, 0]"] - 294["StartSketchOnFace
[2285, 2322, 0]"] - 295["StartSketchOnPlane
[3552, 3597, 0]"] - 296["StartSketchOnFace
[3824, 3861, 0]"] - 297["StartSketchOnFace
[4140, 4177, 0]"] - 298["StartSketchOnPlane
[5219, 5279, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 ---- 9 - 2 --- 8 - 3 --- 10 - 3 x--> 14 - 4 --- 11 - 4 --- 14 - 5 --- 12 - 5 --- 15 - 6 --- 13 - 6 --- 16 - 9 --- 10 - 9 --- 11 - 9 --- 12 - 9 --- 13 - 9 <--x 3 - 9 --- 14 - 9 <--x 4 - 9 <--x 5 - 9 --- 15 - 9 <--x 6 - 9 --- 16 - 14 <--x 10 - 14 <--x 11 - 15 <--x 12 - 15 <--x 13 - 16 <--x 13 - 16 <--x 10 - 17 --- 18 - 18 --- 19 - 18 --- 20 - 18 --- 21 - 18 --- 22 - 18 --- 23 - 18 --- 24 - 18 --- 25 - 18 --- 26 - 18 --- 27 - 18 --- 28 - 18 --- 29 - 18 --- 30 - 18 --- 31 - 18 --- 32 - 18 --- 33 - 18 --- 34 - 18 --- 35 - 18 ---- 37 - 18 --- 36 + 293["SweepEdge Adjacent"] + 294["SweepEdge Adjacent"] + 295["SweepEdge Adjacent"] + 296["SweepEdge Adjacent"] + 297["SweepEdge Adjacent"] + 298["SweepEdge Adjacent"] + 1 --- 16 + 2 --- 17 + 3 <--x 11 + 3 --- 18 + 4 --- 20 + 5 --- 21 + 6 <--x 10 + 6 --- 22 + 6 --- 23 + 7 --- 26 + 8 --- 27 + 9 <--x 12 + 9 --- 28 + 203 x--> 13 + 201 x--> 14 + 201 x--> 15 + 16 --- 29 + 16 --- 30 + 16 --- 31 + 16 --- 32 + 16 --- 33 + 16 --- 101 + 16 ---- 110 + 17 --- 34 + 17 --- 35 + 17 --- 36 + 17 --- 37 + 17 --- 38 + 17 --- 39 + 17 --- 40 + 17 --- 41 + 17 --- 42 + 17 --- 43 + 17 --- 44 + 17 --- 45 + 17 --- 46 + 17 --- 47 + 17 --- 48 + 17 --- 49 + 17 --- 50 + 17 --- 97 + 17 ---- 111 + 18 --- 51 + 18 --- 104 + 18 ---- 112 + 19 --- 52 19 --- 53 - 19 --- 86 - 19 --- 87 - 19 x--> 54 - 20 --- 52 - 20 --- 84 - 20 --- 85 - 20 x--> 54 - 21 --- 51 - 21 --- 82 - 21 --- 83 - 21 x--> 54 - 22 --- 50 - 22 --- 80 - 22 --- 81 - 22 x--> 54 - 23 --- 49 - 23 --- 78 - 23 --- 79 - 23 x--> 54 - 24 --- 48 - 24 --- 76 - 24 --- 77 - 24 x--> 54 - 25 --- 47 + 19 --- 54 + 19 --- 55 + 19 --- 106 + 19 ---- 114 + 203 --- 19 + 20 --- 56 + 20 --- 57 + 20 --- 58 + 20 --- 59 + 20 --- 60 + 20 --- 61 + 20 --- 62 + 20 --- 102 + 20 ---- 116 + 21 --- 63 + 21 --- 64 + 21 --- 65 + 21 --- 66 + 21 --- 67 + 21 --- 68 + 21 --- 69 + 21 --- 70 + 21 --- 99 + 21 ---- 117 + 22 --- 71 + 22 --- 103 + 22 ---- 118 + 23 --- 72 + 23 --- 98 + 24 --- 73 + 24 --- 100 + 24 ---- 121 + 201 --- 24 25 --- 74 - 25 --- 75 - 25 x--> 54 - 26 --- 46 - 26 --- 72 - 26 --- 73 - 26 x--> 54 - 27 --- 45 - 27 --- 70 - 27 --- 71 - 27 x--> 54 - 28 --- 44 - 28 --- 68 - 28 --- 69 - 28 x--> 54 - 29 --- 43 - 29 --- 66 - 29 --- 67 - 29 x--> 54 - 30 --- 42 - 30 --- 64 - 30 --- 65 - 30 x--> 54 - 31 --- 41 - 31 --- 62 - 31 --- 63 - 31 x--> 54 - 32 --- 40 - 32 --- 60 - 32 --- 61 - 32 x--> 54 - 33 --- 39 - 33 --- 58 - 33 --- 59 - 33 x--> 54 - 34 --- 38 - 34 --- 56 - 34 --- 57 - 34 x--> 54 - 37 --- 38 - 37 --- 39 - 37 --- 40 - 37 --- 41 - 37 --- 42 - 37 --- 43 - 37 --- 44 - 37 --- 45 - 37 --- 46 - 37 --- 47 - 37 --- 48 - 37 --- 49 - 37 --- 50 - 37 --- 51 - 37 --- 52 - 37 --- 53 - 37 --- 54 - 37 --- 55 - 37 --- 56 - 37 --- 57 - 37 --- 58 - 37 --- 59 - 37 --- 60 - 37 --- 61 - 37 --- 62 - 37 --- 63 - 37 --- 64 - 37 --- 65 - 37 --- 66 - 37 --- 67 - 37 --- 68 - 37 --- 69 - 37 --- 70 - 37 --- 71 - 37 --- 72 - 37 --- 73 - 37 --- 74 - 37 --- 75 - 37 --- 76 - 37 --- 77 - 37 --- 78 - 37 --- 79 - 37 --- 80 - 37 --- 81 - 37 --- 82 - 37 --- 83 - 37 --- 84 - 37 --- 85 - 37 --- 86 - 37 --- 87 - 56 <--x 38 - 56 <--x 55 - 57 <--x 38 - 57 <--x 39 - 58 <--x 39 - 58 <--x 55 - 59 <--x 39 - 59 <--x 40 - 60 <--x 40 - 60 <--x 55 - 61 <--x 40 - 61 <--x 41 - 62 <--x 41 - 62 <--x 55 - 63 <--x 41 - 63 <--x 42 - 64 <--x 42 - 64 <--x 55 - 65 <--x 42 - 65 <--x 43 - 66 <--x 43 - 66 <--x 55 - 67 <--x 43 - 67 <--x 44 - 68 <--x 44 - 68 <--x 55 - 69 <--x 44 - 69 <--x 45 - 70 <--x 45 - 70 <--x 55 - 71 <--x 45 - 71 <--x 46 - 72 <--x 46 - 72 <--x 55 - 73 <--x 46 - 73 <--x 47 - 74 <--x 47 - 74 <--x 55 - 75 <--x 47 - 75 <--x 48 - 76 <--x 48 - 76 <--x 55 - 77 <--x 48 - 77 <--x 49 - 78 <--x 49 - 78 <--x 55 - 79 <--x 49 - 79 <--x 50 - 80 <--x 50 - 80 <--x 55 - 81 <--x 50 - 81 <--x 51 - 82 <--x 51 - 82 <--x 55 - 83 <--x 51 - 83 <--x 52 - 84 <--x 52 - 84 <--x 55 - 85 <--x 52 - 85 <--x 53 - 86 <--x 53 - 86 <--x 55 - 87 <--x 38 - 87 <--x 53 - 88 --- 89 - 89 --- 90 - 89 ---- 92 - 89 --- 91 - 90 --- 93 - 90 --- 96 - 90 --- 97 - 90 x--> 94 - 92 --- 93 - 92 --- 94 - 92 --- 95 - 92 --- 96 - 92 --- 97 - 95 --- 98 - 96 <--x 93 - 96 <--x 95 - 97 <--x 93 - 98 --- 99 - 98 --- 100 - 98 --- 101 - 98 --- 102 - 98 ---- 104 - 98 --- 103 - 99 --- 107 - 99 --- 112 - 99 --- 113 - 99 <--x 95 - 100 --- 106 - 100 --- 110 - 100 --- 111 - 100 <--x 95 - 101 --- 105 - 101 --- 108 - 101 --- 109 - 101 <--x 95 - 104 --- 105 - 104 --- 106 - 104 --- 107 - 104 --- 108 - 104 --- 109 - 104 --- 110 - 104 --- 111 - 104 --- 112 - 104 --- 113 - 108 <--x 105 - 108 <--x 94 - 109 <--x 105 - 109 <--x 107 - 110 <--x 106 - 110 <--x 94 - 111 <--x 105 - 111 <--x 106 - 112 <--x 107 - 112 <--x 94 - 113 <--x 106 - 113 <--x 107 - 116 --- 117 - 117 --- 118 - 117 --- 119 - 117 --- 120 - 117 --- 121 - 117 --- 122 - 117 --- 123 - 117 --- 124 - 117 ---- 126 - 117 --- 125 - 118 --- 127 - 118 --- 133 - 119 --- 128 - 119 --- 134 - 120 --- 129 - 120 --- 135 - 121 --- 130 - 121 --- 136 - 122 --- 131 - 122 --- 137 - 123 --- 132 - 123 --- 138 - 126 --- 127 - 126 --- 128 - 126 --- 129 - 126 --- 130 - 126 --- 131 - 126 --- 132 - 126 <--x 118 - 126 --- 133 - 126 <--x 119 - 126 --- 134 - 126 <--x 120 - 126 --- 135 - 126 <--x 121 - 126 --- 136 - 126 <--x 122 - 126 --- 137 - 126 <--x 123 - 126 --- 138 - 133 <--x 127 - 133 <--x 128 - 134 <--x 128 - 134 <--x 129 - 135 <--x 129 - 135 <--x 130 - 136 <--x 130 - 136 <--x 131 - 137 <--x 131 - 137 <--x 132 - 138 <--x 132 - 138 <--x 127 - 139 --- 140 - 140 --- 141 - 140 --- 142 - 140 --- 143 - 140 --- 144 - 140 --- 145 - 140 --- 146 - 140 --- 147 - 140 --- 148 - 140 ---- 150 - 140 --- 149 - 141 --- 151 - 141 --- 158 - 142 --- 152 - 142 --- 159 - 143 --- 153 - 143 --- 160 - 144 --- 154 - 144 --- 161 - 145 --- 155 - 145 --- 162 - 146 --- 156 - 146 --- 163 - 147 --- 157 - 147 --- 164 - 150 --- 151 - 150 --- 152 - 150 --- 153 - 150 --- 154 - 150 --- 155 - 150 --- 156 - 150 --- 157 - 150 <--x 141 - 150 --- 158 - 150 <--x 142 - 150 --- 159 - 150 <--x 143 - 150 --- 160 - 150 <--x 144 - 150 --- 161 - 150 <--x 145 - 150 --- 162 - 150 <--x 146 - 150 --- 163 - 150 <--x 147 - 150 --- 164 - 158 <--x 151 - 158 <--x 152 - 159 <--x 152 - 159 <--x 153 - 160 <--x 153 - 160 <--x 154 - 161 <--x 154 - 161 <--x 155 - 162 <--x 155 - 162 <--x 156 - 163 <--x 156 - 163 <--x 157 - 164 <--x 157 - 164 <--x 151 - 165 --- 166 - 165 --- 169 - 166 --- 167 - 166 ---- 172 - 166 --- 168 - 167 --- 173 - 167 --- 176 - 167 --- 177 - 167 x--> 174 - 169 --- 170 - 169 --- 171 - 172 --- 173 - 172 --- 174 - 172 --- 175 - 172 --- 176 - 172 --- 177 - 175 --- 178 - 175 --- 192 - 176 <--x 173 - 176 <--x 175 - 177 <--x 173 - 178 --- 179 - 178 ---- 181 - 178 --- 180 - 179 --- 182 - 179 --- 183 - 179 --- 184 - 179 <--x 175 - 181 --- 182 - 181 --- 183 - 181 --- 184 - 183 <--x 182 - 183 <--x 174 - 184 <--x 182 - 192 --- 193 - 192 ---- 195 - 192 --- 194 - 193 --- 196 - 193 --- 197 - 193 --- 198 - 193 <--x 175 - 195 --- 196 - 195 --- 197 - 195 --- 198 - 197 <--x 196 - 197 <--x 174 - 198 <--x 196 - 202 --- 203 - 203 --- 204 - 203 ---- 206 - 203 --- 205 - 204 --- 207 - 204 --- 210 - 204 --- 211 - 204 x--> 208 - 206 --- 207 - 206 --- 208 - 206 --- 209 - 206 --- 210 - 206 --- 211 - 210 <--x 207 - 210 <--x 209 - 211 <--x 207 - 212 --- 213 - 213 --- 214 - 213 --- 215 - 213 --- 216 - 213 --- 217 - 213 --- 218 - 213 --- 219 - 213 --- 220 - 213 --- 221 - 213 ---- 223 - 213 --- 222 - 214 --- 224 - 214 --- 231 - 215 --- 225 - 215 --- 232 - 216 --- 226 - 216 --- 233 - 217 --- 227 - 217 --- 234 - 218 --- 228 - 218 --- 235 - 219 --- 229 - 219 --- 236 - 220 --- 230 - 220 --- 237 - 223 --- 224 - 223 --- 225 - 223 --- 226 - 223 --- 227 - 223 --- 228 - 223 --- 229 - 223 --- 230 - 223 <--x 214 - 223 --- 231 - 223 <--x 215 - 223 --- 232 - 223 <--x 216 - 223 --- 233 - 223 <--x 217 - 223 --- 234 - 223 <--x 218 - 223 --- 235 - 223 <--x 219 - 223 --- 236 - 223 <--x 220 - 223 --- 237 - 231 <--x 224 - 231 <--x 225 - 232 <--x 225 - 232 <--x 226 - 233 <--x 226 - 233 <--x 227 - 234 <--x 227 - 234 <--x 228 - 235 <--x 228 - 235 <--x 229 - 236 <--x 229 - 236 <--x 230 - 237 <--x 230 - 237 <--x 224 - 238 --- 239 - 239 --- 240 - 239 --- 241 - 239 --- 242 - 239 --- 243 - 239 --- 244 - 239 --- 245 - 239 --- 246 - 239 --- 247 - 239 --- 248 - 239 --- 249 - 239 --- 250 - 239 --- 251 - 239 --- 252 - 239 ---- 254 - 239 --- 253 - 240 --- 266 - 240 --- 291 - 240 --- 292 - 240 x--> 268 - 241 --- 265 - 241 --- 289 - 241 --- 290 - 241 x--> 268 - 242 --- 264 - 242 --- 287 - 242 --- 288 - 242 x--> 268 - 243 --- 263 - 243 --- 285 - 243 --- 286 - 243 x--> 268 - 244 --- 262 - 244 --- 283 - 244 --- 284 - 244 x--> 268 - 245 --- 261 - 245 --- 281 - 245 --- 282 - 245 x--> 268 - 246 --- 260 - 246 --- 279 - 246 --- 280 - 246 x--> 268 - 247 --- 259 - 247 --- 277 - 247 --- 278 - 247 x--> 268 - 248 --- 258 - 248 --- 275 - 248 --- 276 - 248 x--> 268 - 249 --- 257 - 249 --- 273 - 249 --- 274 - 249 x--> 268 - 250 --- 256 - 250 --- 271 - 250 --- 272 - 250 x--> 268 - 251 --- 255 - 251 --- 269 - 251 --- 270 - 251 x--> 268 - 254 --- 255 - 254 --- 256 - 254 --- 257 - 254 --- 258 - 254 --- 259 - 254 --- 260 - 254 --- 261 - 254 --- 262 - 254 --- 263 - 254 --- 264 - 254 --- 265 - 254 --- 266 - 254 --- 267 - 254 --- 268 - 254 --- 269 - 254 --- 270 - 254 --- 271 - 254 --- 272 - 254 --- 273 - 254 --- 274 - 254 --- 275 - 254 --- 276 - 254 --- 277 - 254 --- 278 - 254 --- 279 - 254 --- 280 - 254 --- 281 - 254 --- 282 - 254 --- 283 - 254 --- 284 - 254 --- 285 - 254 --- 286 - 254 --- 287 - 254 --- 288 - 254 --- 289 - 254 --- 290 - 254 --- 291 - 254 --- 292 - 269 <--x 255 - 269 <--x 267 - 270 <--x 255 - 270 <--x 266 - 271 <--x 256 - 271 <--x 267 - 272 <--x 255 - 272 <--x 256 - 273 <--x 257 - 273 <--x 267 - 274 <--x 256 - 274 <--x 257 - 275 <--x 258 - 275 <--x 267 - 276 <--x 257 - 276 <--x 258 - 277 <--x 259 - 277 <--x 267 - 278 <--x 258 - 278 <--x 259 - 279 <--x 260 - 279 <--x 267 - 280 <--x 259 - 280 <--x 260 - 281 <--x 261 - 281 <--x 267 - 282 <--x 260 - 282 <--x 261 - 283 <--x 262 - 283 <--x 267 - 284 <--x 261 - 284 <--x 262 - 285 <--x 263 - 285 <--x 267 - 286 <--x 262 - 286 <--x 263 - 287 <--x 264 - 287 <--x 267 - 288 <--x 263 - 288 <--x 264 - 289 <--x 265 - 289 <--x 267 - 290 <--x 264 - 290 <--x 265 - 291 <--x 266 - 291 <--x 267 - 292 <--x 265 - 292 <--x 266 - 88 <--x 293 - 95 <--x 294 - 165 <--x 295 - 175 <--x 296 - 175 <--x 297 - 238 <--x 298 + 25 --- 105 + 25 ---- 128 + 201 --- 25 + 26 --- 75 + 26 --- 108 + 26 ---- 131 + 27 --- 76 + 27 --- 77 + 27 --- 78 + 27 --- 79 + 27 --- 80 + 27 --- 81 + 27 --- 82 + 27 --- 83 + 27 --- 107 + 27 ---- 132 + 28 --- 84 + 28 --- 85 + 28 --- 86 + 28 --- 87 + 28 --- 88 + 28 --- 89 + 28 --- 90 + 28 --- 91 + 28 --- 92 + 28 --- 93 + 28 --- 94 + 28 --- 95 + 28 --- 96 + 28 --- 109 + 28 ---- 133 + 110 <--x 29 + 29 --- 144 + 29 x--> 247 + 110 <--x 30 + 30 --- 142 + 30 --- 247 + 110 <--x 31 + 31 --- 141 + 31 --- 249 + 110 <--x 32 + 32 --- 143 + 32 --- 248 + 34 --- 185 + 34 x--> 197 + 34 --- 231 + 34 --- 293 + 35 --- 181 + 35 x--> 197 + 35 --- 235 + 35 --- 284 + 36 --- 186 + 36 x--> 197 + 36 --- 226 + 36 --- 286 + 37 --- 189 + 37 x--> 197 + 37 --- 232 + 37 --- 294 + 38 --- 192 + 38 x--> 197 + 38 --- 233 + 38 --- 292 + 39 --- 179 + 39 x--> 197 + 39 --- 234 + 39 --- 283 + 40 --- 190 + 40 x--> 197 + 40 --- 238 + 40 --- 297 + 41 --- 184 + 41 x--> 197 + 41 --- 225 + 41 --- 290 + 42 --- 183 + 42 x--> 197 + 42 --- 237 + 42 --- 288 + 43 --- 191 + 43 x--> 197 + 43 --- 228 + 43 --- 291 + 44 --- 188 + 44 x--> 197 + 44 --- 230 + 44 --- 285 + 45 --- 177 + 45 x--> 197 + 45 --- 227 + 45 --- 289 + 46 --- 180 + 46 x--> 197 + 46 --- 224 + 46 --- 282 + 47 --- 187 + 47 x--> 197 + 47 --- 229 + 47 --- 295 + 48 --- 178 + 48 x--> 197 + 48 --- 223 + 48 --- 287 + 49 --- 182 + 49 x--> 197 + 49 --- 236 + 49 --- 296 + 51 --- 193 + 51 x--> 198 + 51 --- 239 + 51 --- 298 + 52 --- 175 + 52 x--> 203 + 52 --- 222 + 52 --- 281 + 53 --- 174 + 53 x--> 203 + 53 --- 220 + 53 --- 279 + 54 --- 176 + 54 x--> 203 + 54 --- 221 + 54 --- 280 + 116 <--x 56 + 56 --- 167 + 56 --- 274 + 116 <--x 57 + 57 --- 168 + 57 --- 277 + 116 <--x 58 + 58 --- 172 + 58 --- 276 + 116 <--x 59 + 59 --- 171 + 59 --- 275 + 116 <--x 60 + 60 --- 169 + 60 --- 272 + 116 <--x 61 + 61 --- 170 + 61 --- 273 + 117 <--x 63 + 63 --- 136 + 63 --- 246 + 117 <--x 64 + 64 --- 135 + 64 --- 240 + 117 <--x 65 + 65 --- 137 + 65 --- 242 + 117 <--x 66 + 66 --- 140 + 66 --- 245 + 117 <--x 67 + 67 --- 139 + 67 --- 244 + 117 <--x 68 + 68 --- 134 + 68 --- 243 + 117 <--x 69 + 69 --- 138 + 69 --- 241 + 71 --- 173 + 71 x--> 196 + 71 --- 219 + 71 --- 278 + 73 --- 146 + 73 x--> 201 + 73 --- 205 + 73 --- 251 + 74 --- 145 + 74 x--> 201 + 74 --- 204 + 74 --- 250 + 75 --- 147 + 75 x--> 194 + 75 --- 206 + 75 --- 252 + 132 <--x 76 + 76 --- 162 + 76 --- 271 + 132 <--x 77 + 77 --- 163 + 77 --- 270 + 132 <--x 78 + 78 --- 165 + 78 --- 268 + 132 <--x 79 + 79 --- 161 + 79 --- 269 + 132 <--x 80 + 80 --- 160 + 80 --- 265 + 132 <--x 81 + 81 --- 166 + 81 --- 266 + 132 <--x 82 + 82 --- 164 + 82 --- 267 + 84 --- 159 + 84 x--> 200 + 84 --- 217 + 84 --- 263 + 85 --- 158 + 85 x--> 200 + 85 --- 211 + 85 --- 255 + 86 --- 151 + 86 x--> 200 + 86 --- 213 + 86 --- 253 + 87 --- 149 + 87 x--> 200 + 87 --- 214 + 87 --- 260 + 88 --- 153 + 88 x--> 200 + 88 --- 215 + 88 --- 259 + 89 --- 157 + 89 x--> 200 + 89 --- 218 + 89 --- 258 + 90 --- 150 + 90 x--> 200 + 90 --- 207 + 90 --- 264 + 91 --- 152 + 91 x--> 200 + 91 --- 216 + 91 --- 261 + 92 --- 154 + 92 x--> 200 + 92 --- 212 + 92 --- 254 + 93 --- 156 + 93 x--> 200 + 93 --- 210 + 93 --- 262 + 94 --- 148 + 94 x--> 200 + 94 --- 209 + 94 --- 256 + 95 --- 155 + 95 x--> 200 + 95 --- 208 + 95 --- 257 + 110 --- 141 + 110 --- 142 + 110 --- 143 + 110 --- 144 + 110 --- 247 + 110 --- 248 + 110 --- 249 + 111 --- 177 + 111 --- 178 + 111 --- 179 + 111 --- 180 + 111 --- 181 + 111 --- 182 + 111 --- 183 + 111 --- 184 + 111 --- 185 + 111 --- 186 + 111 --- 187 + 111 --- 188 + 111 --- 189 + 111 --- 190 + 111 --- 191 + 111 --- 192 + 111 --- 197 + 111 --- 202 + 111 --- 223 + 111 --- 224 + 111 --- 225 + 111 --- 226 + 111 --- 227 + 111 --- 228 + 111 --- 229 + 111 --- 230 + 111 --- 231 + 111 --- 232 + 111 --- 233 + 111 --- 234 + 111 --- 235 + 111 --- 236 + 111 --- 237 + 111 --- 238 + 111 --- 282 + 111 --- 283 + 111 --- 284 + 111 --- 285 + 111 --- 286 + 111 --- 287 + 111 --- 288 + 111 --- 289 + 111 --- 290 + 111 --- 291 + 111 --- 292 + 111 --- 293 + 111 --- 294 + 111 --- 295 + 111 --- 296 + 111 --- 297 + 112 --- 193 + 112 --- 198 + 112 --- 203 + 112 --- 239 + 112 --- 298 + 114 --- 174 + 114 --- 175 + 114 --- 176 + 114 --- 220 + 114 --- 221 + 114 --- 222 + 114 --- 279 + 114 --- 280 + 114 --- 281 + 116 --- 167 + 116 --- 168 + 116 --- 169 + 116 --- 170 + 116 --- 171 + 116 --- 172 + 116 --- 272 + 116 --- 273 + 116 --- 274 + 116 --- 275 + 116 --- 276 + 116 --- 277 + 117 --- 134 + 117 --- 135 + 117 --- 136 + 117 --- 137 + 117 --- 138 + 117 --- 139 + 117 --- 140 + 117 --- 240 + 117 --- 241 + 117 --- 242 + 117 --- 243 + 117 --- 244 + 117 --- 245 + 117 --- 246 + 118 --- 173 + 118 --- 196 + 118 --- 201 + 118 --- 219 + 118 --- 278 + 121 --- 146 + 121 --- 205 + 121 --- 251 + 128 --- 145 + 128 --- 204 + 128 --- 250 + 131 --- 147 + 131 --- 194 + 131 --- 199 + 131 --- 206 + 131 --- 252 + 132 --- 160 + 132 --- 161 + 132 --- 162 + 132 --- 163 + 132 --- 164 + 132 --- 165 + 132 --- 166 + 132 --- 265 + 132 --- 266 + 132 --- 267 + 132 --- 268 + 132 --- 269 + 132 --- 270 + 132 --- 271 + 133 --- 148 + 133 --- 149 + 133 --- 150 + 133 --- 151 + 133 --- 152 + 133 --- 153 + 133 --- 154 + 133 --- 155 + 133 --- 156 + 133 --- 157 + 133 --- 158 + 133 --- 159 + 133 --- 195 + 133 --- 200 + 133 --- 207 + 133 --- 208 + 133 --- 209 + 133 --- 210 + 133 --- 211 + 133 --- 212 + 133 --- 213 + 133 --- 214 + 133 --- 215 + 133 --- 216 + 133 --- 217 + 133 --- 218 + 133 --- 253 + 133 --- 254 + 133 --- 255 + 133 --- 256 + 133 --- 257 + 133 --- 258 + 133 --- 259 + 133 --- 260 + 133 --- 261 + 133 --- 262 + 133 --- 263 + 133 --- 264 + 243 <--x 134 + 244 <--x 134 + 240 <--x 135 + 246 <--x 135 + 241 <--x 136 + 246 <--x 136 + 240 <--x 137 + 242 <--x 137 + 241 <--x 138 + 243 <--x 138 + 244 <--x 139 + 245 <--x 139 + 242 <--x 140 + 245 <--x 140 + 249 <--x 141 + 247 <--x 142 + 248 <--x 143 + 249 <--x 143 + 247 <--x 144 + 248 <--x 144 + 204 <--x 145 + 250 <--x 145 + 205 <--x 146 + 251 <--x 146 + 206 <--x 147 + 252 <--x 147 + 209 <--x 148 + 256 <--x 148 + 262 <--x 148 + 214 <--x 149 + 253 <--x 149 + 260 <--x 149 + 207 <--x 150 + 258 <--x 150 + 264 <--x 150 + 213 <--x 151 + 253 <--x 151 + 255 <--x 151 + 216 <--x 152 + 261 <--x 152 + 264 <--x 152 + 215 <--x 153 + 259 <--x 153 + 260 <--x 153 + 212 <--x 154 + 254 <--x 154 + 261 <--x 154 + 208 <--x 155 + 256 <--x 155 + 257 <--x 155 + 210 <--x 156 + 254 <--x 156 + 262 <--x 156 + 218 <--x 157 + 258 <--x 157 + 259 <--x 157 + 211 <--x 158 + 255 <--x 158 + 263 <--x 158 + 217 <--x 159 + 257 <--x 159 + 263 <--x 159 + 265 <--x 160 + 269 <--x 160 + 268 <--x 161 + 269 <--x 161 + 267 <--x 162 + 271 <--x 162 + 270 <--x 163 + 271 <--x 163 + 266 <--x 164 + 267 <--x 164 + 268 <--x 165 + 270 <--x 165 + 265 <--x 166 + 266 <--x 166 + 273 <--x 167 + 274 <--x 167 + 274 <--x 168 + 277 <--x 168 + 272 <--x 169 + 275 <--x 169 + 272 <--x 170 + 273 <--x 170 + 275 <--x 171 + 276 <--x 171 + 276 <--x 172 + 277 <--x 172 + 219 <--x 173 + 278 <--x 173 + 220 <--x 174 + 279 <--x 174 + 281 <--x 174 + 222 <--x 175 + 280 <--x 175 + 281 <--x 175 + 221 <--x 176 + 279 <--x 176 + 280 <--x 176 + 227 <--x 177 + 282 <--x 177 + 289 <--x 177 + 223 <--x 178 + 287 <--x 178 + 296 <--x 178 + 234 <--x 179 + 283 <--x 179 + 297 <--x 179 + 224 <--x 180 + 282 <--x 180 + 295 <--x 180 + 235 <--x 181 + 284 <--x 181 + 286 <--x 181 + 236 <--x 182 + 293 <--x 182 + 296 <--x 182 + 237 <--x 183 + 288 <--x 183 + 291 <--x 183 + 225 <--x 184 + 288 <--x 184 + 290 <--x 184 + 231 <--x 185 + 284 <--x 185 + 293 <--x 185 + 226 <--x 186 + 286 <--x 186 + 294 <--x 186 + 229 <--x 187 + 287 <--x 187 + 295 <--x 187 + 230 <--x 188 + 285 <--x 188 + 289 <--x 188 + 232 <--x 189 + 292 <--x 189 + 294 <--x 189 + 238 <--x 190 + 290 <--x 190 + 297 <--x 190 + 228 <--x 191 + 285 <--x 191 + 291 <--x 191 + 233 <--x 192 + 283 <--x 192 + 292 <--x 192 + 239 <--x 193 + 298 <--x 193 + 207 <--x 195 + 208 <--x 195 + 209 <--x 195 + 210 <--x 195 + 211 <--x 195 + 212 <--x 195 + 213 <--x 195 + 214 <--x 195 + 215 <--x 195 + 216 <--x 195 + 217 <--x 195 + 218 <--x 195 + 204 <--x 196 + 205 <--x 196 + 220 <--x 198 + 221 <--x 198 + 222 <--x 198 + 206 <--x 199 + 219 <--x 201 + 223 <--x 202 + 224 <--x 202 + 225 <--x 202 + 226 <--x 202 + 227 <--x 202 + 228 <--x 202 + 229 <--x 202 + 230 <--x 202 + 231 <--x 202 + 232 <--x 202 + 233 <--x 202 + 234 <--x 202 + 235 <--x 202 + 236 <--x 202 + 237 <--x 202 + 238 <--x 202 + 239 <--x 203 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/french-press/ops.snap b/rust/kcl-lib/tests/kcl_samples/french-press/ops.snap index dc3c98eb6..5cf691a53 100644 --- a/rust/kcl-lib/tests/kcl_samples/french-press/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/french-press/ops.snap @@ -493,6 +493,21 @@ description: Operations executed french-press.kcl "sourceRange": [] } }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -523,21 +538,6 @@ description: Operations executed french-press.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -844,6 +844,21 @@ description: Operations executed french-press.kcl }, "sourceRange": [] }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -874,21 +889,6 @@ description: Operations executed french-press.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "tool": { @@ -1318,6 +1318,21 @@ description: Operations executed french-press.kcl }, "sourceRange": [] }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -1348,21 +1363,6 @@ description: Operations executed french-press.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { diff --git a/rust/kcl-lib/tests/kcl_samples/gear-rack/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/gear-rack/artifact_commands.snap index 11482f15b..623c1f61a 100644 --- a/rust/kcl-lib/tests/kcl_samples/gear-rack/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/gear-rack/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands gear-rack.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands gear-rack.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands gear-rack.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +375,6 @@ description: Artifact commands gear-rack.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,30 +389,12 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -436,13 +436,6 @@ description: Artifact commands gear-rack.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -463,6 +456,13 @@ description: Artifact commands gear-rack.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -617,6 +617,14 @@ description: Artifact commands gear-rack.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -628,8 +636,216 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -645,30 +861,12 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -683,39 +881,12 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -730,39 +901,12 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -777,39 +921,12 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -824,18 +941,10 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -852,39 +961,12 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -899,39 +981,12 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -942,43 +997,6 @@ description: Artifact commands gear-rack.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -993,30 +1011,12 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2867,13 +2867,6 @@ description: Artifact commands gear-rack.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2894,6 +2887,13 @@ description: Artifact commands gear-rack.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2980,6 +2980,14 @@ description: Artifact commands gear-rack.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2991,8 +2999,108 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -3008,30 +3116,12 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3046,39 +3136,12 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3093,18 +3156,10 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3117,43 +3172,6 @@ description: Artifact commands gear-rack.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3168,30 +3186,12 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3233,13 +3233,6 @@ description: Artifact commands gear-rack.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3260,6 +3253,13 @@ description: Artifact commands gear-rack.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3346,6 +3346,14 @@ description: Artifact commands gear-rack.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3357,8 +3365,108 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -3374,30 +3482,12 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3412,39 +3502,12 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3459,18 +3522,10 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3483,43 +3538,6 @@ description: Artifact commands gear-rack.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3534,28 +3552,10 @@ description: Artifact commands gear-rack.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gear-rack/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/gear-rack/artifact_graph_flowchart.snap.md index 4a1c6b63a..11a90fbc8 100644 --- a/rust/kcl-lib/tests/kcl_samples/gear-rack/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/gear-rack/artifact_graph_flowchart.snap.md @@ -1,227 +1,243 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[585, 620, 0]"] - 3["Segment
[626, 649, 0]"] - 4["Segment
[655, 681, 0]"] - 5["Segment
[687, 711, 0]"] - 6["Segment
[717, 724, 0]"] - 7[Solid2d] + subgraph path5 [Path] + 5["Path
[585, 620, 0]"] + 9["Segment
[626, 649, 0]"] + 10["Segment
[655, 681, 0]"] + 11["Segment
[687, 711, 0]"] + 12["Segment
[717, 724, 0]"] + 32[Solid2d] end - subgraph path24 [Path] - 24["Path
[859, 913, 0]"] - 25["Segment
[921, 962, 0]"] - 26["Segment
[970, 1002, 0]"] - 27["Segment
[1010, 1051, 0]"] - 28["Segment
[1059, 1084, 0]"] - 29["Segment
[1092, 1134, 0]"] - 30["Segment
[1142, 1175, 0]"] - 31["Segment
[1183, 1225, 0]"] - 32["Segment
[1233, 1240, 0]"] - 33[Solid2d] + subgraph path6 [Path] + 6["Path
[859, 913, 0]"] + 13["Segment
[921, 962, 0]"] + 14["Segment
[970, 1002, 0]"] + 15["Segment
[1010, 1051, 0]"] + 16["Segment
[1059, 1084, 0]"] + 17["Segment
[1092, 1134, 0]"] + 18["Segment
[1142, 1175, 0]"] + 19["Segment
[1183, 1225, 0]"] + 20["Segment
[1233, 1240, 0]"] + 31[Solid2d] end - subgraph path62 [Path] - 62["Path
[1553, 1596, 0]"] - 63["Segment
[1602, 1635, 0]"] - 64["Segment
[1641, 1683, 0]"] - 65["Segment
[1689, 1733, 0]"] - 66["Segment
[1739, 1746, 0]"] - 67[Solid2d] + subgraph path7 [Path] + 7["Path
[1553, 1596, 0]"] + 21["Segment
[1602, 1635, 0]"] + 22["Segment
[1641, 1683, 0]"] + 23["Segment
[1689, 1733, 0]"] + 24["Segment
[1739, 1746, 0]"] + 29[Solid2d] end - subgraph path84 [Path] - 84["Path
[1881, 1923, 0]"] - 85["Segment
[1929, 1963, 0]"] - 86["Segment
[1969, 2012, 0]"] - 87["Segment
[2018, 2061, 0]"] - 88["Segment
[2067, 2074, 0]"] - 89[Solid2d] + subgraph path8 [Path] + 8["Path
[1881, 1923, 0]"] + 25["Segment
[1929, 1963, 0]"] + 26["Segment
[1969, 2012, 0]"] + 27["Segment
[2018, 2061, 0]"] + 28["Segment
[2067, 2074, 0]"] + 30[Solid2d] end 1["Plane
[562, 579, 0]"] - 8["Sweep Extrusion
[730, 753, 0]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12[Wall] - 13["Cap Start"] - 14["Cap End"] - 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 23["Plane
[834, 851, 0]"] + 2["Plane
[834, 851, 0]"] + 3["Plane
[1530, 1547, 0]"] + 4["Plane
[1858, 1875, 0]"] + 33["Sweep Extrusion
[730, 753, 0]"] 34["Sweep Extrusion
[1248, 1271, 0]"] - 35[Wall] - 36[Wall] + 35["Sweep Extrusion
[1752, 1775, 0]"] + 36["Sweep Extrusion
[2080, 2103, 0]"] 37[Wall] 38[Wall] 39[Wall] 40[Wall] 41[Wall] 42[Wall] - 43["Cap Start"] - 44["Cap End"] - 45["SweepEdge Opposite"] - 46["SweepEdge Adjacent"] - 47["SweepEdge Opposite"] - 48["SweepEdge Adjacent"] - 49["SweepEdge Opposite"] - 50["SweepEdge Adjacent"] - 51["SweepEdge Opposite"] - 52["SweepEdge Adjacent"] - 53["SweepEdge Opposite"] - 54["SweepEdge Adjacent"] - 55["SweepEdge Opposite"] - 56["SweepEdge Adjacent"] - 57["SweepEdge Opposite"] - 58["SweepEdge Adjacent"] - 59["SweepEdge Opposite"] - 60["SweepEdge Adjacent"] - 61["Plane
[1530, 1547, 0]"] - 68["Sweep Extrusion
[1752, 1775, 0]"] - 69[Wall] - 70[Wall] - 71[Wall] - 72[Wall] - 73["Cap Start"] - 74["Cap End"] + 43[Wall] + 44[Wall] + 45[Wall] + 46[Wall] + 47[Wall] + 48[Wall] + 49[Wall] + 50[Wall] + 51[Wall] + 52[Wall] + 53[Wall] + 54[Wall] + 55[Wall] + 56[Wall] + 57["Cap Start"] + 58["Cap Start"] + 59["Cap Start"] + 60["Cap Start"] + 61["Cap End"] + 62["Cap End"] + 63["Cap End"] + 64["Cap End"] + 65["SweepEdge Opposite"] + 66["SweepEdge Opposite"] + 67["SweepEdge Opposite"] + 68["SweepEdge Opposite"] + 69["SweepEdge Opposite"] + 70["SweepEdge Opposite"] + 71["SweepEdge Opposite"] + 72["SweepEdge Opposite"] + 73["SweepEdge Opposite"] + 74["SweepEdge Opposite"] 75["SweepEdge Opposite"] - 76["SweepEdge Adjacent"] + 76["SweepEdge Opposite"] 77["SweepEdge Opposite"] - 78["SweepEdge Adjacent"] + 78["SweepEdge Opposite"] 79["SweepEdge Opposite"] - 80["SweepEdge Adjacent"] + 80["SweepEdge Opposite"] 81["SweepEdge Opposite"] - 82["SweepEdge Adjacent"] - 83["Plane
[1858, 1875, 0]"] - 90["Sweep Extrusion
[2080, 2103, 0]"] - 91[Wall] - 92[Wall] - 93[Wall] - 94[Wall] - 95["Cap Start"] - 96["Cap End"] - 97["SweepEdge Opposite"] + 82["SweepEdge Opposite"] + 83["SweepEdge Opposite"] + 84["SweepEdge Opposite"] + 85["SweepEdge Adjacent"] + 86["SweepEdge Adjacent"] + 87["SweepEdge Adjacent"] + 88["SweepEdge Adjacent"] + 89["SweepEdge Adjacent"] + 90["SweepEdge Adjacent"] + 91["SweepEdge Adjacent"] + 92["SweepEdge Adjacent"] + 93["SweepEdge Adjacent"] + 94["SweepEdge Adjacent"] + 95["SweepEdge Adjacent"] + 96["SweepEdge Adjacent"] + 97["SweepEdge Adjacent"] 98["SweepEdge Adjacent"] - 99["SweepEdge Opposite"] + 99["SweepEdge Adjacent"] 100["SweepEdge Adjacent"] - 101["SweepEdge Opposite"] + 101["SweepEdge Adjacent"] 102["SweepEdge Adjacent"] - 103["SweepEdge Opposite"] + 103["SweepEdge Adjacent"] 104["SweepEdge Adjacent"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 + 1 --- 5 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 9 - 3 --- 15 - 3 --- 16 - 3 x--> 13 - 4 --- 10 - 4 --- 17 - 4 --- 18 - 4 x--> 13 + 3 --- 7 + 4 --- 8 + 5 --- 9 + 5 --- 10 5 --- 11 - 5 --- 19 - 5 --- 20 - 5 x--> 13 - 6 --- 12 - 6 --- 21 - 6 --- 22 - 6 x--> 13 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 - 8 --- 16 - 8 --- 17 - 8 --- 18 - 8 --- 19 - 8 --- 20 - 8 --- 21 - 8 --- 22 - 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 10 - 17 <--x 10 - 17 <--x 14 - 18 <--x 10 - 18 <--x 11 - 19 <--x 11 - 19 <--x 14 - 20 <--x 11 - 20 <--x 12 - 21 <--x 12 - 21 <--x 14 - 22 <--x 9 - 22 <--x 12 - 23 --- 24 - 24 --- 25 - 24 --- 26 - 24 --- 27 - 24 --- 28 - 24 --- 29 - 24 --- 30 - 24 --- 31 - 24 --- 32 - 24 ---- 34 - 24 --- 33 - 25 --- 42 - 25 --- 59 - 25 --- 60 - 25 x--> 43 - 26 --- 41 - 26 --- 57 - 26 --- 58 - 26 x--> 43 - 27 --- 40 - 27 --- 55 - 27 --- 56 - 27 x--> 43 - 28 --- 39 - 28 --- 53 - 28 --- 54 - 28 x--> 43 - 29 --- 38 - 29 --- 51 - 29 --- 52 - 29 x--> 43 - 30 --- 37 - 30 --- 49 - 30 --- 50 - 30 x--> 43 - 31 --- 36 - 31 --- 47 - 31 --- 48 - 31 x--> 43 - 32 --- 35 - 32 --- 45 - 32 --- 46 - 32 x--> 43 - 34 --- 35 - 34 --- 36 - 34 --- 37 - 34 --- 38 - 34 --- 39 - 34 --- 40 - 34 --- 41 - 34 --- 42 - 34 --- 43 - 34 --- 44 - 34 --- 45 - 34 --- 46 - 34 --- 47 - 34 --- 48 + 5 --- 12 + 5 --- 32 + 5 ---- 33 + 6 --- 13 + 6 --- 14 + 6 --- 15 + 6 --- 16 + 6 --- 17 + 6 --- 18 + 6 --- 19 + 6 --- 20 + 6 --- 31 + 6 ---- 34 + 7 --- 21 + 7 --- 22 + 7 --- 23 + 7 --- 24 + 7 --- 29 + 7 ---- 35 + 8 --- 25 + 8 --- 26 + 8 --- 27 + 8 --- 28 + 8 --- 30 + 8 ---- 36 + 9 --- 40 + 9 x--> 57 + 9 --- 66 + 9 --- 85 + 10 --- 38 + 10 x--> 57 + 10 --- 65 + 10 --- 88 + 11 --- 37 + 11 x--> 57 + 11 --- 68 + 11 --- 87 + 12 --- 39 + 12 x--> 57 + 12 --- 67 + 12 --- 86 + 13 --- 53 + 13 x--> 60 + 13 --- 80 + 13 --- 102 + 14 --- 54 + 14 x--> 60 + 14 --- 79 + 14 --- 99 + 15 --- 51 + 15 x--> 60 + 15 --- 84 + 15 --- 98 + 16 --- 50 + 16 x--> 60 + 16 --- 77 + 16 --- 101 + 17 --- 52 + 17 x--> 60 + 17 --- 82 + 17 --- 97 + 18 --- 55 + 18 x--> 60 + 18 --- 81 + 18 --- 103 + 19 --- 56 + 19 x--> 60 + 19 --- 83 + 19 --- 104 + 20 --- 49 + 20 x--> 60 + 20 --- 78 + 20 --- 100 + 21 --- 43 + 21 x--> 58 + 21 --- 69 + 21 --- 89 + 22 --- 41 + 22 x--> 58 + 22 --- 71 + 22 --- 90 + 23 --- 42 + 23 x--> 58 + 23 --- 72 + 23 --- 91 + 24 --- 44 + 24 x--> 58 + 24 --- 70 + 24 --- 92 + 25 --- 46 + 25 x--> 59 + 25 --- 76 + 25 --- 93 + 26 --- 47 + 26 x--> 59 + 26 --- 74 + 26 --- 96 + 27 --- 45 + 27 x--> 59 + 27 --- 73 + 27 --- 94 + 28 --- 48 + 28 x--> 59 + 28 --- 75 + 28 --- 95 + 33 --- 37 + 33 --- 38 + 33 --- 39 + 33 --- 40 + 33 --- 57 + 33 --- 61 + 33 --- 65 + 33 --- 66 + 33 --- 67 + 33 --- 68 + 33 --- 85 + 33 --- 86 + 33 --- 87 + 33 --- 88 34 --- 49 34 --- 50 34 --- 51 @@ -230,146 +246,130 @@ flowchart LR 34 --- 54 34 --- 55 34 --- 56 - 34 --- 57 - 34 --- 58 - 34 --- 59 34 --- 60 - 45 <--x 35 - 45 <--x 44 - 46 <--x 35 - 46 <--x 42 - 47 <--x 36 - 47 <--x 44 - 48 <--x 35 - 48 <--x 36 - 49 <--x 37 - 49 <--x 44 - 50 <--x 36 - 50 <--x 37 - 51 <--x 38 - 51 <--x 44 - 52 <--x 37 - 52 <--x 38 - 53 <--x 39 - 53 <--x 44 - 54 <--x 38 - 54 <--x 39 - 55 <--x 40 - 55 <--x 44 - 56 <--x 39 - 56 <--x 40 - 57 <--x 41 - 57 <--x 44 - 58 <--x 40 - 58 <--x 41 - 59 <--x 42 - 59 <--x 44 - 60 <--x 41 - 60 <--x 42 - 61 --- 62 - 62 --- 63 - 62 --- 64 - 62 --- 65 - 62 --- 66 - 62 ---- 68 - 62 --- 67 - 63 --- 72 - 63 --- 81 - 63 --- 82 - 63 x--> 73 - 64 --- 71 - 64 --- 79 - 64 --- 80 - 64 x--> 73 - 65 --- 70 - 65 --- 77 - 65 --- 78 - 65 x--> 73 - 66 --- 69 - 66 --- 75 - 66 --- 76 - 66 x--> 73 - 68 --- 69 - 68 --- 70 - 68 --- 71 - 68 --- 72 - 68 --- 73 - 68 --- 74 - 68 --- 75 - 68 --- 76 - 68 --- 77 - 68 --- 78 - 68 --- 79 - 68 --- 80 - 68 --- 81 - 68 --- 82 - 75 <--x 69 - 75 <--x 74 - 76 <--x 69 - 76 <--x 72 - 77 <--x 70 - 77 <--x 74 - 78 <--x 69 - 78 <--x 70 - 79 <--x 71 - 79 <--x 74 - 80 <--x 70 - 80 <--x 71 - 81 <--x 72 - 81 <--x 74 - 82 <--x 71 - 82 <--x 72 - 83 --- 84 - 84 --- 85 - 84 --- 86 - 84 --- 87 - 84 --- 88 - 84 ---- 90 - 84 --- 89 - 85 --- 91 - 85 --- 97 - 85 --- 98 - 85 x--> 95 - 86 --- 92 - 86 --- 99 - 86 --- 100 - 86 x--> 95 - 87 --- 93 - 87 --- 101 - 87 --- 102 - 87 x--> 95 - 88 --- 94 - 88 --- 103 - 88 --- 104 - 88 x--> 95 - 90 --- 91 - 90 --- 92 - 90 --- 93 - 90 --- 94 - 90 --- 95 - 90 --- 96 - 90 --- 97 - 90 --- 98 - 90 --- 99 - 90 --- 100 - 90 --- 101 - 90 --- 102 - 90 --- 103 - 90 --- 104 - 97 <--x 91 - 97 <--x 96 - 98 <--x 91 - 98 <--x 92 - 99 <--x 92 - 99 <--x 96 - 100 <--x 92 - 100 <--x 93 - 101 <--x 93 - 101 <--x 96 - 102 <--x 93 - 102 <--x 94 - 103 <--x 94 - 103 <--x 96 - 104 <--x 91 - 104 <--x 94 + 34 --- 64 + 34 --- 77 + 34 --- 78 + 34 --- 79 + 34 --- 80 + 34 --- 81 + 34 --- 82 + 34 --- 83 + 34 --- 84 + 34 --- 97 + 34 --- 98 + 34 --- 99 + 34 --- 100 + 34 --- 101 + 34 --- 102 + 34 --- 103 + 34 --- 104 + 35 --- 41 + 35 --- 42 + 35 --- 43 + 35 --- 44 + 35 --- 58 + 35 --- 62 + 35 --- 69 + 35 --- 70 + 35 --- 71 + 35 --- 72 + 35 --- 89 + 35 --- 90 + 35 --- 91 + 35 --- 92 + 36 --- 45 + 36 --- 46 + 36 --- 47 + 36 --- 48 + 36 --- 59 + 36 --- 63 + 36 --- 73 + 36 --- 74 + 36 --- 75 + 36 --- 76 + 36 --- 93 + 36 --- 94 + 36 --- 95 + 36 --- 96 + 68 <--x 37 + 87 <--x 37 + 88 <--x 37 + 65 <--x 38 + 85 <--x 38 + 88 <--x 38 + 67 <--x 39 + 86 <--x 39 + 87 <--x 39 + 66 <--x 40 + 85 <--x 40 + 86 <--x 40 + 71 <--x 41 + 89 <--x 41 + 90 <--x 41 + 72 <--x 42 + 90 <--x 42 + 91 <--x 42 + 69 <--x 43 + 89 <--x 43 + 92 <--x 43 + 70 <--x 44 + 91 <--x 44 + 92 <--x 44 + 73 <--x 45 + 94 <--x 45 + 96 <--x 45 + 76 <--x 46 + 93 <--x 46 + 95 <--x 46 + 74 <--x 47 + 93 <--x 47 + 96 <--x 47 + 75 <--x 48 + 94 <--x 48 + 95 <--x 48 + 78 <--x 49 + 100 <--x 49 + 104 <--x 49 + 77 <--x 50 + 98 <--x 50 + 101 <--x 50 + 84 <--x 51 + 98 <--x 51 + 99 <--x 51 + 82 <--x 52 + 97 <--x 52 + 101 <--x 52 + 80 <--x 53 + 100 <--x 53 + 102 <--x 53 + 79 <--x 54 + 99 <--x 54 + 102 <--x 54 + 81 <--x 55 + 97 <--x 55 + 103 <--x 55 + 83 <--x 56 + 103 <--x 56 + 104 <--x 56 + 65 <--x 61 + 66 <--x 61 + 67 <--x 61 + 68 <--x 61 + 69 <--x 62 + 70 <--x 62 + 71 <--x 62 + 72 <--x 62 + 73 <--x 63 + 74 <--x 63 + 75 <--x 63 + 76 <--x 63 + 77 <--x 64 + 78 <--x 64 + 79 <--x 64 + 80 <--x 64 + 81 <--x 64 + 82 <--x 64 + 83 <--x 64 + 84 <--x 64 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/gear-rack/ops.snap b/rust/kcl-lib/tests/kcl_samples/gear-rack/ops.snap index 1edbd8862..092286498 100644 --- a/rust/kcl-lib/tests/kcl_samples/gear-rack/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/gear-rack/ops.snap @@ -3,6 +3,53 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed gear-rack.kcl --- [ + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 5.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, { "labeledArgs": { "planeOrSolid": { @@ -61,56 +108,6 @@ description: Operations executed gear-rack.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 5.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "axis": { @@ -299,5 +296,8 @@ description: Operations executed gear-rack.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gear/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/gear/artifact_commands.snap index ffc70efed..933e70986 100644 --- a/rust/kcl-lib/tests/kcl_samples/gear/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/gear/artifact_commands.snap @@ -54,6 +54,14 @@ description: Artifact commands gear.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -70,33 +78,6 @@ description: Artifact commands gear.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 125.30801098180088, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -126,8 +107,27 @@ description: Artifact commands gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 125.30801098180088, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -157,13 +157,6 @@ description: Artifact commands gear.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -172,6 +165,40 @@ description: Artifact commands gear.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -181,34 +208,6 @@ description: Artifact commands gear.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -223,77 +222,10 @@ description: Artifact commands gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 145.79380266899716, - "y": 8.646941847468915, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2013,31 +1945,6 @@ description: Artifact commands gear.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": -0.0, - "y": -0.0 - }, - "radius": 125.30801098180088, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 11.428571428571429 - }, - "relative": false - } - } - }, { "cmdId": "[uuid]", "range": [], @@ -3755,6 +3662,99 @@ description: Artifact commands gear.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 145.79380266899716, + "y": 8.646941847468915, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": -0.0, + "y": -0.0 + }, + "radius": 125.30801098180088, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 11.428571428571429 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -3794,15 +3794,15 @@ description: Artifact commands gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "sketch_mode_disable" } }, { @@ -3847,13 +3847,6 @@ description: Artifact commands gear.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3874,6 +3867,13 @@ description: Artifact commands gear.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4006,6 +4006,14 @@ description: Artifact commands gear.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4017,8 +4025,108 @@ description: Artifact commands gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -4034,30 +4142,12 @@ description: Artifact commands gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4072,39 +4162,12 @@ description: Artifact commands gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4119,18 +4182,10 @@ description: Artifact commands gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4143,43 +4198,6 @@ description: Artifact commands gear.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4194,28 +4212,10 @@ description: Artifact commands gear.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap.md index 6f1e03f83..efca8b2d4 100644 --- a/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap.md @@ -1,12 +1,17 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[1453, 1503, 0]"] - 3["Segment
[1453, 1503, 0]"] - 4[Solid2d] + subgraph path4 [Path] + 4["Path
[1453, 1503, 0]"] + 7["Segment
[1453, 1503, 0]"] + 219[Solid2d] end - subgraph path12 [Path] - 12["Path
[2008, 2045, 0]"] + subgraph path5 [Path] + 5["Path
[2008, 2045, 0]"] + 8["Segment
[1668, 1706, 0]"] + 9["Segment
[1668, 1706, 0]"] + 10["Segment
[1668, 1706, 0]"] + 11["Segment
[1668, 1706, 0]"] + 12["Segment
[1668, 1706, 0]"] 13["Segment
[1668, 1706, 0]"] 14["Segment
[1668, 1706, 0]"] 15["Segment
[1668, 1706, 0]"] @@ -103,12 +108,12 @@ flowchart LR 106["Segment
[1668, 1706, 0]"] 107["Segment
[1668, 1706, 0]"] 108["Segment
[1668, 1706, 0]"] - 109["Segment
[1668, 1706, 0]"] - 110["Segment
[1668, 1706, 0]"] - 111["Segment
[1668, 1706, 0]"] - 112["Segment
[1668, 1706, 0]"] - 113["Segment
[1668, 1706, 0]"] - 114["Segment
[2111, 2180, 0]"] + 109["Segment
[1924, 1954, 0]"] + 110["Segment
[1924, 1954, 0]"] + 111["Segment
[1924, 1954, 0]"] + 112["Segment
[1924, 1954, 0]"] + 113["Segment
[1924, 1954, 0]"] + 114["Segment
[1924, 1954, 0]"] 115["Segment
[1924, 1954, 0]"] 116["Segment
[1924, 1954, 0]"] 117["Segment
[1924, 1954, 0]"] @@ -204,323 +209,318 @@ flowchart LR 207["Segment
[1924, 1954, 0]"] 208["Segment
[1924, 1954, 0]"] 209["Segment
[1924, 1954, 0]"] - 210["Segment
[1924, 1954, 0]"] - 211["Segment
[1924, 1954, 0]"] - 212["Segment
[1924, 1954, 0]"] - 213["Segment
[1924, 1954, 0]"] - 214["Segment
[1924, 1954, 0]"] - 215["Segment
[1924, 1954, 0]"] - 216["Segment
[2240, 2247, 0]"] - 217[Solid2d] + 210["Segment
[2111, 2180, 0]"] + 211["Segment
[2240, 2247, 0]"] + 218[Solid2d] end - subgraph path219 [Path] - 219["Path
[2728, 2828, 0]"] - 220["Segment
[2834, 2861, 0]"] - 221["Segment
[2867, 2895, 0]"] - 222["Segment
[2901, 2929, 0]"] - 223["Segment
[2935, 3029, 0]"] - 224["Segment
[3035, 3118, 0]"] - 225["Segment
[3124, 3131, 0]"] - 226[Solid2d] + subgraph path6 [Path] + 6["Path
[2728, 2828, 0]"] + 212["Segment
[2834, 2861, 0]"] + 213["Segment
[2867, 2895, 0]"] + 214["Segment
[2901, 2929, 0]"] + 215["Segment
[2935, 3029, 0]"] + 216["Segment
[3035, 3118, 0]"] + 217["Segment
[3124, 3131, 0]"] + 220[Solid2d] end 1["Plane
[1430, 1447, 0]"] - 5["Sweep Extrusion
[1509, 1537, 0]"] - 6[Wall] - 7["Cap Start"] - 8["Cap End"] - 9["SweepEdge Opposite"] - 10["SweepEdge Adjacent"] - 11["Plane
[1985, 2002, 0]"] - 218["Sweep Extrusion
[2253, 2281, 0]"] - 227["Sweep Extrusion
[3137, 3166, 0]"] + 2["Plane
[1985, 2002, 0]"] + 3["StartSketchOnFace
[2691, 2722, 0]"] + 221["Sweep Extrusion
[1509, 1537, 0]"] + 222["Sweep Extrusion
[2253, 2281, 0]"] + 223["Sweep Extrusion
[3137, 3166, 0]"] + 224[Wall] + 225[Wall] + 226[Wall] + 227[Wall] 228[Wall] - 229[Wall] - 230[Wall] - 231[Wall] + 229["Cap Start"] + 230["Cap End"] + 231["SweepEdge Opposite"] 232["SweepEdge Opposite"] - 233["SweepEdge Adjacent"] + 233["SweepEdge Opposite"] 234["SweepEdge Opposite"] - 235["SweepEdge Adjacent"] - 236["SweepEdge Opposite"] + 235["SweepEdge Opposite"] + 236["SweepEdge Adjacent"] 237["SweepEdge Adjacent"] - 238["SweepEdge Opposite"] + 238["SweepEdge Adjacent"] 239["SweepEdge Adjacent"] - 240["StartSketchOnFace
[2691, 2722, 0]"] - 1 --- 2 - 2 --- 3 - 2 ---- 5 - 2 --- 4 - 3 --- 6 - 3 --- 9 - 3 --- 10 - 3 x--> 7 - 5 --- 6 - 5 --- 7 + 240["SweepEdge Adjacent"] + 1 --- 4 + 2 --- 5 + 230 x--> 3 + 4 --- 7 + 4 --- 219 + 4 ---- 221 5 --- 8 5 --- 9 5 --- 10 - 8 --- 219 - 9 <--x 6 - 9 <--x 8 - 10 <--x 6 - 11 --- 12 - 12 --- 13 - 12 --- 14 - 12 --- 15 - 12 --- 16 - 12 --- 17 - 12 --- 18 - 12 --- 19 - 12 --- 20 - 12 --- 21 - 12 --- 22 - 12 --- 23 - 12 --- 24 - 12 --- 25 - 12 --- 26 - 12 --- 27 - 12 --- 28 - 12 --- 29 - 12 --- 30 - 12 --- 31 - 12 --- 32 - 12 --- 33 - 12 --- 34 - 12 --- 35 - 12 --- 36 - 12 --- 37 - 12 --- 38 - 12 --- 39 - 12 --- 40 - 12 --- 41 - 12 --- 42 - 12 --- 43 - 12 --- 44 - 12 --- 45 - 12 --- 46 - 12 --- 47 - 12 --- 48 - 12 --- 49 - 12 --- 50 - 12 --- 51 - 12 --- 52 - 12 --- 53 - 12 --- 54 - 12 --- 55 - 12 --- 56 - 12 --- 57 - 12 --- 58 - 12 --- 59 - 12 --- 60 - 12 --- 61 - 12 --- 62 - 12 --- 63 - 12 --- 64 - 12 --- 65 - 12 --- 66 - 12 --- 67 - 12 --- 68 - 12 --- 69 - 12 --- 70 - 12 --- 71 - 12 --- 72 - 12 --- 73 - 12 --- 74 - 12 --- 75 - 12 --- 76 - 12 --- 77 - 12 --- 78 - 12 --- 79 - 12 --- 80 - 12 --- 81 - 12 --- 82 - 12 --- 83 - 12 --- 84 - 12 --- 85 - 12 --- 86 - 12 --- 87 - 12 --- 88 - 12 --- 89 - 12 --- 90 - 12 --- 91 - 12 --- 92 - 12 --- 93 - 12 --- 94 - 12 --- 95 - 12 --- 96 - 12 --- 97 - 12 --- 98 - 12 --- 99 - 12 --- 100 - 12 --- 101 - 12 --- 102 - 12 --- 103 - 12 --- 104 - 12 --- 105 - 12 --- 106 - 12 --- 107 - 12 --- 108 - 12 --- 109 - 12 --- 110 - 12 --- 111 - 12 --- 112 - 12 --- 113 - 12 --- 114 - 12 --- 115 - 12 --- 116 - 12 --- 117 - 12 --- 118 - 12 --- 119 - 12 --- 120 - 12 --- 121 - 12 --- 122 - 12 --- 123 - 12 --- 124 - 12 --- 125 - 12 --- 126 - 12 --- 127 - 12 --- 128 - 12 --- 129 - 12 --- 130 - 12 --- 131 - 12 --- 132 - 12 --- 133 - 12 --- 134 - 12 --- 135 - 12 --- 136 - 12 --- 137 - 12 --- 138 - 12 --- 139 - 12 --- 140 - 12 --- 141 - 12 --- 142 - 12 --- 143 - 12 --- 144 - 12 --- 145 - 12 --- 146 - 12 --- 147 - 12 --- 148 - 12 --- 149 - 12 --- 150 - 12 --- 151 - 12 --- 152 - 12 --- 153 - 12 --- 154 - 12 --- 155 - 12 --- 156 - 12 --- 157 - 12 --- 158 - 12 --- 159 - 12 --- 160 - 12 --- 161 - 12 --- 162 - 12 --- 163 - 12 --- 164 - 12 --- 165 - 12 --- 166 - 12 --- 167 - 12 --- 168 - 12 --- 169 - 12 --- 170 - 12 --- 171 - 12 --- 172 - 12 --- 173 - 12 --- 174 - 12 --- 175 - 12 --- 176 - 12 --- 177 - 12 --- 178 - 12 --- 179 - 12 --- 180 - 12 --- 181 - 12 --- 182 - 12 --- 183 - 12 --- 184 - 12 --- 185 - 12 --- 186 - 12 --- 187 - 12 --- 188 - 12 --- 189 - 12 --- 190 - 12 --- 191 - 12 --- 192 - 12 --- 193 - 12 --- 194 - 12 --- 195 - 12 --- 196 - 12 --- 197 - 12 --- 198 - 12 --- 199 - 12 --- 200 - 12 --- 201 - 12 --- 202 - 12 --- 203 - 12 --- 204 - 12 --- 205 - 12 --- 206 - 12 --- 207 - 12 --- 208 - 12 --- 209 - 12 --- 210 - 12 --- 211 - 12 --- 212 - 12 --- 213 - 12 --- 214 - 12 --- 215 - 12 --- 216 - 12 ---- 218 - 12 --- 217 - 219 --- 220 - 219 --- 221 - 219 --- 222 - 219 --- 223 - 219 --- 224 - 219 --- 225 - 219 ---- 227 - 219 --- 226 - 220 --- 231 - 220 --- 238 - 220 --- 239 - 220 <--x 8 + 5 --- 11 + 5 --- 12 + 5 --- 13 + 5 --- 14 + 5 --- 15 + 5 --- 16 + 5 --- 17 + 5 --- 18 + 5 --- 19 + 5 --- 20 + 5 --- 21 + 5 --- 22 + 5 --- 23 + 5 --- 24 + 5 --- 25 + 5 --- 26 + 5 --- 27 + 5 --- 28 + 5 --- 29 + 5 --- 30 + 5 --- 31 + 5 --- 32 + 5 --- 33 + 5 --- 34 + 5 --- 35 + 5 --- 36 + 5 --- 37 + 5 --- 38 + 5 --- 39 + 5 --- 40 + 5 --- 41 + 5 --- 42 + 5 --- 43 + 5 --- 44 + 5 --- 45 + 5 --- 46 + 5 --- 47 + 5 --- 48 + 5 --- 49 + 5 --- 50 + 5 --- 51 + 5 --- 52 + 5 --- 53 + 5 --- 54 + 5 --- 55 + 5 --- 56 + 5 --- 57 + 5 --- 58 + 5 --- 59 + 5 --- 60 + 5 --- 61 + 5 --- 62 + 5 --- 63 + 5 --- 64 + 5 --- 65 + 5 --- 66 + 5 --- 67 + 5 --- 68 + 5 --- 69 + 5 --- 70 + 5 --- 71 + 5 --- 72 + 5 --- 73 + 5 --- 74 + 5 --- 75 + 5 --- 76 + 5 --- 77 + 5 --- 78 + 5 --- 79 + 5 --- 80 + 5 --- 81 + 5 --- 82 + 5 --- 83 + 5 --- 84 + 5 --- 85 + 5 --- 86 + 5 --- 87 + 5 --- 88 + 5 --- 89 + 5 --- 90 + 5 --- 91 + 5 --- 92 + 5 --- 93 + 5 --- 94 + 5 --- 95 + 5 --- 96 + 5 --- 97 + 5 --- 98 + 5 --- 99 + 5 --- 100 + 5 --- 101 + 5 --- 102 + 5 --- 103 + 5 --- 104 + 5 --- 105 + 5 --- 106 + 5 --- 107 + 5 --- 108 + 5 --- 109 + 5 --- 110 + 5 --- 111 + 5 --- 112 + 5 --- 113 + 5 --- 114 + 5 --- 115 + 5 --- 116 + 5 --- 117 + 5 --- 118 + 5 --- 119 + 5 --- 120 + 5 --- 121 + 5 --- 122 + 5 --- 123 + 5 --- 124 + 5 --- 125 + 5 --- 126 + 5 --- 127 + 5 --- 128 + 5 --- 129 + 5 --- 130 + 5 --- 131 + 5 --- 132 + 5 --- 133 + 5 --- 134 + 5 --- 135 + 5 --- 136 + 5 --- 137 + 5 --- 138 + 5 --- 139 + 5 --- 140 + 5 --- 141 + 5 --- 142 + 5 --- 143 + 5 --- 144 + 5 --- 145 + 5 --- 146 + 5 --- 147 + 5 --- 148 + 5 --- 149 + 5 --- 150 + 5 --- 151 + 5 --- 152 + 5 --- 153 + 5 --- 154 + 5 --- 155 + 5 --- 156 + 5 --- 157 + 5 --- 158 + 5 --- 159 + 5 --- 160 + 5 --- 161 + 5 --- 162 + 5 --- 163 + 5 --- 164 + 5 --- 165 + 5 --- 166 + 5 --- 167 + 5 --- 168 + 5 --- 169 + 5 --- 170 + 5 --- 171 + 5 --- 172 + 5 --- 173 + 5 --- 174 + 5 --- 175 + 5 --- 176 + 5 --- 177 + 5 --- 178 + 5 --- 179 + 5 --- 180 + 5 --- 181 + 5 --- 182 + 5 --- 183 + 5 --- 184 + 5 --- 185 + 5 --- 186 + 5 --- 187 + 5 --- 188 + 5 --- 189 + 5 --- 190 + 5 --- 191 + 5 --- 192 + 5 --- 193 + 5 --- 194 + 5 --- 195 + 5 --- 196 + 5 --- 197 + 5 --- 198 + 5 --- 199 + 5 --- 200 + 5 --- 201 + 5 --- 202 + 5 --- 203 + 5 --- 204 + 5 --- 205 + 5 --- 206 + 5 --- 207 + 5 --- 208 + 5 --- 209 + 5 --- 210 + 5 --- 211 + 5 --- 218 + 5 ---- 222 + 6 --- 212 + 6 --- 213 + 6 --- 214 + 6 --- 215 + 6 --- 216 + 6 --- 217 + 6 --- 220 + 6 ---- 223 + 230 --- 6 + 7 --- 224 + 7 x--> 229 + 7 --- 231 + 7 --- 236 + 212 --- 227 + 212 x--> 230 + 212 --- 232 + 212 --- 238 + 213 --- 228 + 213 x--> 230 + 213 --- 235 + 213 --- 239 + 214 --- 225 + 214 x--> 230 + 214 --- 234 + 214 --- 240 + 216 --- 226 + 216 x--> 230 + 216 --- 233 + 216 --- 237 + 221 --- 224 + 221 --- 229 221 --- 230 + 221 --- 231 221 --- 236 - 221 --- 237 - 221 <--x 8 - 222 --- 229 - 222 --- 234 - 222 --- 235 - 222 <--x 8 - 224 --- 228 - 224 --- 232 - 224 --- 233 - 224 <--x 8 - 227 --- 228 - 227 --- 229 - 227 --- 230 - 227 --- 231 - 227 --- 232 - 227 --- 233 - 227 --- 234 - 227 --- 235 - 227 --- 236 - 227 --- 237 - 227 --- 238 - 227 --- 239 - 232 <--x 228 - 232 <--x 7 - 233 <--x 228 - 233 <--x 231 - 234 <--x 229 - 234 <--x 7 + 223 --- 225 + 223 --- 226 + 223 --- 227 + 223 --- 228 + 223 --- 232 + 223 --- 233 + 223 --- 234 + 223 --- 235 + 223 --- 237 + 223 --- 238 + 223 --- 239 + 223 --- 240 + 231 <--x 224 + 236 <--x 224 + 234 <--x 225 + 239 <--x 225 + 240 <--x 225 + 233 <--x 226 + 237 <--x 226 + 240 <--x 226 + 232 <--x 227 + 237 <--x 227 + 238 <--x 227 235 <--x 228 + 238 <--x 228 + 239 <--x 228 + 232 <--x 229 + 233 <--x 229 + 234 <--x 229 235 <--x 229 - 236 <--x 230 - 236 <--x 7 - 237 <--x 229 - 237 <--x 230 - 238 <--x 231 - 238 <--x 7 - 239 <--x 230 - 239 <--x 231 - 8 <--x 240 + 231 <--x 230 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/gear/ops.snap b/rust/kcl-lib/tests/kcl_samples/gear/ops.snap index 0acdf8a71..2e18ca8b2 100644 --- a/rust/kcl-lib/tests/kcl_samples/gear/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/gear/ops.snap @@ -7,30 +7,24 @@ description: Operations executed gear.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "cos", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -42,9 +36,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -56,9 +47,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -70,9 +58,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -84,9 +69,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -98,9 +80,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -112,9 +91,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -126,9 +102,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -140,9 +113,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -154,9 +124,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -168,9 +135,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -182,9 +146,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -196,9 +157,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -210,9 +168,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -224,9 +179,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -238,9 +190,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -252,9 +201,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -266,9 +212,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -280,9 +223,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -294,9 +234,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -308,9 +245,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -322,9 +256,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -336,9 +267,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -350,9 +278,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -364,9 +289,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -378,9 +300,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -392,9 +311,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -406,9 +322,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -420,9 +333,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -434,9 +344,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -448,9 +355,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -462,9 +366,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -476,9 +377,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -490,9 +388,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -504,9 +399,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -518,9 +410,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -532,9 +421,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -546,9 +432,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -560,9 +443,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -574,9 +454,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -588,9 +465,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -602,9 +476,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -616,9 +487,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -630,9 +498,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -644,9 +509,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -658,9 +520,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -672,9 +531,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -686,9 +542,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -700,9 +553,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -714,9 +564,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -728,9 +575,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -742,9 +586,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -756,9 +597,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -770,9 +608,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -784,9 +619,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -798,9 +630,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -812,9 +641,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -826,9 +652,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -840,9 +663,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -854,9 +674,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -868,9 +685,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -882,9 +696,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -896,9 +707,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -910,9 +718,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -924,9 +729,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -938,9 +740,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -952,9 +751,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -966,9 +762,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -980,9 +773,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -994,9 +784,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1008,9 +795,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1022,9 +806,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1036,9 +817,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1050,9 +828,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1064,9 +839,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1078,9 +850,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1092,9 +861,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1106,9 +872,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1120,9 +883,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1134,9 +894,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1148,9 +905,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1162,9 +916,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1176,9 +927,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1190,9 +938,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1204,9 +949,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1218,9 +960,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1232,9 +971,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1246,9 +982,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1260,9 +993,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1274,9 +1004,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1288,9 +1015,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1302,9 +1026,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1316,9 +1037,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1330,9 +1048,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1344,9 +1059,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1358,9 +1070,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1372,9 +1081,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1386,9 +1092,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1400,9 +1103,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1414,9 +1114,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1428,9 +1125,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1442,9 +1136,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1456,23 +1147,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1484,37 +1169,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1526,37 +1202,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1568,37 +1235,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1610,37 +1268,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1652,37 +1301,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1694,37 +1334,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1736,37 +1367,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1778,37 +1400,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1820,37 +1433,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1862,37 +1466,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1904,37 +1499,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1946,37 +1532,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1988,37 +1565,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2030,37 +1598,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2072,37 +1631,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2114,37 +1664,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2156,37 +1697,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2198,37 +1730,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2240,37 +1763,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2282,37 +1796,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2324,37 +1829,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2366,37 +1862,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2408,37 +1895,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2450,37 +1928,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2492,37 +1961,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2534,37 +1994,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2576,37 +2027,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2618,37 +2060,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2660,37 +2093,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2702,37 +2126,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2744,37 +2159,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2786,37 +2192,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2828,37 +2225,28 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2870,23 +2258,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "units::toRadians", + "name": "tan", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2898,23 +2280,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2926,9 +2302,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2940,23 +2313,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2968,9 +2335,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2982,23 +2346,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3010,9 +2368,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3024,23 +2379,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3052,9 +2401,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3066,23 +2412,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3094,9 +2434,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3108,23 +2445,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3136,9 +2467,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3150,23 +2478,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3178,9 +2500,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3192,23 +2511,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3220,9 +2533,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3234,23 +2544,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3262,9 +2566,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3276,23 +2577,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3304,9 +2599,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3318,23 +2610,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3346,9 +2632,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3360,23 +2643,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3388,9 +2665,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3402,23 +2676,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3430,9 +2698,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3444,23 +2709,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3472,9 +2731,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3486,23 +2742,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3514,9 +2764,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3528,23 +2775,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3556,9 +2797,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3570,23 +2808,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3598,9 +2830,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3612,23 +2841,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3640,9 +2863,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3654,23 +2874,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3682,9 +2896,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3696,23 +2907,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3724,9 +2929,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3738,23 +2940,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3766,9 +2962,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3780,23 +2973,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3808,9 +2995,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3822,23 +3006,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3850,9 +3028,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3864,23 +3039,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3892,9 +3061,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3906,23 +3072,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3934,9 +3094,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3948,23 +3105,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3976,9 +3127,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -3990,23 +3138,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4018,9 +3160,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4032,23 +3171,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4060,9 +3193,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4074,23 +3204,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4102,9 +3226,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4116,23 +3237,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4144,9 +3259,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4158,23 +3270,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4186,9 +3292,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4200,23 +3303,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4228,9 +3325,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4242,23 +3336,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4270,9 +3358,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4284,23 +3369,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4312,9 +3391,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4326,23 +3402,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4354,9 +3424,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4368,23 +3435,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4396,9 +3457,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4410,23 +3468,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4438,9 +3490,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4452,23 +3501,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4480,9 +3523,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4494,23 +3534,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4522,9 +3556,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4536,23 +3567,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4564,9 +3589,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4578,23 +3600,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4606,9 +3622,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4620,23 +3633,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4648,9 +3655,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4662,23 +3666,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4690,9 +3688,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4704,23 +3699,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4732,9 +3721,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4746,23 +3732,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4774,9 +3754,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4788,23 +3765,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4816,9 +3787,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4830,23 +3798,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4858,9 +3820,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4872,23 +3831,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4900,9 +3853,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4914,23 +3864,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4942,9 +3886,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4956,23 +3897,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4984,9 +3919,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -4998,23 +3930,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5026,9 +3952,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5040,23 +3963,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5068,9 +3985,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5082,23 +3996,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5110,9 +4018,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5124,23 +4029,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5152,9 +4051,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5166,23 +4062,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5194,9 +4084,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5208,23 +4095,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5236,9 +4117,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5250,23 +4128,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5278,9 +4150,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5292,23 +4161,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5320,9 +4183,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5334,23 +4194,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5362,9 +4216,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5376,23 +4227,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5404,9 +4249,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5418,23 +4260,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5446,9 +4282,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5460,23 +4293,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5488,9 +4315,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5502,23 +4326,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5530,9 +4348,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5544,23 +4359,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5572,9 +4381,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5586,23 +4392,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5614,9 +4414,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5628,23 +4425,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5656,9 +4447,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5670,23 +4458,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5698,9 +4480,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5712,23 +4491,17 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "tan", + "name": "units::toRadians", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5740,9 +4513,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5754,9 +4524,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5768,9 +4535,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5782,9 +4546,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5796,9 +4557,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5810,9 +4568,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5824,9 +4579,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5838,9 +4590,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5852,9 +4601,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5866,9 +4612,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5880,9 +4623,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5894,9 +4634,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5908,9 +4645,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5922,9 +4656,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5936,9 +4667,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5950,9 +4678,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5964,9 +4689,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5978,9 +4700,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -5992,9 +4711,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6006,9 +4722,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6020,9 +4733,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6034,9 +4744,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6048,9 +4755,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6062,9 +4766,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6076,9 +4777,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6090,9 +4788,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6104,9 +4799,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6118,9 +4810,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6132,9 +4821,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6146,9 +4832,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6160,9 +4843,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6174,9 +4854,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6188,9 +4865,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6202,9 +4876,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6216,9 +4887,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6230,9 +4898,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6244,9 +4909,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6258,9 +4920,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6272,9 +4931,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6286,9 +4942,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6300,9 +4953,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6314,9 +4964,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6328,9 +4975,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6342,9 +4986,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6356,9 +4997,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6370,9 +5008,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6384,9 +5019,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6398,9 +5030,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6412,9 +5041,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6426,9 +5052,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6440,9 +5063,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6454,9 +5074,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6468,9 +5085,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6482,9 +5096,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6496,9 +5107,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6510,9 +5118,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6524,9 +5129,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6538,9 +5140,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6552,9 +5151,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6566,9 +5162,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6580,9 +5173,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6594,9 +5184,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6608,9 +5195,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6622,9 +5206,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6636,9 +5217,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6650,9 +5228,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6664,9 +5239,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6678,9 +5250,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6692,9 +5261,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6706,9 +5272,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6720,9 +5283,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6734,9 +5294,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6748,9 +5305,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6762,9 +5316,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6776,9 +5327,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6790,9 +5338,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6804,9 +5349,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6818,9 +5360,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6832,9 +5371,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6846,9 +5382,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6860,9 +5393,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6874,9 +5404,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6888,9 +5415,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6902,9 +5426,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6916,9 +5437,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6930,9 +5448,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6944,9 +5459,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6958,9 +5470,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6972,9 +5481,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -6986,9 +5492,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7000,9 +5503,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7014,9 +5514,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7028,9 +5525,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7042,9 +5536,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7056,9 +5547,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7070,9 +5558,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7084,9 +5569,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7098,9 +5580,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7112,9 +5591,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7126,9 +5602,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7140,9 +5613,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7154,9 +5624,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7168,9 +5635,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7182,9 +5646,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7196,9 +5657,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7210,9 +5668,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7224,9 +5679,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7238,9 +5690,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7252,9 +5701,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7266,9 +5712,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7280,9 +5723,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7294,9 +5734,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7308,9 +5745,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7322,9 +5756,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7336,9 +5767,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7350,9 +5778,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7364,9 +5789,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7378,9 +5800,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7392,9 +5811,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7406,9 +5822,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7420,9 +5833,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7434,9 +5844,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7448,9 +5855,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7462,9 +5866,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7476,9 +5877,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7490,9 +5888,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7504,9 +5899,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7518,9 +5910,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7532,9 +5921,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7546,9 +5932,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7560,9 +5943,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7574,9 +5954,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7588,9 +5965,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7602,9 +5976,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7616,9 +5987,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7630,9 +5998,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7644,9 +6009,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7658,9 +6020,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7672,9 +6031,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7686,9 +6042,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7700,9 +6053,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7714,9 +6064,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7728,9 +6075,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7742,9 +6086,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7756,9 +6097,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7770,9 +6108,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7784,9 +6119,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7798,9 +6130,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7812,9 +6141,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7826,9 +6152,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7840,9 +6163,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7854,9 +6174,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7868,9 +6185,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7882,9 +6196,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7896,9 +6207,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7910,9 +6218,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7924,9 +6229,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7938,9 +6240,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7952,9 +6251,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7966,9 +6262,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7980,9 +6273,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -7994,9 +6284,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8008,9 +6295,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8022,9 +6306,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8036,9 +6317,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8050,9 +6328,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8064,9 +6339,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8078,9 +6350,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8092,9 +6361,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8106,9 +6372,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8120,9 +6383,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8134,9 +6394,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8148,9 +6405,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8162,9 +6416,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8176,9 +6427,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8190,9 +6438,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8204,9 +6449,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8218,9 +6460,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8232,9 +6471,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8246,9 +6482,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8260,9 +6493,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8274,9 +6504,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8288,9 +6515,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8302,9 +6526,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8316,9 +6537,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8330,9 +6548,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8344,9 +6559,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8358,9 +6570,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8372,9 +6581,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8386,9 +6592,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8400,9 +6603,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8414,9 +6614,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8428,9 +6625,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8442,9 +6636,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8456,9 +6647,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8470,9 +6658,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8484,9 +6669,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8498,9 +6680,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8512,9 +6691,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8526,9 +6702,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8540,9 +6713,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8554,9 +6724,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8568,9 +6735,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8582,9 +6746,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -8596,9 +6757,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "planeOrSolid": { @@ -8646,6 +6804,6672 @@ description: Operations executed gear.kcl "sourceRange": [] } }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toRadians", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "units::toDegrees", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, { "labeledArgs": { "planeOrSolid": { @@ -8661,8490 +13485,6 @@ description: Operations executed gear.kcl "type": "StdLibCall", "unlabeledArg": null }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "length": { @@ -17360,9 +13700,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -17374,9 +13711,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -17388,9 +13722,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -17402,9 +13733,6 @@ description: Operations executed gear.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "length": { @@ -17436,5 +13764,3677 @@ description: Operations executed gear.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/artifact_commands.snap index 6a2629fee..33c9f26e6 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/artifact_commands.snap @@ -33,38 +33,15 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "make_plane", - "origin": { - "x": 4.0, + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, "y": 0.0, "z": 0.0 - }, - "x_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "size": 100.0, - "clobber": false, - "hide": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 } } }, @@ -88,7 +65,13 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } } }, { @@ -104,6 +87,24 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -111,6 +112,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -128,6 +150,40 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 4.65, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 2.15, + "y": -2.15, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -162,6 +218,23 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.8, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -179,6 +252,31 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.7, + "y": -0.7, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -214,6 +312,14 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -225,8 +331,135 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -242,30 +475,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -280,39 +495,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -327,18 +515,10 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -355,39 +535,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -398,43 +551,6 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -449,51 +565,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "entity_circular_pattern", - "entity_id": "[uuid]", - "axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "center": { - "x": 21.0, - "y": 21.0, - "z": 0.0 - }, - "num_repetitions": 3, - "arc_degrees": 360.0, - "rotate_duplicates": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -537,119 +614,29 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "enable_sketch_mode", + "type": "entity_circular_pattern", "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { + "axis": { "x": 0.0, "y": 0.0, + "z": 1.0 + }, + "center": { + "x": 21.0, + "y": 21.0, "z": 0.0 - } + }, + "num_repetitions": 3, + "arc_degrees": 360.0, + "rotate_duplicates": true } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 4.65, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 2.15, - "y": -2.15, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.8, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.7, - "y": -0.7, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -681,8 +668,135 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -698,30 +812,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -736,39 +832,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -783,18 +852,10 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -811,39 +872,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -858,39 +892,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -905,28 +912,39 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "make_plane", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "size": 100.0, + "clobber": false, + "hide": false } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } } }, { @@ -2419,7 +2437,16 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { @@ -2429,12 +2456,34 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "type": "move_path_pen", "path": "[uuid]", "to": { - "x": 11.25, - "y": 8.0, + "x": 2.8499999999999996, + "y": 13.0, "z": 0.0 } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 2.8499999999999996, + "y": 13.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -2442,6 +2491,61 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.9, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.9, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -2451,22 +2555,571 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "segment": { "type": "arc", "center": { - "x": 8.0, - "y": 8.0 + "x": 9.75, + "y": 9.75 }, "radius": 3.25, "start": { "unit": "degrees", - "value": 0.0 + "value": 90.0 }, "end": { "unit": "degrees", - "value": 360.0 + "value": 0.0 }, "relative": false } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 9.75, + "y": 9.75 + }, + "radius": 3.25, + "start": { + "unit": "degrees", + "value": 90.0 + }, + "end": { + "unit": "degrees", + "value": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -6.9, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -6.9, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 16.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 16.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 6.9, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 6.9, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 32.25, + "y": 9.75 + }, + "radius": 3.25, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 90.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 32.25, + "y": 9.75 + }, + "radius": 3.25, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 90.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.9, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.9, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 16.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 16.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -6.9, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -6.9, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 32.25, + "y": 32.25 + }, + "radius": 3.25, + "start": { + "unit": "degrees", + "value": 270.0 + }, + "end": { + "unit": "degrees", + "value": 180.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 32.25, + "y": 32.25 + }, + "radius": 3.25, + "start": { + "unit": "degrees", + "value": 270.0 + }, + "end": { + "unit": "degrees", + "value": 180.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 6.9, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 6.9, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -16.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -16.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -6.9, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -6.9, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 9.75, + "y": 32.25 + }, + "radius": 3.25, + "start": { + "unit": "degrees", + "value": 360.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 9.75, + "y": 32.25 + }, + "radius": 3.25, + "start": { + "unit": "degrees", + "value": 360.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -6.9, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -6.9, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -16.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -16.0, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -2479,21 +3132,8 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "entity_circular_pattern", - "entity_id": "[uuid]", - "axis": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "center": { - "x": 21.0, - "y": 21.0, - "z": 0.0 - }, - "num_repetitions": 3, - "arc_degrees": 360.0, - "rotate_duplicates": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -2541,7 +3181,16 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { @@ -2557,6 +3206,28 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -2564,6 +3235,44 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 42.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -2598,6 +3307,40 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 42.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 42.0, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -2623,6 +3366,50 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2648,6 +3435,14 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2668,7 +3463,25 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 8.0, + "y": 8.0 + }, + "radius": 3.25, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } } }, { @@ -2678,8 +3491,8 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "type": "move_path_pen", "path": "[uuid]", "to": { - "x": 2.8499999999999996, - "y": 13.0, + "x": 11.25, + "y": 8.0, "z": 0.0 } } @@ -2695,321 +3508,55 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 6.9, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } + "type": "start_path" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 9.75, - "y": 9.75 - }, - "radius": 3.25, - "start": { - "unit": "degrees", - "value": 90.0 - }, - "end": { - "unit": "degrees", - "value": 0.0 - }, - "relative": false - } + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 21.0, + "y": 21.0, + "z": 0.0 + }, + "num_repetitions": 3, + "arc_degrees": 360.0, + "rotate_duplicates": true } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -6.9, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 16.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 6.9, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 32.25, - "y": 9.75 - }, - "radius": 3.25, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 90.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 6.9, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 16.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -6.9, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 32.25, - "y": 32.25 - }, - "radius": 3.25, - "start": { - "unit": "degrees", - "value": 270.0 - }, - "end": { - "unit": "degrees", - "value": 180.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 6.9, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -16.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -6.9, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 9.75, - "y": 32.25 - }, - "radius": 3.25, - "start": { - "unit": "degrees", - "value": 360.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -6.9, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -16.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -3034,9 +3581,9 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -3048,15 +3595,6 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "hole_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -3066,33 +3604,6 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "hole_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -3120,6 +3631,14 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3131,8 +3650,648 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -3148,30 +4307,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3186,39 +4327,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3233,39 +4347,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3280,39 +4367,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3327,39 +4387,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3374,39 +4407,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3421,39 +4427,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3468,39 +4447,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3515,39 +4467,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3562,39 +4487,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3609,39 +4507,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3656,39 +4527,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3703,18 +4547,10 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3731,39 +4567,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3778,39 +4587,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3825,39 +4607,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3872,39 +4627,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3919,39 +4647,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3966,39 +4667,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4013,39 +4687,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4060,39 +4707,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4107,39 +4727,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4154,39 +4747,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4201,39 +4767,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4248,28 +4787,48 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", "edge_id": "[uuid]", - "face_id": "[uuid]" + "radius": 4.0, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "radius": 4.0, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 4.0, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 4.0, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { @@ -4367,481 +4926,6 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 42.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 42.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 42.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 2.8499999999999996, - "y": 13.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 6.9, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 9.75, - "y": 9.75 - }, - "radius": 3.25, - "start": { - "unit": "degrees", - "value": 90.0 - }, - "end": { - "unit": "degrees", - "value": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -6.9, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 16.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 6.9, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 32.25, - "y": 9.75 - }, - "radius": 3.25, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 90.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 6.9, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 16.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -6.9, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 32.25, - "y": 32.25 - }, - "radius": 3.25, - "start": { - "unit": "degrees", - "value": 270.0 - }, - "end": { - "unit": "degrees", - "value": 180.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 6.9, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -16.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -6.9, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 9.75, - "y": 32.25 - }, - "radius": 3.25, - "start": { - "unit": "degrees", - "value": 360.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -6.9, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -16.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, { "cmdId": "[uuid]", "range": [], @@ -4853,6 +4937,14 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4864,8 +4956,540 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -4881,30 +5505,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4919,39 +5525,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4966,39 +5545,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5013,39 +5565,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5060,39 +5585,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5107,39 +5605,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5154,39 +5625,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5201,39 +5645,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5248,39 +5665,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5295,39 +5685,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5342,18 +5705,10 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5370,39 +5725,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5417,39 +5745,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5464,39 +5765,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5511,39 +5785,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5558,39 +5805,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5605,39 +5825,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5652,39 +5845,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5699,39 +5865,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5746,39 +5885,12 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5793,28 +5905,48 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", "edge_id": "[uuid]", - "face_id": "[uuid]" + "radius": 4.0, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "radius": 4.0, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 4.0, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 4.0, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { @@ -5857,54 +5989,6 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 4.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 4.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 4.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 4.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6083,54 +6167,6 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl ] } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 4.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 4.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 4.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 4.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6308,41 +6344,5 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl ] ] } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/artifact_graph_flowchart.snap.md index 39370ff85..cac0eeac8 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/artifact_graph_flowchart.snap.md @@ -1,449 +1,449 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[922, 947, 0]"] - 3["Segment
[955, 977, 0]"] - 4["Segment
[985, 1029, 0]"] - 5["Segment
[1037, 1064, 0]"] - 6["Segment
[1072, 1116, 0]"] - 7["Segment
[1124, 1131, 0]"] - 8[Solid2d] + subgraph path11 [Path] + 11["Path
[922, 947, 0]"] + 18["Segment
[955, 977, 0]"] + 21["Segment
[985, 1029, 0]"] + 23["Segment
[1037, 1064, 0]"] + 25["Segment
[1072, 1116, 0]"] + 27["Segment
[1124, 1131, 0]"] + 72[Solid2d] end - subgraph path28 [Path] - 28["Path
[922, 947, 0]"] - 29["Segment
[955, 977, 0]"] - 30["Segment
[985, 1029, 0]"] - 31["Segment
[1037, 1064, 0]"] - 32["Segment
[1072, 1116, 0]"] - 33["Segment
[1124, 1131, 0]"] - 34[Solid2d] + subgraph path12 [Path] + 12["Path
[922, 947, 0]"] + 19["Segment
[955, 977, 0]"] + 20["Segment
[985, 1029, 0]"] + 22["Segment
[1037, 1064, 0]"] + 24["Segment
[1072, 1116, 0]"] + 26["Segment
[1124, 1131, 0]"] + 76[Solid2d] end - subgraph path54 [Path] - 54["Path
[4593, 4673, 0]"] - 55["Segment
[4593, 4673, 0]"] - 56[Solid2d] + subgraph path13 [Path] + 13["Path
[2723, 2810, 0]"] + 29["Segment
[2818, 2897, 0]"] + 30["Segment
[2905, 2970, 0]"] + 33["Segment
[2978, 3060, 0]"] + 35["Segment
[3068, 3114, 0]"] + 37["Segment
[3122, 3201, 0]"] + 39["Segment
[3209, 3276, 0]"] + 40["Segment
[3284, 3363, 0]"] + 43["Segment
[3371, 3417, 0]"] + 44["Segment
[3425, 3507, 0]"] + 47["Segment
[3515, 3583, 0]"] + 49["Segment
[3591, 3670, 0]"] + 50["Segment
[3678, 3743, 0]"] + 52["Segment
[3751, 3833, 0]"] + 55["Segment
[3841, 3909, 0]"] + 56["Segment
[3917, 3999, 0]"] + 58["Segment
[4007, 4056, 0]"] + 61["Segment
[4064, 4071, 0]"] + 73[Solid2d] end - subgraph path58 [Path] - 58["Path
[4214, 4239, 0]"] - 59["Segment
[4247, 4288, 0]"] - 60["Segment
[4296, 4337, 0]"] - 61["Segment
[4345, 4398, 0]"] - 62["Segment
[4406, 4427, 0]"] - 63[Solid2d] + subgraph path14 [Path] + 14["Path
[2723, 2810, 0]"] + 28["Segment
[2818, 2897, 0]"] + 31["Segment
[2905, 2970, 0]"] + 32["Segment
[2978, 3060, 0]"] + 34["Segment
[3068, 3114, 0]"] + 36["Segment
[3122, 3201, 0]"] + 38["Segment
[3209, 3276, 0]"] + 41["Segment
[3284, 3363, 0]"] + 42["Segment
[3371, 3417, 0]"] + 45["Segment
[3425, 3507, 0]"] + 46["Segment
[3515, 3583, 0]"] + 48["Segment
[3591, 3670, 0]"] + 51["Segment
[3678, 3743, 0]"] + 53["Segment
[3751, 3833, 0]"] + 54["Segment
[3841, 3909, 0]"] + 57["Segment
[3917, 3999, 0]"] + 59["Segment
[4007, 4056, 0]"] + 60["Segment
[4064, 4071, 0]"] + 75[Solid2d] end - subgraph path65 [Path] - 65["Path
[2723, 2810, 0]"] - 66["Segment
[2818, 2897, 0]"] - 67["Segment
[2905, 2970, 0]"] - 68["Segment
[2978, 3060, 0]"] - 69["Segment
[3068, 3114, 0]"] - 70["Segment
[3122, 3201, 0]"] - 71["Segment
[3209, 3276, 0]"] - 72["Segment
[3284, 3363, 0]"] - 73["Segment
[3371, 3417, 0]"] - 74["Segment
[3425, 3507, 0]"] - 75["Segment
[3515, 3583, 0]"] - 76["Segment
[3591, 3670, 0]"] - 77["Segment
[3678, 3743, 0]"] - 78["Segment
[3751, 3833, 0]"] - 79["Segment
[3841, 3909, 0]"] - 80["Segment
[3917, 3999, 0]"] - 81["Segment
[4007, 4056, 0]"] - 82["Segment
[4064, 4071, 0]"] - 83[Solid2d] + subgraph path15 [Path] + 15["Path
[4214, 4239, 0]"] + 62["Segment
[4247, 4288, 0]"] + 65["Segment
[4296, 4337, 0]"] + 66["Segment
[4345, 4398, 0]"] + 68["Segment
[4406, 4427, 0]"] + 74[Solid2d] end - subgraph path100 [Path] - 100["Path
[4214, 4239, 0]"] - 101["Segment
[4247, 4288, 0]"] - 102["Segment
[4296, 4337, 0]"] - 103["Segment
[4345, 4398, 0]"] - 104["Segment
[4406, 4427, 0]"] - 105[Solid2d] + subgraph path16 [Path] + 16["Path
[4214, 4239, 0]"] + 63["Segment
[4247, 4288, 0]"] + 64["Segment
[4296, 4337, 0]"] + 67["Segment
[4345, 4398, 0]"] + 69["Segment
[4406, 4427, 0]"] + 77[Solid2d] end - subgraph path106 [Path] - 106["Path
[2723, 2810, 0]"] - 107["Segment
[2818, 2897, 0]"] - 108["Segment
[2905, 2970, 0]"] - 109["Segment
[2978, 3060, 0]"] - 110["Segment
[3068, 3114, 0]"] - 111["Segment
[3122, 3201, 0]"] - 112["Segment
[3209, 3276, 0]"] - 113["Segment
[3284, 3363, 0]"] - 114["Segment
[3371, 3417, 0]"] - 115["Segment
[3425, 3507, 0]"] - 116["Segment
[3515, 3583, 0]"] - 117["Segment
[3591, 3670, 0]"] - 118["Segment
[3678, 3743, 0]"] - 119["Segment
[3751, 3833, 0]"] - 120["Segment
[3841, 3909, 0]"] - 121["Segment
[3917, 3999, 0]"] - 122["Segment
[4007, 4056, 0]"] - 123["Segment
[4064, 4071, 0]"] - 124[Solid2d] + subgraph path17 [Path] + 17["Path
[4593, 4673, 0]"] + 70["Segment
[4593, 4673, 0]"] + 71[Solid2d] end 1["Plane
[1217, 1255, 0]"] - 9["Sweep Extrusion
[1204, 1298, 0]"] - 10[Wall] - 11[Wall] - 12[Wall] - 13[Wall] - 14[Wall] - 15["Cap Start"] - 16["Cap End"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 23["SweepEdge Opposite"] - 24["SweepEdge Adjacent"] - 25["SweepEdge Opposite"] - 26["SweepEdge Adjacent"] - 27["Plane
[1711, 1749, 0]"] - 35["Sweep Revolve
[1698, 1780, 0]"] - 36[Wall] - 37[Wall] - 38[Wall] - 39[Wall] - 40[Wall] - 41["Cap Start"] - 42["Cap End"] - 43["SweepEdge Opposite"] - 44["SweepEdge Adjacent"] - 45["SweepEdge Opposite"] - 46["SweepEdge Adjacent"] - 47["SweepEdge Opposite"] - 48["SweepEdge Adjacent"] - 49["SweepEdge Opposite"] - 50["SweepEdge Adjacent"] - 51["SweepEdge Opposite"] - 52["SweepEdge Adjacent"] - 53["Plane
[4570, 4587, 0]"] - 57["Plane
[4186, 4206, 0]"] - 64["Plane
[2695, 2715, 0]"] - 84["Sweep Extrusion
[5026, 5068, 0]"] + 2["Plane
[1711, 1749, 0]"] + 3["Plane
[2695, 2715, 0]"] + 4["Plane
[4186, 4206, 0]"] + 5["Plane
[4570, 4587, 0]"] + 6["Plane
[5562, 5597, 0]"] + 7["StartSketchOnPlane
[2695, 2715, 0]"] + 8["StartSketchOnPlane
[894, 914, 0]"] + 9["StartSketchOnPlane
[894, 914, 0]"] + 10["StartSketchOnPlane
[4186, 4206, 0]"] + 78["Sweep Extrusion
[1204, 1298, 0]"] + 79["Sweep Revolve
[1698, 1780, 0]"] + 80["Sweep Extrusion
[5026, 5068, 0]"] + 81["Sweep Extrusion
[5680, 5731, 0]"] + 82[Wall] + 83[Wall] + 84[Wall] 85[Wall] 86[Wall] 87[Wall] 88[Wall] - 89["Cap Start"] - 90["Cap End"] - 91["SweepEdge Opposite"] - 92["SweepEdge Adjacent"] - 93["SweepEdge Opposite"] - 94["SweepEdge Adjacent"] - 95["SweepEdge Opposite"] - 96["SweepEdge Adjacent"] - 97["SweepEdge Opposite"] - 98["SweepEdge Adjacent"] - 99["Plane
[5562, 5597, 0]"] - 125["Sweep Extrusion
[5680, 5731, 0]"] - 126[Wall] - 127[Wall] - 128[Wall] - 129[Wall] - 130["Cap Start"] - 131["Cap End"] - 132["SweepEdge Opposite"] + 89[Wall] + 90[Wall] + 91[Wall] + 92[Wall] + 93[Wall] + 94[Wall] + 95[Wall] + 96[Wall] + 97[Wall] + 98[Wall] + 99[Wall] + 100["Cap Start"] + 101["Cap Start"] + 102["Cap Start"] + 103["Cap Start"] + 104["Cap End"] + 105["Cap End"] + 106["Cap End"] + 107["Cap End"] + 108["SweepEdge Opposite"] + 109["SweepEdge Opposite"] + 110["SweepEdge Opposite"] + 111["SweepEdge Opposite"] + 112["SweepEdge Opposite"] + 113["SweepEdge Opposite"] + 114["SweepEdge Opposite"] + 115["SweepEdge Opposite"] + 116["SweepEdge Opposite"] + 117["SweepEdge Opposite"] + 118["SweepEdge Opposite"] + 119["SweepEdge Opposite"] + 120["SweepEdge Opposite"] + 121["SweepEdge Opposite"] + 122["SweepEdge Opposite"] + 123["SweepEdge Opposite"] + 124["SweepEdge Opposite"] + 125["SweepEdge Opposite"] + 126["SweepEdge Adjacent"] + 127["SweepEdge Adjacent"] + 128["SweepEdge Adjacent"] + 129["SweepEdge Adjacent"] + 130["SweepEdge Adjacent"] + 131["SweepEdge Adjacent"] + 132["SweepEdge Adjacent"] 133["SweepEdge Adjacent"] - 134["SweepEdge Opposite"] + 134["SweepEdge Adjacent"] 135["SweepEdge Adjacent"] - 136["SweepEdge Opposite"] + 136["SweepEdge Adjacent"] 137["SweepEdge Adjacent"] - 138["SweepEdge Opposite"] + 138["SweepEdge Adjacent"] 139["SweepEdge Adjacent"] - 140["EdgeCut Fillet
[5131, 5470, 0]"] - 141["EdgeCut Fillet
[5131, 5470, 0]"] - 142["EdgeCut Fillet
[5131, 5470, 0]"] - 143["EdgeCut Fillet
[5131, 5470, 0]"] - 144["EdgeCut Fillet
[5795, 6139, 0]"] - 145["EdgeCut Fillet
[5795, 6139, 0]"] - 146["EdgeCut Fillet
[5795, 6139, 0]"] - 147["EdgeCut Fillet
[5795, 6139, 0]"] - 148["StartSketchOnPlane
[894, 914, 0]"] - 149["StartSketchOnPlane
[894, 914, 0]"] - 150["StartSketchOnPlane
[4186, 4206, 0]"] - 151["StartSketchOnPlane
[2695, 2715, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 ---- 9 - 2 --- 8 + 140["SweepEdge Adjacent"] + 141["SweepEdge Adjacent"] + 142["SweepEdge Adjacent"] + 143["SweepEdge Adjacent"] + 144["EdgeCut Fillet
[5131, 5470, 0]"] + 145["EdgeCut Fillet
[5131, 5470, 0]"] + 146["EdgeCut Fillet
[5131, 5470, 0]"] + 147["EdgeCut Fillet
[5131, 5470, 0]"] + 148["EdgeCut Fillet
[5795, 6139, 0]"] + 149["EdgeCut Fillet
[5795, 6139, 0]"] + 150["EdgeCut Fillet
[5795, 6139, 0]"] + 151["EdgeCut Fillet
[5795, 6139, 0]"] + 1 <--x 9 + 1 --- 11 + 2 <--x 8 + 2 --- 12 3 --- 14 - 3 --- 25 - 3 --- 26 - 3 x--> 15 - 4 --- 13 - 4 --- 23 - 4 --- 24 - 4 x--> 15 - 5 --- 12 - 5 --- 21 - 5 --- 22 - 5 x--> 15 - 6 --- 11 - 6 --- 19 - 6 --- 20 - 6 x--> 15 - 7 --- 10 - 7 --- 17 - 7 --- 18 - 7 x--> 15 - 9 --- 10 - 9 --- 11 - 9 --- 12 - 9 --- 13 - 9 --- 14 - 9 --- 15 - 9 --- 16 - 9 --- 17 - 9 --- 18 - 9 --- 19 - 9 --- 20 - 9 --- 21 - 9 --- 22 - 9 --- 23 - 9 --- 24 - 9 --- 25 - 9 --- 26 - 17 <--x 10 - 17 <--x 16 - 18 <--x 10 - 18 <--x 14 - 19 <--x 11 - 19 <--x 16 - 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 16 - 22 <--x 11 - 22 <--x 12 - 23 <--x 13 - 23 <--x 16 - 24 <--x 12 - 24 <--x 13 - 25 <--x 14 - 25 <--x 16 - 26 <--x 13 - 26 <--x 14 - 27 --- 28 - 28 --- 29 - 28 --- 30 - 28 --- 31 - 28 --- 32 - 28 --- 33 - 28 ---- 35 - 28 --- 34 - 29 --- 36 - 29 --- 43 - 29 --- 44 - 29 x--> 41 - 30 --- 37 - 30 --- 45 - 30 --- 46 - 30 x--> 41 - 31 --- 38 - 31 --- 47 - 31 --- 48 - 31 x--> 41 - 32 --- 39 - 32 --- 49 - 32 --- 50 - 32 x--> 41 - 33 --- 40 - 33 --- 51 - 33 --- 52 - 33 x--> 41 - 35 --- 36 - 35 --- 37 - 35 --- 38 - 35 --- 39 - 35 --- 40 - 35 --- 41 - 35 --- 42 - 35 --- 43 - 35 --- 44 - 35 --- 45 - 35 --- 46 - 35 --- 47 - 35 --- 48 - 35 --- 49 - 35 --- 50 - 35 --- 51 - 35 --- 52 - 43 <--x 36 - 43 <--x 42 - 44 <--x 36 - 44 <--x 37 - 45 <--x 37 - 45 <--x 42 - 46 <--x 37 - 46 <--x 38 - 47 <--x 38 - 47 <--x 42 - 48 <--x 38 - 48 <--x 39 - 49 <--x 39 - 49 <--x 42 - 50 <--x 39 - 50 <--x 40 - 51 <--x 40 - 51 <--x 42 - 52 <--x 40 - 52 <--x 36 - 53 --- 54 - 54 --- 55 - 54 --- 56 - 57 --- 58 - 58 --- 59 - 58 --- 60 - 58 --- 61 - 58 --- 62 - 58 ---- 84 - 58 --- 63 - 59 --- 85 - 59 --- 91 - 59 --- 92 - 59 x--> 90 - 60 --- 86 - 60 --- 93 - 60 --- 94 - 60 x--> 90 - 61 --- 87 - 61 --- 95 - 61 --- 96 - 61 x--> 90 - 62 --- 88 - 62 --- 97 - 62 --- 98 - 62 x--> 90 - 64 --- 65 - 65 --- 66 - 65 --- 67 - 65 --- 68 - 65 --- 69 - 65 --- 70 - 65 --- 71 - 65 --- 72 - 65 --- 73 - 65 --- 74 - 65 --- 75 - 65 --- 76 - 65 --- 77 - 65 --- 78 - 65 --- 79 - 65 --- 80 - 65 --- 81 - 65 --- 82 - 65 --- 83 - 84 --- 85 - 84 --- 86 - 84 --- 87 - 84 --- 88 - 84 --- 89 - 84 --- 90 - 84 --- 91 - 84 --- 92 - 84 --- 93 - 84 --- 94 - 84 --- 95 - 84 --- 96 - 84 --- 97 - 84 --- 98 - 91 <--x 85 - 91 <--x 89 - 93 <--x 86 - 93 <--x 89 - 94 <--x 86 - 94 <--x 87 - 95 <--x 87 - 95 <--x 89 - 97 <--x 88 - 97 <--x 89 - 98 <--x 85 - 98 <--x 88 - 99 --- 100 - 99 --- 106 - 100 --- 101 - 100 --- 102 - 100 --- 103 - 100 --- 104 - 100 ---- 125 - 100 --- 105 - 101 --- 126 - 101 --- 132 - 101 --- 133 - 101 x--> 131 - 102 --- 127 - 102 --- 134 - 102 --- 135 - 102 x--> 131 - 103 --- 128 - 103 --- 136 - 103 --- 137 - 103 x--> 131 - 104 --- 129 - 104 --- 138 - 104 --- 139 - 104 x--> 131 - 106 --- 107 - 106 --- 108 - 106 --- 109 - 106 --- 110 - 106 --- 111 - 106 --- 112 - 106 --- 113 - 106 --- 114 - 106 --- 115 - 106 --- 116 - 106 --- 117 - 106 --- 118 - 106 --- 119 - 106 --- 120 - 106 --- 121 - 106 --- 122 - 106 --- 123 - 106 --- 124 - 125 --- 126 - 125 --- 127 - 125 --- 128 - 125 --- 129 - 125 --- 130 - 125 --- 131 - 125 --- 132 - 125 --- 133 - 125 --- 134 - 125 --- 135 - 125 --- 136 - 125 --- 137 - 125 --- 138 - 125 --- 139 - 132 <--x 126 - 132 <--x 130 - 134 <--x 127 - 134 <--x 130 - 135 <--x 127 - 135 <--x 128 - 136 <--x 128 - 136 <--x 130 - 138 <--x 129 - 138 <--x 130 - 139 <--x 126 - 139 <--x 129 - 92 <--x 140 - 98 <--x 141 - 96 <--x 142 - 94 <--x 143 - 133 <--x 144 - 139 <--x 145 - 137 <--x 146 - 135 <--x 147 - 1 <--x 148 - 27 <--x 149 - 99 <--x 150 - 99 <--x 151 + 4 --- 16 + 5 --- 17 + 6 <--x 7 + 6 <--x 10 + 6 --- 13 + 6 --- 15 + 11 --- 18 + 11 --- 21 + 11 --- 23 + 11 --- 25 + 11 --- 27 + 11 --- 72 + 11 ---- 78 + 12 --- 19 + 12 --- 20 + 12 --- 22 + 12 --- 24 + 12 --- 26 + 12 --- 76 + 12 ---- 79 + 13 --- 29 + 13 --- 30 + 13 --- 33 + 13 --- 35 + 13 --- 37 + 13 --- 39 + 13 --- 40 + 13 --- 43 + 13 --- 44 + 13 --- 47 + 13 --- 49 + 13 --- 50 + 13 --- 52 + 13 --- 55 + 13 --- 56 + 13 --- 58 + 13 --- 61 + 13 --- 73 + 14 --- 28 + 14 --- 31 + 14 --- 32 + 14 --- 34 + 14 --- 36 + 14 --- 38 + 14 --- 41 + 14 --- 42 + 14 --- 45 + 14 --- 46 + 14 --- 48 + 14 --- 51 + 14 --- 53 + 14 --- 54 + 14 --- 57 + 14 --- 59 + 14 --- 60 + 14 --- 75 + 15 --- 62 + 15 --- 65 + 15 --- 66 + 15 --- 68 + 15 --- 74 + 15 ---- 81 + 16 --- 63 + 16 --- 64 + 16 --- 67 + 16 --- 69 + 16 --- 77 + 16 ---- 80 + 17 --- 70 + 17 --- 71 + 18 --- 87 + 18 x--> 101 + 18 --- 116 + 18 --- 133 + 19 --- 93 + 19 x--> 102 + 19 --- 119 + 19 --- 139 + 20 --- 91 + 20 x--> 102 + 20 --- 120 + 20 --- 135 + 21 --- 86 + 21 x--> 101 + 21 --- 115 + 21 --- 131 + 22 --- 92 + 22 x--> 102 + 22 --- 117 + 22 --- 138 + 23 --- 88 + 23 x--> 101 + 23 --- 113 + 23 --- 130 + 24 --- 94 + 24 x--> 102 + 24 --- 121 + 24 --- 136 + 25 --- 90 + 25 x--> 101 + 25 --- 114 + 25 --- 132 + 26 --- 95 + 26 x--> 102 + 26 --- 118 + 26 --- 137 + 27 --- 89 + 27 x--> 101 + 27 --- 112 + 27 --- 134 + 62 --- 84 + 62 x--> 104 + 62 --- 110 + 62 --- 128 + 63 --- 99 + 63 x--> 107 + 63 --- 125 + 63 --- 141 + 64 --- 97 + 64 x--> 107 + 64 --- 122 + 64 --- 142 + 65 --- 85 + 65 x--> 104 + 65 --- 109 + 65 --- 127 + 66 --- 82 + 66 x--> 104 + 66 --- 108 + 66 --- 126 + 67 --- 96 + 67 x--> 107 + 67 --- 124 + 67 --- 143 + 68 --- 83 + 68 x--> 104 + 68 --- 111 + 68 --- 129 + 69 --- 98 + 69 x--> 107 + 69 --- 123 + 69 --- 140 + 78 --- 86 + 78 --- 87 + 78 --- 88 + 78 --- 89 + 78 --- 90 + 78 --- 101 + 78 --- 105 + 78 --- 112 + 78 --- 113 + 78 --- 114 + 78 --- 115 + 78 --- 116 + 78 --- 130 + 78 --- 131 + 78 --- 132 + 78 --- 133 + 78 --- 134 + 79 --- 91 + 79 --- 92 + 79 --- 93 + 79 --- 94 + 79 --- 95 + 79 --- 102 + 79 --- 106 + 79 --- 117 + 79 --- 118 + 79 --- 119 + 79 --- 120 + 79 --- 121 + 79 --- 135 + 79 --- 136 + 79 --- 137 + 79 --- 138 + 79 --- 139 + 80 --- 96 + 80 --- 97 + 80 --- 98 + 80 --- 99 + 80 --- 103 + 80 --- 107 + 80 --- 122 + 80 --- 123 + 80 --- 124 + 80 --- 125 + 80 --- 140 + 80 --- 141 + 80 --- 142 + 80 --- 143 + 81 --- 82 + 81 --- 83 + 81 --- 84 + 81 --- 85 + 81 --- 100 + 81 --- 104 + 81 --- 108 + 81 --- 109 + 81 --- 110 + 81 --- 111 + 81 --- 126 + 81 --- 127 + 81 --- 128 + 81 --- 129 + 108 <--x 82 + 127 <--x 82 + 111 <--x 83 + 129 <--x 83 + 110 <--x 84 + 129 <--x 84 + 109 <--x 85 + 127 <--x 85 + 115 <--x 86 + 131 <--x 86 + 133 <--x 86 + 116 <--x 87 + 133 <--x 87 + 134 <--x 87 + 113 <--x 88 + 130 <--x 88 + 131 <--x 88 + 112 <--x 89 + 132 <--x 89 + 134 <--x 89 + 114 <--x 90 + 130 <--x 90 + 132 <--x 90 + 120 <--x 91 + 135 <--x 91 + 139 <--x 91 + 117 <--x 92 + 135 <--x 92 + 138 <--x 92 + 119 <--x 93 + 137 <--x 93 + 139 <--x 93 + 121 <--x 94 + 136 <--x 94 + 138 <--x 94 + 118 <--x 95 + 136 <--x 95 + 137 <--x 95 + 124 <--x 96 + 142 <--x 96 + 122 <--x 97 + 142 <--x 97 + 123 <--x 98 + 140 <--x 98 + 125 <--x 99 + 140 <--x 99 + 108 <--x 100 + 109 <--x 100 + 110 <--x 100 + 111 <--x 100 + 122 <--x 103 + 123 <--x 103 + 124 <--x 103 + 125 <--x 103 + 112 <--x 105 + 113 <--x 105 + 114 <--x 105 + 115 <--x 105 + 116 <--x 105 + 117 <--x 106 + 118 <--x 106 + 119 <--x 106 + 120 <--x 106 + 121 <--x 106 + 126 <--x 150 + 127 <--x 151 + 128 <--x 148 + 129 <--x 149 + 140 <--x 145 + 141 <--x 144 + 142 <--x 147 + 143 <--x 146 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/ops.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/ops.snap index 0e444ffd3..af0246453 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/ops.snap @@ -3,47 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed gridfinity-baseplate-magnets.kcl --- [ - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "face", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -60,7 +19,19 @@ description: Operations executed gridfinity-baseplate-magnets.kcl "unlabeledArg": null }, { - "type": "GroupEnd" + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { "labeledArgs": { @@ -94,6 +65,47 @@ description: Operations executed gridfinity-baseplate-magnets.kcl "sourceRange": [] } }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "face", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, { "labeledArgs": { "arcDegrees": { @@ -243,65 +255,6 @@ description: Operations executed gridfinity-baseplate-magnets.kcl "sourceRange": [] } }, - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "face", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, { "type": "KclStdLibCall", "name": "revolve", @@ -409,6 +362,47 @@ description: Operations executed gridfinity-baseplate-magnets.kcl }, "sourceRange": [] }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "face", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, { "labeledArgs": { "arcDegrees": { @@ -1094,15 +1088,19 @@ description: Operations executed gridfinity-baseplate-magnets.kcl "unlabeledArg": null }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "magnetBase", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } }, - "sourceRange": [] + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { "labeledArgs": { @@ -1119,6 +1117,82 @@ description: Operations executed gridfinity-baseplate-magnets.kcl "type": "StdLibCall", "unlabeledArg": null }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "magnetCenterCutout", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, { "type": "GroupBegin", "group": { @@ -1146,35 +1220,15 @@ description: Operations executed gridfinity-baseplate-magnets.kcl "unlabeledArg": null }, { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "magnetBase", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" + "sourceRange": [] }, { "labeledArgs": { @@ -1312,6 +1366,17 @@ description: Operations executed gridfinity-baseplate-magnets.kcl }, "sourceRange": [] }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "magnetBase", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -1342,89 +1407,6 @@ description: Operations executed gridfinity-baseplate-magnets.kcl }, "sourceRange": [] }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "magnetBase", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "magnetCenterCutout", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "length": { @@ -1914,5 +1896,23 @@ description: Operations executed gridfinity-baseplate-magnets.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/artifact_commands.snap index a43ffa927..c5d2bfb72 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/artifact_commands.snap @@ -33,38 +33,15 @@ description: Artifact commands gridfinity-baseplate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "make_plane", - "origin": { - "x": 4.0, + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, "y": 0.0, "z": 0.0 - }, - "x_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "size": 100.0, - "clobber": false, - "hide": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 } } }, @@ -88,7 +65,13 @@ description: Artifact commands gridfinity-baseplate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } } }, { @@ -104,6 +87,24 @@ description: Artifact commands gridfinity-baseplate.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -111,6 +112,27 @@ description: Artifact commands gridfinity-baseplate.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -128,6 +150,40 @@ description: Artifact commands gridfinity-baseplate.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 4.65, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 2.15, + "y": -2.15, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -162,6 +218,23 @@ description: Artifact commands gridfinity-baseplate.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.8, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -179,6 +252,31 @@ description: Artifact commands gridfinity-baseplate.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.7, + "y": -0.7, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -214,6 +312,14 @@ description: Artifact commands gridfinity-baseplate.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -225,8 +331,135 @@ description: Artifact commands gridfinity-baseplate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -242,30 +475,12 @@ description: Artifact commands gridfinity-baseplate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -280,39 +495,12 @@ description: Artifact commands gridfinity-baseplate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -327,18 +515,10 @@ description: Artifact commands gridfinity-baseplate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -355,39 +535,12 @@ description: Artifact commands gridfinity-baseplate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -398,43 +551,6 @@ description: Artifact commands gridfinity-baseplate.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -449,51 +565,12 @@ description: Artifact commands gridfinity-baseplate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "entity_circular_pattern", - "entity_id": "[uuid]", - "axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "center": { - "x": 21.0, - "y": 21.0, - "z": 0.0 - }, - "num_repetitions": 3, - "arc_degrees": 360.0, - "rotate_duplicates": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -537,119 +614,29 @@ description: Artifact commands gridfinity-baseplate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "enable_sketch_mode", + "type": "entity_circular_pattern", "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { + "axis": { "x": 0.0, "y": 0.0, + "z": 1.0 + }, + "center": { + "x": 21.0, + "y": 21.0, "z": 0.0 - } + }, + "num_repetitions": 3, + "arc_degrees": 360.0, + "rotate_duplicates": true } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 4.65, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 2.15, - "y": -2.15, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.8, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.7, - "y": -0.7, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -681,8 +668,135 @@ description: Artifact commands gridfinity-baseplate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -698,30 +812,12 @@ description: Artifact commands gridfinity-baseplate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -736,39 +832,12 @@ description: Artifact commands gridfinity-baseplate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -783,18 +852,10 @@ description: Artifact commands gridfinity-baseplate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -811,39 +872,12 @@ description: Artifact commands gridfinity-baseplate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -858,39 +892,12 @@ description: Artifact commands gridfinity-baseplate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -905,28 +912,39 @@ description: Artifact commands gridfinity-baseplate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "make_plane", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "size": 100.0, + "clobber": false, + "hide": false } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } } }, { @@ -2373,23 +2391,5 @@ description: Artifact commands gridfinity-baseplate.kcl ] ] } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/artifact_graph_flowchart.snap.md index 23af0cbe4..e6eae9b40 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/artifact_graph_flowchart.snap.md @@ -1,193 +1,193 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[799, 824, 0]"] - 3["Segment
[832, 854, 0]"] - 4["Segment
[862, 906, 0]"] - 5["Segment
[914, 941, 0]"] - 6["Segment
[949, 993, 0]"] - 7["Segment
[1001, 1008, 0]"] - 8[Solid2d] + subgraph path5 [Path] + 5["Path
[799, 824, 0]"] + 7["Segment
[832, 854, 0]"] + 10["Segment
[862, 906, 0]"] + 12["Segment
[914, 941, 0]"] + 14["Segment
[949, 993, 0]"] + 16["Segment
[1001, 1008, 0]"] + 17[Solid2d] end - subgraph path28 [Path] - 28["Path
[799, 824, 0]"] - 29["Segment
[832, 854, 0]"] - 30["Segment
[862, 906, 0]"] - 31["Segment
[914, 941, 0]"] - 32["Segment
[949, 993, 0]"] - 33["Segment
[1001, 1008, 0]"] - 34[Solid2d] + subgraph path6 [Path] + 6["Path
[799, 824, 0]"] + 8["Segment
[832, 854, 0]"] + 9["Segment
[862, 906, 0]"] + 11["Segment
[914, 941, 0]"] + 13["Segment
[949, 993, 0]"] + 15["Segment
[1001, 1008, 0]"] + 18[Solid2d] end 1["Plane
[1094, 1132, 0]"] - 9["Sweep Extrusion
[1081, 1175, 0]"] - 10[Wall] - 11[Wall] - 12[Wall] - 13[Wall] - 14[Wall] - 15["Cap Start"] - 16["Cap End"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 23["SweepEdge Opposite"] - 24["SweepEdge Adjacent"] - 25["SweepEdge Opposite"] - 26["SweepEdge Adjacent"] - 27["Plane
[1588, 1626, 0]"] - 35["Sweep Revolve
[1575, 1657, 0]"] - 36[Wall] - 37[Wall] - 38[Wall] - 39[Wall] - 40[Wall] - 41["Cap Start"] - 42["Cap End"] + 2["Plane
[1588, 1626, 0]"] + 3["StartSketchOnPlane
[771, 791, 0]"] + 4["StartSketchOnPlane
[771, 791, 0]"] + 19["Sweep Extrusion
[1081, 1175, 0]"] + 20["Sweep Revolve
[1575, 1657, 0]"] + 21[Wall] + 22[Wall] + 23[Wall] + 24[Wall] + 25[Wall] + 26[Wall] + 27[Wall] + 28[Wall] + 29[Wall] + 30[Wall] + 31["Cap Start"] + 32["Cap Start"] + 33["Cap End"] + 34["Cap End"] + 35["SweepEdge Opposite"] + 36["SweepEdge Opposite"] + 37["SweepEdge Opposite"] + 38["SweepEdge Opposite"] + 39["SweepEdge Opposite"] + 40["SweepEdge Opposite"] + 41["SweepEdge Opposite"] + 42["SweepEdge Opposite"] 43["SweepEdge Opposite"] - 44["SweepEdge Adjacent"] - 45["SweepEdge Opposite"] + 44["SweepEdge Opposite"] + 45["SweepEdge Adjacent"] 46["SweepEdge Adjacent"] - 47["SweepEdge Opposite"] + 47["SweepEdge Adjacent"] 48["SweepEdge Adjacent"] - 49["SweepEdge Opposite"] + 49["SweepEdge Adjacent"] 50["SweepEdge Adjacent"] - 51["SweepEdge Opposite"] + 51["SweepEdge Adjacent"] 52["SweepEdge Adjacent"] - 53["StartSketchOnPlane
[771, 791, 0]"] - 54["StartSketchOnPlane
[771, 791, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 + 53["SweepEdge Adjacent"] + 54["SweepEdge Adjacent"] + 1 <--x 4 + 1 --- 5 + 2 <--x 3 2 --- 6 - 2 --- 7 - 2 ---- 9 - 2 --- 8 - 3 --- 14 - 3 --- 25 - 3 --- 26 - 3 x--> 15 - 4 --- 13 - 4 --- 23 - 4 --- 24 - 4 x--> 15 + 5 --- 7 + 5 --- 10 5 --- 12 - 5 --- 21 - 5 --- 22 - 5 x--> 15 + 5 --- 14 + 5 --- 16 + 5 --- 17 + 5 ---- 19 + 6 --- 8 + 6 --- 9 6 --- 11 - 6 --- 19 - 6 --- 20 - 6 x--> 15 - 7 --- 10 - 7 --- 17 - 7 --- 18 - 7 x--> 15 - 9 --- 10 - 9 --- 11 - 9 --- 12 - 9 --- 13 - 9 --- 14 - 9 --- 15 - 9 --- 16 - 9 --- 17 - 9 --- 18 - 9 --- 19 - 9 --- 20 - 9 --- 21 - 9 --- 22 - 9 --- 23 - 9 --- 24 - 9 --- 25 + 6 --- 13 + 6 --- 15 + 6 --- 18 + 6 ---- 20 + 7 --- 22 + 7 x--> 31 + 7 --- 39 + 7 --- 48 + 8 --- 28 + 8 x--> 32 + 8 --- 42 + 8 --- 54 9 --- 26 - 17 <--x 10 - 17 <--x 16 - 18 <--x 10 - 18 <--x 14 - 19 <--x 11 - 19 <--x 16 - 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 16 - 22 <--x 11 - 22 <--x 12 - 23 <--x 13 - 23 <--x 16 - 24 <--x 12 - 24 <--x 13 - 25 <--x 14 - 25 <--x 16 - 26 <--x 13 - 26 <--x 14 - 27 --- 28 - 28 --- 29 - 28 --- 30 - 28 --- 31 - 28 --- 32 - 28 --- 33 - 28 ---- 35 - 28 --- 34 - 29 --- 36 - 29 --- 43 - 29 --- 44 - 29 x--> 41 - 30 --- 37 - 30 --- 45 - 30 --- 46 - 30 x--> 41 - 31 --- 38 - 31 --- 47 - 31 --- 48 - 31 x--> 41 - 32 --- 39 - 32 --- 49 - 32 --- 50 - 32 x--> 41 - 33 --- 40 - 33 --- 51 - 33 --- 52 - 33 x--> 41 - 35 --- 36 - 35 --- 37 - 35 --- 38 - 35 --- 39 - 35 --- 40 - 35 --- 41 - 35 --- 42 - 35 --- 43 - 35 --- 44 - 35 --- 45 - 35 --- 46 - 35 --- 47 - 35 --- 48 - 35 --- 49 - 35 --- 50 - 35 --- 51 - 35 --- 52 - 43 <--x 36 - 43 <--x 42 - 44 <--x 36 - 44 <--x 37 - 45 <--x 37 - 45 <--x 42 - 46 <--x 37 - 46 <--x 38 - 47 <--x 38 - 47 <--x 42 - 48 <--x 38 - 48 <--x 39 - 49 <--x 39 - 49 <--x 42 - 50 <--x 39 - 50 <--x 40 - 51 <--x 40 - 51 <--x 42 - 52 <--x 40 - 52 <--x 36 - 1 <--x 53 - 27 <--x 54 + 9 x--> 32 + 9 --- 43 + 9 --- 50 + 10 --- 21 + 10 x--> 31 + 10 --- 38 + 10 --- 46 + 11 --- 27 + 11 x--> 32 + 11 --- 40 + 11 --- 53 + 12 --- 23 + 12 x--> 31 + 12 --- 36 + 12 --- 45 + 13 --- 29 + 13 x--> 32 + 13 --- 44 + 13 --- 51 + 14 --- 25 + 14 x--> 31 + 14 --- 37 + 14 --- 47 + 15 --- 30 + 15 x--> 32 + 15 --- 41 + 15 --- 52 + 16 --- 24 + 16 x--> 31 + 16 --- 35 + 16 --- 49 + 19 --- 21 + 19 --- 22 + 19 --- 23 + 19 --- 24 + 19 --- 25 + 19 --- 31 + 19 --- 33 + 19 --- 35 + 19 --- 36 + 19 --- 37 + 19 --- 38 + 19 --- 39 + 19 --- 45 + 19 --- 46 + 19 --- 47 + 19 --- 48 + 19 --- 49 + 20 --- 26 + 20 --- 27 + 20 --- 28 + 20 --- 29 + 20 --- 30 + 20 --- 32 + 20 --- 34 + 20 --- 40 + 20 --- 41 + 20 --- 42 + 20 --- 43 + 20 --- 44 + 20 --- 50 + 20 --- 51 + 20 --- 52 + 20 --- 53 + 20 --- 54 + 38 <--x 21 + 46 <--x 21 + 48 <--x 21 + 39 <--x 22 + 48 <--x 22 + 49 <--x 22 + 36 <--x 23 + 45 <--x 23 + 46 <--x 23 + 35 <--x 24 + 47 <--x 24 + 49 <--x 24 + 37 <--x 25 + 45 <--x 25 + 47 <--x 25 + 43 <--x 26 + 50 <--x 26 + 54 <--x 26 + 40 <--x 27 + 50 <--x 27 + 53 <--x 27 + 42 <--x 28 + 52 <--x 28 + 54 <--x 28 + 44 <--x 29 + 51 <--x 29 + 53 <--x 29 + 41 <--x 30 + 51 <--x 30 + 52 <--x 30 + 35 <--x 33 + 36 <--x 33 + 37 <--x 33 + 38 <--x 33 + 39 <--x 33 + 40 <--x 34 + 41 <--x 34 + 42 <--x 34 + 43 <--x 34 + 44 <--x 34 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/ops.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/ops.snap index b82ff8e03..5450606d5 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/ops.snap @@ -3,47 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed gridfinity-baseplate.kcl --- [ - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "face", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -60,7 +19,19 @@ description: Operations executed gridfinity-baseplate.kcl "unlabeledArg": null }, { - "type": "GroupEnd" + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { "labeledArgs": { @@ -94,6 +65,47 @@ description: Operations executed gridfinity-baseplate.kcl "sourceRange": [] } }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "face", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, { "labeledArgs": { "arcDegrees": { @@ -243,65 +255,6 @@ description: Operations executed gridfinity-baseplate.kcl "sourceRange": [] } }, - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "face", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, { "type": "KclStdLibCall", "name": "revolve", @@ -409,6 +362,47 @@ description: Operations executed gridfinity-baseplate.kcl }, "sourceRange": [] }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "face", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, { "labeledArgs": { "arcDegrees": { @@ -1077,5 +1071,11 @@ description: Operations executed gridfinity-baseplate.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/artifact_commands.snap index 22d22491f..b50ea75f7 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/artifact_commands.snap @@ -33,38 +33,15 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "make_plane", - "origin": { - "x": 4.0, + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, "y": 0.0, "z": 0.0 - }, - "x_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "size": 100.0, - "clobber": false, - "hide": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 } } }, @@ -88,7 +65,13 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 3.2, + "y": 0.0, + "z": 0.0 + } } }, { @@ -104,6 +87,24 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -111,6 +112,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -128,6 +150,40 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 4.75, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -2.95, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -162,6 +218,40 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 2.15, + "y": -2.15, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.8, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -196,6 +286,31 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.8, + "y": -0.8, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -231,6 +346,14 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -242,8 +365,135 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -259,30 +509,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -297,39 +529,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -344,18 +549,10 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -372,39 +569,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -415,43 +585,6 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -466,51 +599,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "entity_circular_pattern", - "entity_id": "[uuid]", - "axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "center": { - "x": 21.0, - "y": 21.0, - "z": 0.0 - }, - "num_repetitions": 3, - "arc_degrees": 360.0, - "rotate_duplicates": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -554,136 +648,29 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "enable_sketch_mode", + "type": "entity_circular_pattern", "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, + "axis": { + "x": 0.0, "y": 0.0, + "z": 1.0 + }, + "center": { + "x": 21.0, + "y": 21.0, "z": 0.0 - } + }, + "num_repetitions": 3, + "arc_degrees": 360.0, + "rotate_duplicates": true } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 3.2, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 4.75, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -2.95, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 2.15, - "y": -2.15, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.8, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.8, - "y": -0.8, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -715,8 +702,135 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -732,30 +846,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -770,39 +866,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -817,18 +886,10 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -845,39 +906,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -892,39 +926,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -939,28 +946,39 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "make_plane", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "size": 100.0, + "clobber": false, + "hide": false } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } } }, { @@ -1025,13 +1043,6 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1052,6 +1063,13 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1138,6 +1156,14 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1149,8 +1175,108 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1166,30 +1292,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1204,39 +1312,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1251,18 +1332,10 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1279,39 +1352,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1326,28 +1372,48 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", "edge_id": "[uuid]", - "face_id": "[uuid]" + "radius": 0.8, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "radius": 0.8, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 0.8, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 0.8, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { @@ -1394,48 +1460,8 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 0.8, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 0.8, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 0.8, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 0.8, - "tolerance": 0.0000001, - "cut_type": "fillet" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -1450,33 +1476,6 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -4.75, - "y": 8.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1506,8 +1505,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -4.75, + "y": 8.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -1547,82 +1565,24 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.4, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -1652,83 +1612,11 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -2.4, + "faces": null, + "opposite": "None" } }, { @@ -1742,89 +1630,6 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -1840,7 +1645,8 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -1851,6 +1657,158 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1864,7 +1822,7 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1873,17 +1831,16 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1902,9 +1859,70 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3564,13 +3582,6 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3584,6 +3595,15 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -3591,6 +3611,13 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3677,6 +3704,14 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3688,8 +3723,108 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -3705,30 +3840,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3743,39 +3860,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3790,18 +3880,10 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3818,39 +3900,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3865,28 +3920,48 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", "edge_id": "[uuid]", - "face_id": "[uuid]" + "radius": 3.75, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "radius": 3.75, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 3.75, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 3.75, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { @@ -3929,54 +4004,6 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 3.75, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 3.75, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 3.75, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 3.75, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4015,611 +4042,6 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "hide": true } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 5.7929, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.5, - "y": 5.7929 - }, - "radius": 0.5, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 45.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0464, - "y": -1.0464, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.8, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.7, - "y": -0.7, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.2, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.4, - "y": -1.4, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 76.5, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4645,653 +4067,6 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "hide": true } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 5.7929, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.5, - "y": 5.7929 - }, - "radius": 0.5, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 45.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0464, - "y": -1.0464, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.8, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.7, - "y": -0.7, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.2, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.4, - "y": -1.4, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 118.5, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "entity_circular_pattern", - "entity_id": "[uuid]", - "axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "center": { - "x": 42.0, - "y": 63.0, - "z": 0.0 - }, - "num_repetitions": 1, - "arc_degrees": 360.0, - "rotate_duplicates": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "entity_circular_pattern", - "entity_id": "[uuid]", - "axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "center": { - "x": 42.0, - "y": 63.0, - "z": 0.0 - }, - "num_repetitions": 1, - "arc_degrees": 360.0, - "rotate_duplicates": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -5317,602 +4092,6 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "hide": true } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 5.7929, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.5, - "y": 5.7929 - }, - "radius": 0.5, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 45.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0464, - "y": -1.0464, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.8, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.7, - "y": -0.7, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.2, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.4, - "y": -1.4, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "revolve", - "target": "[uuid]", - "origin": { - "x": 3.75, - "y": 3.75, - "z": 0.0 - }, - "axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "axis_is_2d": true, - "angle": { - "unit": "degrees", - "value": -90.0 - }, - "tolerance": 0.0000001, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5958,7 +4137,48 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } } }, { @@ -5974,6 +4194,81 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -5981,6 +4276,55 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5998,6 +4342,132 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 5.7929, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 5.7929, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 5.7929, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.5, + "y": 5.7929 + }, + "radius": 0.5, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 45.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.5, + "y": 5.7929 + }, + "radius": 0.5, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 45.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.5, + "y": 5.7929 + }, + "radius": 0.5, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 45.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -6040,6 +4510,57 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0464, + "y": -1.0464, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0464, + "y": -1.0464, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0464, + "y": -1.0464, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -6057,6 +4578,108 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.8, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.8, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.8, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.7, + "y": -0.7, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.7, + "y": -0.7, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.7, + "y": -0.7, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -6091,6 +4714,108 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.2, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.2, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.2, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.4, + "y": -1.4, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.4, + "y": -1.4, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.4, + "y": -1.4, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -6116,6 +4841,1352 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 76.5, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 118.5, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "center": { + "x": 42.0, + "y": 63.0, + "z": 0.0 + }, + "num_repetitions": 1, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "center": { + "x": 42.0, + "y": 63.0, + "z": 0.0 + }, + "num_repetitions": 1, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "revolve", + "target": "[uuid]", + "origin": { + "x": 3.75, + "y": 3.75, + "z": 0.0 + }, + "axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "axis_is_2d": true, + "angle": { + "unit": "degrees", + "value": -90.0 + }, + "tolerance": 0.0000001, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6145,8 +6216,216 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -6162,30 +6441,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6200,39 +6461,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6247,39 +6481,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6294,39 +6501,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6341,18 +6521,10 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6369,39 +6541,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6416,39 +6561,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6459,43 +6577,6 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6510,30 +6591,12 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6575,68 +6638,5 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl "arc_degrees": 360.0, "rotate_duplicates": true } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/artifact_graph_flowchart.snap.md index 72ea65b05..f690efa5d 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/artifact_graph_flowchart.snap.md @@ -1,182 +1,152 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[1187, 1233, 0]"] - 3["Segment
[1241, 1263, 0]"] - 4["Segment
[1271, 1301, 0]"] - 5["Segment
[1309, 1353, 0]"] - 6["Segment
[1361, 1388, 0]"] - 7["Segment
[1396, 1440, 0]"] - 8["Segment
[1448, 1455, 0]"] - 9[Solid2d] + subgraph path13 [Path] + 13["Path
[1187, 1233, 0]"] + 22["Segment
[1241, 1263, 0]"] + 25["Segment
[1271, 1301, 0]"] + 26["Segment
[1309, 1353, 0]"] + 28["Segment
[1361, 1388, 0]"] + 30["Segment
[1396, 1440, 0]"] + 33["Segment
[1448, 1455, 0]"] + 75[Solid2d] end - subgraph path29 [Path] - 29["Path
[1187, 1233, 0]"] - 30["Segment
[1241, 1263, 0]"] - 31["Segment
[1271, 1301, 0]"] - 32["Segment
[1309, 1353, 0]"] - 33["Segment
[1361, 1388, 0]"] - 34["Segment
[1396, 1440, 0]"] - 35["Segment
[1448, 1455, 0]"] - 36[Solid2d] + subgraph path14 [Path] + 14["Path
[1187, 1233, 0]"] + 23["Segment
[1241, 1263, 0]"] + 24["Segment
[1271, 1301, 0]"] + 27["Segment
[1309, 1353, 0]"] + 29["Segment
[1361, 1388, 0]"] + 31["Segment
[1396, 1440, 0]"] + 32["Segment
[1448, 1455, 0]"] + 81[Solid2d] end - subgraph path56 [Path] - 56["Path
[2496, 2584, 0]"] - 57["Segment
[2590, 2654, 0]"] - 58["Segment
[2660, 2724, 0]"] - 59["Segment
[2730, 2783, 0]"] - 60["Segment
[2789, 2810, 0]"] - 61[Solid2d] + subgraph path15 [Path] + 15["Path
[2496, 2584, 0]"] + 34["Segment
[2590, 2654, 0]"] + 35["Segment
[2660, 2724, 0]"] + 36["Segment
[2730, 2783, 0]"] + 37["Segment
[2789, 2810, 0]"] + 77[Solid2d] end - subgraph path81 [Path] - 81["Path
[3141, 3307, 0]"] - 82["Segment
[3141, 3307, 0]"] + subgraph path16 [Path] + 16["Path
[3141, 3307, 0]"] + 38["Segment
[3141, 3307, 0]"] + 76[Solid2d] + end + subgraph path17 [Path] + 17["Path
[4591, 4616, 0]"] + 39["Segment
[4622, 4694, 0]"] + 40["Segment
[4700, 4773, 0]"] + 41["Segment
[4779, 4832, 0]"] + 42["Segment
[4838, 4859, 0]"] + 78[Solid2d] + end + subgraph path18 [Path] + 18["Path
[5326, 5351, 0]"] + 44["Segment
[5411, 5454, 0]"] + 47["Segment
[5462, 5582, 0]"] + 54["Segment
[5645, 5694, 0]"] + 55["Segment
[5702, 5727, 0]"] + 62["Segment
[5735, 5778, 0]"] + 64["Segment
[5786, 5811, 0]"] + 67["Segment
[5819, 5863, 0]"] + 73["Segment
[5871, 5878, 0]"] + 79[Solid2d] + end + subgraph path19 [Path] + 19["Path
[5326, 5351, 0]"] + 43["Segment
[5411, 5454, 0]"] + 50["Segment
[5462, 5582, 0]"] + 52["Segment
[5645, 5694, 0]"] + 58["Segment
[5702, 5727, 0]"] + 61["Segment
[5735, 5778, 0]"] + 65["Segment
[5786, 5811, 0]"] + 70["Segment
[5819, 5863, 0]"] + 74["Segment
[5871, 5878, 0]"] + 80[Solid2d] + end + subgraph path20 [Path] + 20["Path
[5326, 5351, 0]"] + 46["Segment
[5411, 5454, 0]"] + 49["Segment
[5462, 5582, 0]"] + 53["Segment
[5645, 5694, 0]"] + 56["Segment
[5702, 5727, 0]"] + 60["Segment
[5735, 5778, 0]"] + 63["Segment
[5786, 5811, 0]"] + 69["Segment
[5819, 5863, 0]"] + 72["Segment
[5871, 5878, 0]"] + 82[Solid2d] + end + subgraph path21 [Path] + 21["Path
[5326, 5351, 0]"] + 45["Segment
[5411, 5454, 0]"] + 48["Segment
[5462, 5582, 0]"] + 51["Segment
[5645, 5694, 0]"] + 57["Segment
[5702, 5727, 0]"] + 59["Segment
[5735, 5778, 0]"] + 66["Segment
[5786, 5811, 0]"] + 68["Segment
[5819, 5863, 0]"] + 71["Segment
[5871, 5878, 0]"] 83[Solid2d] end - subgraph path93 [Path] - 93["Path
[4591, 4616, 0]"] - 94["Segment
[4622, 4694, 0]"] - 95["Segment
[4700, 4773, 0]"] - 96["Segment
[4779, 4832, 0]"] - 97["Segment
[4838, 4859, 0]"] - 98[Solid2d] - end - subgraph path119 [Path] - 119["Path
[5326, 5351, 0]"] - 120["Segment
[5411, 5454, 0]"] - 121["Segment
[5462, 5582, 0]"] - 122["Segment
[5645, 5694, 0]"] - 123["Segment
[5702, 5727, 0]"] - 124["Segment
[5735, 5778, 0]"] - 125["Segment
[5786, 5811, 0]"] - 126["Segment
[5819, 5863, 0]"] - 127["Segment
[5871, 5878, 0]"] - 128[Solid2d] - end - subgraph path157 [Path] - 157["Path
[5326, 5351, 0]"] - 158["Segment
[5411, 5454, 0]"] - 159["Segment
[5462, 5582, 0]"] - 160["Segment
[5645, 5694, 0]"] - 161["Segment
[5702, 5727, 0]"] - 162["Segment
[5735, 5778, 0]"] - 163["Segment
[5786, 5811, 0]"] - 164["Segment
[5819, 5863, 0]"] - 165["Segment
[5871, 5878, 0]"] - 166[Solid2d] - end - subgraph path195 [Path] - 195["Path
[5326, 5351, 0]"] - 196["Segment
[5411, 5454, 0]"] - 197["Segment
[5462, 5582, 0]"] - 198["Segment
[5645, 5694, 0]"] - 199["Segment
[5702, 5727, 0]"] - 200["Segment
[5735, 5778, 0]"] - 201["Segment
[5786, 5811, 0]"] - 202["Segment
[5819, 5863, 0]"] - 203["Segment
[5871, 5878, 0]"] - 204[Solid2d] - end - subgraph path233 [Path] - 233["Path
[5326, 5351, 0]"] - 234["Segment
[5411, 5454, 0]"] - 235["Segment
[5462, 5582, 0]"] - 236["Segment
[5645, 5694, 0]"] - 237["Segment
[5702, 5727, 0]"] - 238["Segment
[5735, 5778, 0]"] - 239["Segment
[5786, 5811, 0]"] - 240["Segment
[5819, 5863, 0]"] - 241["Segment
[5871, 5878, 0]"] - 242[Solid2d] - end 1["Plane
[1541, 1588, 0]"] - 10["Sweep Extrusion
[1528, 1631, 0]"] - 11[Wall] - 12[Wall] - 13[Wall] - 14[Wall] - 15[Wall] - 16["Cap Start"] - 17["Cap End"] - 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 20["SweepEdge Opposite"] - 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] - 23["SweepEdge Adjacent"] - 24["SweepEdge Opposite"] - 25["SweepEdge Adjacent"] - 26["SweepEdge Opposite"] - 27["SweepEdge Adjacent"] - 28["Plane
[2120, 2167, 0]"] - 37["Sweep Revolve
[2107, 2198, 0]"] - 38[Wall] - 39[Wall] - 40[Wall] - 41[Wall] - 42[Wall] - 43["Cap Start"] - 44["Cap End"] - 45["SweepEdge Opposite"] - 46["SweepEdge Adjacent"] - 47["SweepEdge Opposite"] - 48["SweepEdge Adjacent"] - 49["SweepEdge Opposite"] - 50["SweepEdge Adjacent"] - 51["SweepEdge Opposite"] - 52["SweepEdge Adjacent"] - 53["SweepEdge Opposite"] - 54["SweepEdge Adjacent"] - 55["Plane
[2473, 2490, 0]"] - 62["Sweep Extrusion
[2816, 2840, 0]"] - 63[Wall] - 64[Wall] - 65[Wall] - 66[Wall] - 67["Cap Start"] - 68["Cap End"] - 69["SweepEdge Opposite"] - 70["SweepEdge Adjacent"] - 71["SweepEdge Opposite"] - 72["SweepEdge Adjacent"] - 73["SweepEdge Opposite"] - 74["SweepEdge Adjacent"] - 75["SweepEdge Opposite"] - 76["SweepEdge Adjacent"] - 77["EdgeCut Fillet
[2846, 3076, 0]"] - 78["EdgeCut Fillet
[2846, 3076, 0]"] - 79["EdgeCut Fillet
[2846, 3076, 0]"] - 80["EdgeCut Fillet
[2846, 3076, 0]"] - 84["Sweep Extrusion
[3529, 3556, 0]"] - 85[Wall] - 86["Cap Start"] - 87["SweepEdge Opposite"] - 88["SweepEdge Adjacent"] + 2["Plane
[2120, 2167, 0]"] + 3["Plane
[2473, 2490, 0]"] + 4["Plane
[4552, 4584, 0]"] + 5["Plane
[5298, 5318, 0]"] + 6["Plane
[5298, 5318, 0]"] + 7["Plane
[5298, 5318, 0]"] + 8["Plane
[5298, 5318, 0]"] + 9["StartSketchOnPlane
[4538, 4585, 0]"] + 10["StartSketchOnPlane
[1159, 1179, 0]"] + 11["StartSketchOnPlane
[1159, 1179, 0]"] + 12["StartSketchOnFace
[3093, 3135, 0]"] + 84["Sweep Extrusion
[1528, 1631, 0]"] + 85["Sweep Revolve
[2107, 2198, 0]"] + 86["Sweep Extrusion
[2816, 2840, 0]"] + 87["Sweep Extrusion
[3529, 3556, 0]"] + 88["Sweep Extrusion
[3529, 3556, 0]"] 89["Sweep Extrusion
[3529, 3556, 0]"] 90["Sweep Extrusion
[3529, 3556, 0]"] - 91["Sweep Extrusion
[3529, 3556, 0]"] - 92["Plane
[4552, 4584, 0]"] - 99["Sweep Extrusion
[4865, 4909, 0]"] + 91["Sweep Extrusion
[4865, 4909, 0]"] + 92["Sweep Extrusion
[6516, 6628, 0]"] + 93["Sweep Extrusion
[6694, 6808, 0]"] + 94["Sweep Revolve
[7634, 7689, 0]"] + 95["Sweep Revolve
[7751, 7805, 0]"] + 96[Wall] + 97[Wall] + 98[Wall] + 99[Wall] 100[Wall] 101[Wall] 102[Wall] 103[Wall] - 104["Cap Start"] - 105["Cap End"] - 106["SweepEdge Opposite"] - 107["SweepEdge Adjacent"] - 108["SweepEdge Opposite"] - 109["SweepEdge Adjacent"] - 110["SweepEdge Opposite"] - 111["SweepEdge Adjacent"] - 112["SweepEdge Opposite"] - 113["SweepEdge Adjacent"] - 114["EdgeCut Fillet
[4915, 5148, 0]"] - 115["EdgeCut Fillet
[4915, 5148, 0]"] - 116["EdgeCut Fillet
[4915, 5148, 0]"] - 117["EdgeCut Fillet
[4915, 5148, 0]"] - 118["Plane
[5298, 5318, 0]"] - 129["Sweep Extrusion
[6516, 6628, 0]"] + 104[Wall] + 105[Wall] + 106[Wall] + 107[Wall] + 108[Wall] + 109[Wall] + 110[Wall] + 111[Wall] + 112[Wall] + 113[Wall] + 114[Wall] + 115[Wall] + 116[Wall] + 117[Wall] + 118[Wall] + 119[Wall] + 120[Wall] + 121[Wall] + 122[Wall] + 123[Wall] + 124[Wall] + 125[Wall] + 126[Wall] + 127[Wall] + 128[Wall] + 129[Wall] 130[Wall] 131[Wall] 132[Wall] @@ -185,771 +155,801 @@ flowchart LR 135[Wall] 136[Wall] 137[Wall] - 138["Cap Start"] - 139["Cap End"] - 140["SweepEdge Opposite"] - 141["SweepEdge Adjacent"] - 142["SweepEdge Opposite"] - 143["SweepEdge Adjacent"] - 144["SweepEdge Opposite"] - 145["SweepEdge Adjacent"] - 146["SweepEdge Opposite"] - 147["SweepEdge Adjacent"] - 148["SweepEdge Opposite"] - 149["SweepEdge Adjacent"] - 150["SweepEdge Opposite"] - 151["SweepEdge Adjacent"] - 152["SweepEdge Opposite"] - 153["SweepEdge Adjacent"] - 154["SweepEdge Opposite"] - 155["SweepEdge Adjacent"] - 156["Plane
[5298, 5318, 0]"] - 167["Sweep Extrusion
[6694, 6808, 0]"] - 168[Wall] - 169[Wall] - 170[Wall] - 171[Wall] - 172[Wall] - 173[Wall] - 174[Wall] - 175[Wall] - 176["Cap Start"] - 177["Cap End"] + 138[Wall] + 139[Wall] + 140[Wall] + 141[Wall] + 142[Wall] + 143[Wall] + 144[Wall] + 145[Wall] + 146[Wall] + 147["Cap Start"] + 148["Cap Start"] + 149["Cap Start"] + 150["Cap Start"] + 151["Cap Start"] + 152["Cap Start"] + 153["Cap Start"] + 154["Cap Start"] + 155["Cap Start"] + 156["Cap End"] + 157["Cap End"] + 158["Cap End"] + 159["Cap End"] + 160["Cap End"] + 161["Cap End"] + 162["Cap End"] + 163["Cap End"] + 164["SweepEdge Opposite"] + 165["SweepEdge Opposite"] + 166["SweepEdge Opposite"] + 167["SweepEdge Opposite"] + 168["SweepEdge Opposite"] + 169["SweepEdge Opposite"] + 170["SweepEdge Opposite"] + 171["SweepEdge Opposite"] + 172["SweepEdge Opposite"] + 173["SweepEdge Opposite"] + 174["SweepEdge Opposite"] + 175["SweepEdge Opposite"] + 176["SweepEdge Opposite"] + 177["SweepEdge Opposite"] 178["SweepEdge Opposite"] - 179["SweepEdge Adjacent"] + 179["SweepEdge Opposite"] 180["SweepEdge Opposite"] - 181["SweepEdge Adjacent"] + 181["SweepEdge Opposite"] 182["SweepEdge Opposite"] - 183["SweepEdge Adjacent"] + 183["SweepEdge Opposite"] 184["SweepEdge Opposite"] - 185["SweepEdge Adjacent"] + 185["SweepEdge Opposite"] 186["SweepEdge Opposite"] - 187["SweepEdge Adjacent"] + 187["SweepEdge Opposite"] 188["SweepEdge Opposite"] - 189["SweepEdge Adjacent"] + 189["SweepEdge Opposite"] 190["SweepEdge Opposite"] - 191["SweepEdge Adjacent"] + 191["SweepEdge Opposite"] 192["SweepEdge Opposite"] - 193["SweepEdge Adjacent"] - 194["Plane
[5298, 5318, 0]"] - 205["Sweep Revolve
[7634, 7689, 0]"] - 206[Wall] - 207[Wall] - 208[Wall] - 209[Wall] - 210[Wall] - 211[Wall] - 212[Wall] - 213[Wall] - 214["Cap Start"] - 215["Cap End"] - 216["SweepEdge Opposite"] + 193["SweepEdge Opposite"] + 194["SweepEdge Opposite"] + 195["SweepEdge Opposite"] + 196["SweepEdge Opposite"] + 197["SweepEdge Opposite"] + 198["SweepEdge Opposite"] + 199["SweepEdge Opposite"] + 200["SweepEdge Opposite"] + 201["SweepEdge Opposite"] + 202["SweepEdge Opposite"] + 203["SweepEdge Opposite"] + 204["SweepEdge Opposite"] + 205["SweepEdge Opposite"] + 206["SweepEdge Opposite"] + 207["SweepEdge Opposite"] + 208["SweepEdge Opposite"] + 209["SweepEdge Opposite"] + 210["SweepEdge Opposite"] + 211["SweepEdge Opposite"] + 212["SweepEdge Opposite"] + 213["SweepEdge Opposite"] + 214["SweepEdge Opposite"] + 215["SweepEdge Adjacent"] + 216["SweepEdge Adjacent"] 217["SweepEdge Adjacent"] - 218["SweepEdge Opposite"] + 218["SweepEdge Adjacent"] 219["SweepEdge Adjacent"] - 220["SweepEdge Opposite"] + 220["SweepEdge Adjacent"] 221["SweepEdge Adjacent"] - 222["SweepEdge Opposite"] + 222["SweepEdge Adjacent"] 223["SweepEdge Adjacent"] - 224["SweepEdge Opposite"] + 224["SweepEdge Adjacent"] 225["SweepEdge Adjacent"] - 226["SweepEdge Opposite"] + 226["SweepEdge Adjacent"] 227["SweepEdge Adjacent"] - 228["SweepEdge Opposite"] + 228["SweepEdge Adjacent"] 229["SweepEdge Adjacent"] - 230["SweepEdge Opposite"] + 230["SweepEdge Adjacent"] 231["SweepEdge Adjacent"] - 232["Plane
[5298, 5318, 0]"] - 243["Sweep Revolve
[7751, 7805, 0]"] - 244[Wall] - 245[Wall] - 246[Wall] - 247[Wall] - 248[Wall] - 249[Wall] - 250[Wall] - 251[Wall] - 252["Cap Start"] - 253["Cap End"] - 254["SweepEdge Opposite"] + 232["SweepEdge Adjacent"] + 233["SweepEdge Adjacent"] + 234["SweepEdge Adjacent"] + 235["SweepEdge Adjacent"] + 236["SweepEdge Adjacent"] + 237["SweepEdge Adjacent"] + 238["SweepEdge Adjacent"] + 239["SweepEdge Adjacent"] + 240["SweepEdge Adjacent"] + 241["SweepEdge Adjacent"] + 242["SweepEdge Adjacent"] + 243["SweepEdge Adjacent"] + 244["SweepEdge Adjacent"] + 245["SweepEdge Adjacent"] + 246["SweepEdge Adjacent"] + 247["SweepEdge Adjacent"] + 248["SweepEdge Adjacent"] + 249["SweepEdge Adjacent"] + 250["SweepEdge Adjacent"] + 251["SweepEdge Adjacent"] + 252["SweepEdge Adjacent"] + 253["SweepEdge Adjacent"] + 254["SweepEdge Adjacent"] 255["SweepEdge Adjacent"] - 256["SweepEdge Opposite"] + 256["SweepEdge Adjacent"] 257["SweepEdge Adjacent"] - 258["SweepEdge Opposite"] + 258["SweepEdge Adjacent"] 259["SweepEdge Adjacent"] - 260["SweepEdge Opposite"] + 260["SweepEdge Adjacent"] 261["SweepEdge Adjacent"] - 262["SweepEdge Opposite"] + 262["SweepEdge Adjacent"] 263["SweepEdge Adjacent"] - 264["SweepEdge Opposite"] + 264["SweepEdge Adjacent"] 265["SweepEdge Adjacent"] - 266["SweepEdge Opposite"] - 267["SweepEdge Adjacent"] - 268["SweepEdge Opposite"] - 269["SweepEdge Adjacent"] - 270["StartSketchOnPlane
[1159, 1179, 0]"] - 271["StartSketchOnPlane
[1159, 1179, 0]"] - 272["StartSketchOnFace
[3093, 3135, 0]"] - 273["StartSketchOnPlane
[4538, 4585, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 --- 8 - 2 ---- 10 - 2 --- 9 - 3 --- 11 - 3 --- 18 - 3 --- 19 - 3 x--> 16 - 4 --- 12 - 4 --- 20 - 4 --- 21 - 4 x--> 16 - 5 --- 13 - 5 --- 22 - 5 --- 23 - 5 x--> 16 - 6 --- 14 - 6 --- 24 - 6 --- 25 - 6 x--> 16 - 7 --- 15 - 7 --- 26 - 7 --- 27 - 7 x--> 16 - 10 --- 11 - 10 --- 12 - 10 --- 13 - 10 --- 14 - 10 --- 15 - 10 --- 16 - 10 --- 17 - 10 --- 18 - 10 --- 19 - 10 --- 20 - 10 --- 21 - 10 --- 22 - 10 --- 23 - 10 --- 24 - 10 --- 25 - 10 --- 26 - 10 --- 27 - 18 <--x 11 - 18 <--x 17 - 19 <--x 11 - 19 <--x 12 - 20 <--x 12 - 20 <--x 17 - 21 <--x 12 - 21 <--x 13 - 22 <--x 13 - 22 <--x 17 - 23 <--x 13 - 23 <--x 14 - 24 <--x 14 - 24 <--x 17 - 25 <--x 14 - 25 <--x 15 - 26 <--x 15 - 26 <--x 17 - 27 <--x 11 - 27 <--x 15 - 28 --- 29 - 29 --- 30 - 29 --- 31 - 29 --- 32 - 29 --- 33 - 29 --- 34 - 29 --- 35 - 29 ---- 37 - 29 --- 36 - 30 --- 38 - 30 --- 45 - 30 --- 46 - 30 x--> 43 - 31 --- 39 - 31 --- 47 - 31 --- 48 - 31 x--> 43 - 32 --- 40 - 32 --- 49 - 32 --- 50 - 32 x--> 43 - 33 --- 41 - 33 --- 51 - 33 --- 52 - 33 x--> 43 - 34 --- 42 - 34 --- 53 - 34 --- 54 - 34 x--> 43 - 37 --- 38 - 37 --- 39 - 37 --- 40 - 37 --- 41 - 37 --- 42 - 37 --- 43 - 37 --- 44 - 37 --- 45 - 37 --- 46 - 37 --- 47 - 37 --- 48 - 37 --- 49 - 37 --- 50 - 37 --- 51 - 37 --- 52 - 37 --- 53 - 37 --- 54 - 45 <--x 38 - 45 <--x 44 - 46 <--x 38 - 46 <--x 39 - 47 <--x 39 - 47 <--x 44 - 48 <--x 39 - 48 <--x 40 - 49 <--x 40 - 49 <--x 44 - 50 <--x 40 - 50 <--x 41 - 51 <--x 41 - 51 <--x 44 - 52 <--x 41 - 52 <--x 42 - 53 <--x 42 - 53 <--x 44 - 54 <--x 42 - 54 <--x 38 - 55 --- 56 - 56 --- 57 - 56 --- 58 - 56 --- 59 - 56 --- 60 - 56 ---- 62 - 56 --- 61 - 57 --- 63 - 57 --- 69 - 57 --- 70 - 57 x--> 67 - 58 --- 64 - 58 --- 71 - 58 --- 72 - 58 x--> 67 - 59 --- 65 - 59 --- 73 - 59 --- 74 - 59 x--> 67 - 60 --- 66 - 60 --- 75 - 60 --- 76 - 60 x--> 67 - 62 --- 63 - 62 --- 64 - 62 --- 65 - 62 --- 66 - 62 --- 67 - 62 --- 68 - 62 --- 69 - 62 --- 70 - 62 --- 71 - 62 --- 72 - 62 --- 73 - 62 --- 74 - 62 --- 75 - 62 --- 76 - 67 --- 81 - 69 <--x 63 - 69 <--x 68 - 71 <--x 64 - 71 <--x 68 - 72 <--x 64 - 72 <--x 65 - 73 <--x 65 - 73 <--x 68 - 75 <--x 66 - 75 <--x 68 - 76 <--x 63 - 76 <--x 66 - 70 <--x 77 - 76 <--x 78 - 74 <--x 79 - 72 <--x 80 - 81 --- 82 - 81 ---- 84 - 81 --- 83 - 82 --- 85 - 82 --- 87 - 82 --- 88 - 82 <--x 67 - 84 --- 85 - 84 --- 86 - 84 --- 87 - 84 --- 88 - 87 <--x 85 - 87 <--x 86 - 88 <--x 85 - 92 --- 93 - 93 --- 94 - 93 --- 95 - 93 --- 96 - 93 --- 97 - 93 ---- 99 - 93 --- 98 + 266["EdgeCut Fillet
[2846, 3076, 0]"] + 267["EdgeCut Fillet
[2846, 3076, 0]"] + 268["EdgeCut Fillet
[2846, 3076, 0]"] + 269["EdgeCut Fillet
[2846, 3076, 0]"] + 270["EdgeCut Fillet
[4915, 5148, 0]"] + 271["EdgeCut Fillet
[4915, 5148, 0]"] + 272["EdgeCut Fillet
[4915, 5148, 0]"] + 273["EdgeCut Fillet
[4915, 5148, 0]"] + 1 <--x 11 + 1 --- 14 + 2 <--x 10 + 2 --- 13 + 3 --- 15 + 4 <--x 9 + 4 --- 17 + 5 --- 18 + 6 --- 21 + 7 --- 19 + 8 --- 20 + 149 x--> 12 + 13 --- 22 + 13 --- 25 + 13 --- 26 + 13 --- 28 + 13 --- 30 + 13 --- 33 + 13 --- 75 + 13 ---- 85 + 14 --- 23 + 14 --- 24 + 14 --- 27 + 14 --- 29 + 14 --- 31 + 14 --- 32 + 14 --- 81 + 14 ---- 84 + 15 --- 34 + 15 --- 35 + 15 --- 36 + 15 --- 37 + 15 --- 77 + 15 ---- 86 + 16 --- 38 + 16 --- 76 + 16 ---- 89 + 149 --- 16 + 17 --- 39 + 17 --- 40 + 17 --- 41 + 17 --- 42 + 17 --- 78 + 17 ---- 91 + 18 --- 44 + 18 --- 47 + 18 --- 54 + 18 --- 55 + 18 --- 62 + 18 --- 64 + 18 --- 67 + 18 --- 73 + 18 --- 79 + 18 ---- 95 + 19 --- 43 + 19 --- 50 + 19 --- 52 + 19 --- 58 + 19 --- 61 + 19 --- 65 + 19 --- 70 + 19 --- 74 + 19 --- 80 + 19 ---- 92 + 20 --- 46 + 20 --- 49 + 20 --- 53 + 20 --- 56 + 20 --- 60 + 20 --- 63 + 20 --- 69 + 20 --- 72 + 20 --- 82 + 20 ---- 93 + 21 --- 45 + 21 --- 48 + 21 --- 51 + 21 --- 57 + 21 --- 59 + 21 --- 66 + 21 --- 68 + 21 --- 71 + 21 --- 83 + 21 ---- 94 + 22 --- 113 + 22 x--> 150 + 22 --- 185 + 22 --- 236 + 23 --- 105 + 23 x--> 148 + 23 --- 176 + 23 --- 224 + 24 --- 104 + 24 x--> 148 + 24 --- 174 + 24 --- 226 + 25 --- 114 + 25 x--> 150 + 25 --- 182 + 25 --- 234 + 26 --- 116 + 26 x--> 150 + 26 --- 184 + 26 --- 235 + 27 --- 106 + 27 x--> 148 + 27 --- 172 + 27 --- 223 + 28 --- 117 + 28 x--> 150 + 28 --- 181 + 28 --- 232 + 29 --- 108 + 29 x--> 148 + 29 --- 173 + 29 --- 225 + 30 --- 115 + 30 x--> 150 + 30 --- 183 + 30 --- 233 + 31 --- 107 + 31 x--> 148 + 31 --- 175 + 31 --- 227 + 34 --- 110 + 34 x--> 149 + 34 --- 178 + 34 --- 230 + 35 --- 111 + 35 x--> 149 + 35 --- 180 + 35 --- 228 + 36 --- 109 + 36 x--> 149 + 36 --- 177 + 36 --- 229 + 37 --- 112 + 37 x--> 149 + 37 --- 179 + 37 --- 231 + 38 --- 130 + 38 x--> 149 + 38 --- 198 + 38 --- 249 + 39 --- 127 + 39 x--> 152 + 39 --- 194 + 39 --- 247 + 40 --- 126 + 40 x--> 152 + 40 --- 197 + 40 --- 246 + 41 --- 129 + 41 x--> 152 + 41 --- 196 + 41 --- 248 + 42 --- 128 + 42 x--> 152 + 42 --- 195 + 42 --- 245 + 43 --- 121 + 43 x--> 151 + 43 --- 192 + 43 --- 243 + 44 --- 143 + 44 x--> 155 + 44 --- 214 + 44 --- 260 + 45 --- 100 + 45 x--> 147 + 45 --- 167 + 45 --- 219 + 46 --- 138 + 46 x--> 154 + 46 --- 200 + 46 --- 251 + 47 --- 139 + 47 x--> 155 + 47 --- 211 + 47 --- 263 + 48 --- 101 + 48 x--> 147 + 48 --- 164 + 48 --- 221 + 49 --- 136 + 49 x--> 154 + 49 --- 201 + 49 --- 256 + 50 --- 123 + 50 x--> 151 + 50 --- 186 + 50 --- 238 + 51 --- 97 + 51 x--> 147 + 51 --- 171 + 51 --- 222 + 52 --- 118 + 52 x--> 151 + 52 --- 193 + 52 --- 244 + 53 --- 133 + 53 x--> 154 + 53 --- 203 + 53 --- 257 + 54 --- 142 + 54 x--> 155 + 54 --- 213 + 54 --- 265 + 55 --- 144 + 55 x--> 155 + 55 --- 209 + 55 --- 259 + 56 --- 135 + 56 x--> 154 + 56 --- 206 + 56 --- 253 + 57 --- 103 + 57 x--> 147 + 57 --- 168 + 57 --- 215 + 58 --- 125 + 58 x--> 151 + 58 --- 188 + 58 --- 242 + 59 --- 96 + 59 x--> 147 + 59 --- 165 + 59 --- 218 + 60 --- 131 + 60 x--> 154 + 60 --- 204 + 60 --- 255 + 61 --- 120 + 61 x--> 151 + 61 --- 187 + 61 --- 240 + 62 --- 146 + 62 x--> 155 + 62 --- 208 + 62 --- 262 + 63 --- 132 + 63 x--> 154 + 63 --- 199 + 63 --- 250 + 64 --- 140 + 64 x--> 155 + 64 --- 212 + 64 --- 258 + 65 --- 119 + 65 x--> 151 + 65 --- 190 + 65 --- 239 + 66 --- 99 + 66 x--> 147 + 66 --- 166 + 66 --- 216 + 67 --- 141 + 67 x--> 155 + 67 --- 210 + 67 --- 261 + 68 --- 102 + 68 x--> 147 + 68 --- 169 + 68 --- 217 + 69 --- 137 + 69 x--> 154 + 69 --- 205 + 69 --- 252 + 70 --- 124 + 70 x--> 151 + 70 --- 191 + 70 --- 241 + 71 --- 98 + 71 x--> 147 + 71 --- 170 + 71 --- 220 + 72 --- 134 + 72 x--> 154 + 72 --- 202 + 72 --- 254 + 73 --- 145 + 73 x--> 155 + 73 --- 207 + 73 --- 264 + 74 --- 122 + 74 x--> 151 + 74 --- 189 + 74 --- 237 + 84 --- 104 + 84 --- 105 + 84 --- 106 + 84 --- 107 + 84 --- 108 + 84 --- 148 + 84 --- 157 + 84 --- 172 + 84 --- 173 + 84 --- 174 + 84 --- 175 + 84 --- 176 + 84 --- 223 + 84 --- 224 + 84 --- 225 + 84 --- 226 + 84 --- 227 + 85 --- 113 + 85 --- 114 + 85 --- 115 + 85 --- 116 + 85 --- 117 + 85 --- 150 + 85 --- 159 + 85 --- 181 + 85 --- 182 + 85 --- 183 + 85 --- 184 + 85 --- 185 + 85 --- 232 + 85 --- 233 + 85 --- 234 + 85 --- 235 + 85 --- 236 + 86 --- 109 + 86 --- 110 + 86 --- 111 + 86 --- 112 + 86 --- 149 + 86 --- 158 + 86 --- 177 + 86 --- 178 + 86 --- 179 + 86 --- 180 + 86 --- 228 + 86 --- 229 + 86 --- 230 + 86 --- 231 + 89 --- 130 + 89 --- 153 + 89 --- 198 + 89 --- 249 + 91 --- 126 + 91 --- 127 + 91 --- 128 + 91 --- 129 + 91 --- 152 + 91 --- 161 + 91 --- 194 + 91 --- 195 + 91 --- 196 + 91 --- 197 + 91 --- 245 + 91 --- 246 + 91 --- 247 + 91 --- 248 + 92 --- 118 + 92 --- 119 + 92 --- 120 + 92 --- 121 + 92 --- 122 + 92 --- 123 + 92 --- 124 + 92 --- 125 + 92 --- 151 + 92 --- 160 + 92 --- 186 + 92 --- 187 + 92 --- 188 + 92 --- 189 + 92 --- 190 + 92 --- 191 + 92 --- 192 + 92 --- 193 + 92 --- 237 + 92 --- 238 + 92 --- 239 + 92 --- 240 + 92 --- 241 + 92 --- 242 + 92 --- 243 + 92 --- 244 + 93 --- 131 + 93 --- 132 + 93 --- 133 + 93 --- 134 + 93 --- 135 + 93 --- 136 + 93 --- 137 + 93 --- 138 + 93 --- 154 + 93 --- 162 + 93 --- 199 + 93 --- 200 + 93 --- 201 + 93 --- 202 + 93 --- 203 + 93 --- 204 + 93 --- 205 + 93 --- 206 + 93 --- 250 + 93 --- 251 + 93 --- 252 + 93 --- 253 + 93 --- 254 + 93 --- 255 + 93 --- 256 + 93 --- 257 + 94 --- 96 + 94 --- 97 + 94 --- 98 + 94 --- 99 94 --- 100 - 94 --- 106 - 94 --- 107 - 94 x--> 104 - 95 --- 101 - 95 --- 108 - 95 --- 109 - 95 x--> 104 - 96 --- 102 - 96 --- 110 - 96 --- 111 - 96 x--> 104 - 97 --- 103 - 97 --- 112 - 97 --- 113 - 97 x--> 104 - 99 --- 100 - 99 --- 101 - 99 --- 102 - 99 --- 103 - 99 --- 104 - 99 --- 105 - 99 --- 106 - 99 --- 107 - 99 --- 108 - 99 --- 109 - 99 --- 110 - 99 --- 111 - 99 --- 112 - 99 --- 113 - 106 <--x 100 - 106 <--x 105 - 108 <--x 101 - 108 <--x 105 - 109 <--x 101 - 109 <--x 102 - 110 <--x 102 - 110 <--x 105 - 112 <--x 103 - 112 <--x 105 - 113 <--x 100 - 113 <--x 103 - 107 <--x 114 - 113 <--x 115 - 111 <--x 116 - 109 <--x 117 - 118 --- 119 - 119 --- 120 - 119 --- 121 - 119 --- 122 - 119 --- 123 - 119 --- 124 - 119 --- 125 - 119 --- 126 - 119 --- 127 - 119 ---- 129 - 119 --- 128 - 120 --- 137 - 120 --- 154 - 120 --- 155 - 120 x--> 138 - 121 --- 136 - 121 --- 152 - 121 --- 153 - 121 x--> 138 - 122 --- 135 - 122 --- 150 - 122 --- 151 - 122 x--> 138 - 123 --- 134 - 123 --- 148 - 123 --- 149 - 123 x--> 138 - 124 --- 133 - 124 --- 146 - 124 --- 147 - 124 x--> 138 - 125 --- 132 - 125 --- 144 - 125 --- 145 - 125 x--> 138 - 126 --- 131 - 126 --- 142 - 126 --- 143 - 126 x--> 138 - 127 --- 130 - 127 --- 140 - 127 --- 141 - 127 x--> 138 - 129 --- 130 - 129 --- 131 - 129 --- 132 - 129 --- 133 - 129 --- 134 - 129 --- 135 - 129 --- 136 - 129 --- 137 - 129 --- 138 - 129 --- 139 - 129 --- 140 - 129 --- 141 - 129 --- 142 - 129 --- 143 - 129 --- 144 - 129 --- 145 - 129 --- 146 - 129 --- 147 - 129 --- 148 - 129 --- 149 - 129 --- 150 - 129 --- 151 - 129 --- 152 - 129 --- 153 - 129 --- 154 - 129 --- 155 - 140 <--x 130 - 140 <--x 139 - 141 <--x 130 - 141 <--x 137 - 142 <--x 131 - 142 <--x 139 - 143 <--x 130 - 143 <--x 131 - 144 <--x 132 - 144 <--x 139 - 145 <--x 131 - 145 <--x 132 - 146 <--x 133 - 146 <--x 139 - 147 <--x 132 - 147 <--x 133 - 148 <--x 134 - 148 <--x 139 - 149 <--x 133 - 149 <--x 134 - 150 <--x 135 - 150 <--x 139 - 151 <--x 134 - 151 <--x 135 - 152 <--x 136 - 152 <--x 139 - 153 <--x 135 - 153 <--x 136 - 154 <--x 137 - 154 <--x 139 - 155 <--x 136 - 155 <--x 137 - 156 --- 157 - 157 --- 158 - 157 --- 159 - 157 --- 160 - 157 --- 161 - 157 --- 162 - 157 --- 163 - 157 --- 164 - 157 --- 165 - 157 ---- 167 - 157 --- 166 - 158 --- 175 - 158 --- 192 - 158 --- 193 - 158 x--> 176 - 159 --- 174 - 159 --- 190 - 159 --- 191 - 159 x--> 176 - 160 --- 173 - 160 --- 188 - 160 --- 189 - 160 x--> 176 - 161 --- 172 - 161 --- 186 - 161 --- 187 - 161 x--> 176 - 162 --- 171 - 162 --- 184 - 162 --- 185 - 162 x--> 176 - 163 --- 170 - 163 --- 182 - 163 --- 183 - 163 x--> 176 - 164 --- 169 - 164 --- 180 - 164 --- 181 - 164 x--> 176 - 165 --- 168 - 165 --- 178 - 165 --- 179 - 165 x--> 176 - 167 --- 168 - 167 --- 169 - 167 --- 170 - 167 --- 171 - 167 --- 172 - 167 --- 173 - 167 --- 174 - 167 --- 175 - 167 --- 176 - 167 --- 177 - 167 --- 178 - 167 --- 179 - 167 --- 180 - 167 --- 181 - 167 --- 182 - 167 --- 183 - 167 --- 184 - 167 --- 185 - 167 --- 186 - 167 --- 187 - 167 --- 188 - 167 --- 189 - 167 --- 190 - 167 --- 191 - 167 --- 192 - 167 --- 193 - 178 <--x 168 - 178 <--x 177 - 179 <--x 168 - 179 <--x 175 - 180 <--x 169 - 180 <--x 177 - 181 <--x 168 - 181 <--x 169 - 182 <--x 170 - 182 <--x 177 - 183 <--x 169 - 183 <--x 170 - 184 <--x 171 - 184 <--x 177 - 185 <--x 170 - 185 <--x 171 - 186 <--x 172 - 186 <--x 177 - 187 <--x 171 - 187 <--x 172 - 188 <--x 173 - 188 <--x 177 - 189 <--x 172 - 189 <--x 173 - 190 <--x 174 - 190 <--x 177 - 191 <--x 173 - 191 <--x 174 - 192 <--x 175 - 192 <--x 177 - 193 <--x 174 - 193 <--x 175 - 194 --- 195 - 195 --- 196 - 195 --- 197 - 195 --- 198 - 195 --- 199 - 195 --- 200 - 195 --- 201 - 195 --- 202 - 195 --- 203 - 195 ---- 205 - 195 --- 204 - 196 --- 206 - 196 --- 216 - 196 --- 217 - 196 x--> 214 - 197 --- 207 - 197 --- 218 - 197 --- 219 - 197 x--> 214 - 198 --- 208 - 198 --- 220 - 198 --- 221 - 198 x--> 214 - 199 --- 209 - 199 --- 222 - 199 --- 223 - 199 x--> 214 - 200 --- 210 - 200 --- 224 - 200 --- 225 - 200 x--> 214 - 201 --- 211 - 201 --- 226 - 201 --- 227 - 201 x--> 214 - 202 --- 212 - 202 --- 228 - 202 --- 229 - 202 x--> 214 - 203 --- 213 - 203 --- 230 - 203 --- 231 - 203 x--> 214 - 205 --- 206 - 205 --- 207 - 205 --- 208 - 205 --- 209 - 205 --- 210 - 205 --- 211 - 205 --- 212 - 205 --- 213 - 205 --- 214 - 205 --- 215 - 205 --- 216 - 205 --- 217 - 205 --- 218 - 205 --- 219 - 205 --- 220 - 205 --- 221 - 205 --- 222 - 205 --- 223 - 205 --- 224 - 205 --- 225 - 205 --- 226 - 205 --- 227 - 205 --- 228 - 205 --- 229 - 205 --- 230 - 205 --- 231 - 216 <--x 206 - 216 <--x 215 - 217 <--x 206 - 217 <--x 207 - 218 <--x 207 - 218 <--x 215 - 219 <--x 207 - 219 <--x 208 - 220 <--x 208 - 220 <--x 215 - 221 <--x 208 - 221 <--x 209 - 222 <--x 209 - 222 <--x 215 - 223 <--x 209 - 223 <--x 210 - 224 <--x 210 - 224 <--x 215 - 225 <--x 210 - 225 <--x 211 - 226 <--x 211 - 226 <--x 215 - 227 <--x 211 - 227 <--x 212 - 228 <--x 212 - 228 <--x 215 - 229 <--x 212 - 229 <--x 213 - 230 <--x 213 - 230 <--x 215 - 231 <--x 213 - 231 <--x 206 - 232 --- 233 - 233 --- 234 - 233 --- 235 - 233 --- 236 - 233 --- 237 - 233 --- 238 - 233 --- 239 - 233 --- 240 - 233 --- 241 - 233 ---- 243 - 233 --- 242 - 234 --- 244 - 234 --- 254 - 234 --- 255 - 234 x--> 252 - 235 --- 245 - 235 --- 256 - 235 --- 257 - 235 x--> 252 - 236 --- 246 - 236 --- 258 - 236 --- 259 - 236 x--> 252 - 237 --- 247 - 237 --- 260 - 237 --- 261 - 237 x--> 252 - 238 --- 248 - 238 --- 262 - 238 --- 263 - 238 x--> 252 - 239 --- 249 - 239 --- 264 - 239 --- 265 - 239 x--> 252 - 240 --- 250 - 240 --- 266 - 240 --- 267 - 240 x--> 252 - 241 --- 251 - 241 --- 268 - 241 --- 269 - 241 x--> 252 - 243 --- 244 - 243 --- 245 - 243 --- 246 - 243 --- 247 - 243 --- 248 - 243 --- 249 - 243 --- 250 - 243 --- 251 - 243 --- 252 - 243 --- 253 - 243 --- 254 - 243 --- 255 - 243 --- 256 - 243 --- 257 - 243 --- 258 - 243 --- 259 - 243 --- 260 - 243 --- 261 - 243 --- 262 - 243 --- 263 - 243 --- 264 - 243 --- 265 - 243 --- 266 - 243 --- 267 - 243 --- 268 - 243 --- 269 - 254 <--x 244 - 254 <--x 253 - 255 <--x 244 - 255 <--x 245 - 256 <--x 245 - 256 <--x 253 - 257 <--x 245 - 257 <--x 246 - 258 <--x 246 - 258 <--x 253 - 259 <--x 246 - 259 <--x 247 - 260 <--x 247 - 260 <--x 253 - 261 <--x 247 - 261 <--x 248 - 262 <--x 248 - 262 <--x 253 - 263 <--x 248 - 263 <--x 249 - 264 <--x 249 - 264 <--x 253 - 265 <--x 249 - 265 <--x 250 - 266 <--x 250 - 266 <--x 253 - 267 <--x 250 - 267 <--x 251 - 268 <--x 251 - 268 <--x 253 - 269 <--x 251 - 269 <--x 244 - 1 <--x 270 - 28 <--x 271 - 67 <--x 272 - 92 <--x 273 + 94 --- 101 + 94 --- 102 + 94 --- 103 + 94 --- 147 + 94 --- 156 + 94 --- 164 + 94 --- 165 + 94 --- 166 + 94 --- 167 + 94 --- 168 + 94 --- 169 + 94 --- 170 + 94 --- 171 + 94 --- 215 + 94 --- 216 + 94 --- 217 + 94 --- 218 + 94 --- 219 + 94 --- 220 + 94 --- 221 + 94 --- 222 + 95 --- 139 + 95 --- 140 + 95 --- 141 + 95 --- 142 + 95 --- 143 + 95 --- 144 + 95 --- 145 + 95 --- 146 + 95 --- 155 + 95 --- 163 + 95 --- 207 + 95 --- 208 + 95 --- 209 + 95 --- 210 + 95 --- 211 + 95 --- 212 + 95 --- 213 + 95 --- 214 + 95 --- 258 + 95 --- 259 + 95 --- 260 + 95 --- 261 + 95 --- 262 + 95 --- 263 + 95 --- 264 + 95 --- 265 + 165 <--x 96 + 215 <--x 96 + 218 <--x 96 + 171 <--x 97 + 221 <--x 97 + 222 <--x 97 + 170 <--x 98 + 217 <--x 98 + 220 <--x 98 + 166 <--x 99 + 216 <--x 99 + 218 <--x 99 + 167 <--x 100 + 219 <--x 100 + 220 <--x 100 + 164 <--x 101 + 219 <--x 101 + 221 <--x 101 + 169 <--x 102 + 216 <--x 102 + 217 <--x 102 + 168 <--x 103 + 215 <--x 103 + 222 <--x 103 + 174 <--x 104 + 224 <--x 104 + 226 <--x 104 + 176 <--x 105 + 224 <--x 105 + 227 <--x 105 + 172 <--x 106 + 223 <--x 106 + 226 <--x 106 + 175 <--x 107 + 225 <--x 107 + 227 <--x 107 + 173 <--x 108 + 223 <--x 108 + 225 <--x 108 + 177 <--x 109 + 228 <--x 109 + 178 <--x 110 + 231 <--x 110 + 180 <--x 111 + 228 <--x 111 + 179 <--x 112 + 231 <--x 112 + 185 <--x 113 + 233 <--x 113 + 236 <--x 113 + 182 <--x 114 + 234 <--x 114 + 236 <--x 114 + 183 <--x 115 + 232 <--x 115 + 233 <--x 115 + 184 <--x 116 + 234 <--x 116 + 235 <--x 116 + 181 <--x 117 + 232 <--x 117 + 235 <--x 117 + 193 <--x 118 + 238 <--x 118 + 244 <--x 118 + 190 <--x 119 + 239 <--x 119 + 240 <--x 119 + 187 <--x 120 + 240 <--x 120 + 242 <--x 120 + 192 <--x 121 + 237 <--x 121 + 243 <--x 121 + 189 <--x 122 + 237 <--x 122 + 241 <--x 122 + 186 <--x 123 + 238 <--x 123 + 243 <--x 123 + 191 <--x 124 + 239 <--x 124 + 241 <--x 124 + 188 <--x 125 + 242 <--x 125 + 244 <--x 125 + 197 <--x 126 + 246 <--x 126 + 194 <--x 127 + 245 <--x 127 + 195 <--x 128 + 245 <--x 128 + 196 <--x 129 + 246 <--x 129 + 198 <--x 130 + 249 <--x 130 + 204 <--x 131 + 253 <--x 131 + 255 <--x 131 + 199 <--x 132 + 250 <--x 132 + 255 <--x 132 + 203 <--x 133 + 256 <--x 133 + 257 <--x 133 + 202 <--x 134 + 252 <--x 134 + 254 <--x 134 + 206 <--x 135 + 253 <--x 135 + 257 <--x 135 + 201 <--x 136 + 251 <--x 136 + 256 <--x 136 + 205 <--x 137 + 250 <--x 137 + 252 <--x 137 + 200 <--x 138 + 251 <--x 138 + 254 <--x 138 + 211 <--x 139 + 260 <--x 139 + 263 <--x 139 + 212 <--x 140 + 258 <--x 140 + 262 <--x 140 + 210 <--x 141 + 258 <--x 141 + 261 <--x 141 + 213 <--x 142 + 263 <--x 142 + 265 <--x 142 + 214 <--x 143 + 260 <--x 143 + 264 <--x 143 + 209 <--x 144 + 259 <--x 144 + 265 <--x 144 + 207 <--x 145 + 261 <--x 145 + 264 <--x 145 + 208 <--x 146 + 259 <--x 146 + 262 <--x 146 + 198 <--x 153 + 164 <--x 156 + 165 <--x 156 + 166 <--x 156 + 167 <--x 156 + 168 <--x 156 + 169 <--x 156 + 170 <--x 156 + 171 <--x 156 + 172 <--x 157 + 173 <--x 157 + 174 <--x 157 + 175 <--x 157 + 176 <--x 157 + 177 <--x 158 + 178 <--x 158 + 179 <--x 158 + 180 <--x 158 + 181 <--x 159 + 182 <--x 159 + 183 <--x 159 + 184 <--x 159 + 185 <--x 159 + 186 <--x 160 + 187 <--x 160 + 188 <--x 160 + 189 <--x 160 + 190 <--x 160 + 191 <--x 160 + 192 <--x 160 + 193 <--x 160 + 194 <--x 161 + 195 <--x 161 + 196 <--x 161 + 197 <--x 161 + 199 <--x 162 + 200 <--x 162 + 201 <--x 162 + 202 <--x 162 + 203 <--x 162 + 204 <--x 162 + 205 <--x 162 + 206 <--x 162 + 207 <--x 163 + 208 <--x 163 + 209 <--x 163 + 210 <--x 163 + 211 <--x 163 + 212 <--x 163 + 213 <--x 163 + 214 <--x 163 + 228 <--x 269 + 229 <--x 268 + 230 <--x 266 + 231 <--x 267 + 245 <--x 271 + 246 <--x 273 + 247 <--x 270 + 248 <--x 272 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/ops.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/ops.snap index 12bca364b..75e06e72c 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/ops.snap @@ -3,47 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed gridfinity-bins-stacking-lip.kcl --- [ - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "face", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -60,7 +19,19 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl "unlabeledArg": null }, { - "type": "GroupEnd" + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { "labeledArgs": { @@ -94,6 +65,47 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl "sourceRange": [] } }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "face", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, { "labeledArgs": { "arcDegrees": { @@ -243,65 +255,6 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl "sourceRange": [] } }, - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "face", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, { "type": "KclStdLibCall", "name": "revolve", @@ -409,6 +362,47 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl }, "sourceRange": [] }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "face", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, { "labeledArgs": { "arcDegrees": { @@ -1460,6 +1454,21 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl "sourceRange": [] } }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -1490,21 +1499,6 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -1637,17 +1631,6 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl }, "sourceRange": [] }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "lipFace", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -1796,52 +1779,6 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl "type": "StdLibCall", "unlabeledArg": null }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 76.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "lipFace", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -1990,350 +1927,6 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl "type": "StdLibCall", "unlabeledArg": null }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 118.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "arcDegrees": { - "value": { - "type": "Number", - "value": 360.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "axis": { - "value": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "sourceRange": [] - }, - "center": { - "value": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 42.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 63.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "sourceRange": [] - }, - "instances": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "rotateDuplicates": { - "value": { - "type": "Bool", - "value": true - }, - "sourceRange": [] - } - }, - "name": "patternCircular3d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "arcDegrees": { - "value": { - "type": "Number", - "value": 360.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "axis": { - "value": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "sourceRange": [] - }, - "center": { - "value": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 42.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 63.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "sourceRange": [] - }, - "instances": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "rotateDuplicates": { - "value": { - "type": "Bool", - "value": true - }, - "sourceRange": [] - } - }, - "name": "patternCircular3d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "lipFace", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -2482,127 +2075,6 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl "type": "StdLibCall", "unlabeledArg": null }, - { - "type": "GroupEnd" - }, - { - "type": "KclStdLibCall", - "name": "revolve", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - }, - "labeledArgs": { - "angle": { - "value": { - "type": "Number", - "value": -90.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "axis": { - "value": { - "type": "Object", - "value": { - "direction": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 3.75, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 3.75, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "lipFace", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -2752,30 +2224,11 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl "unlabeledArg": null }, { - "type": "GroupEnd" - }, - { - "type": "KclStdLibCall", - "name": "revolve", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - }, "labeledArgs": { - "angle": { + "length": { "value": { "type": "Number", - "value": 90.0, + "value": 76.5, "ty": { "type": "Default", "len": { @@ -2787,78 +2240,73 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl } }, "sourceRange": [] - }, - "axis": { + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", "value": { - "type": "Object", - "value": { - "direction": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "lipFace", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 118.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" }, - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 3.75, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 3.75, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] + "angle": { + "type": "Degrees" } } }, "sourceRange": [] } }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "lipFace", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, "sourceRange": [] }, { @@ -3158,5 +2606,557 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl }, "sourceRange": [] } + }, + { + "type": "KclStdLibCall", + "name": "revolve", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + }, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": -90.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "axis": { + "value": { + "type": "Object", + "value": { + "direction": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 3.75, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 3.75, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "lipFace", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "revolve", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + }, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 90.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "axis": { + "value": { + "type": "Object", + "value": { + "direction": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 3.75, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 3.75, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "lipFace", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "arcDegrees": { + "value": { + "type": "Number", + "value": 360.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "axis": { + "value": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "sourceRange": [] + }, + "center": { + "value": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 42.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 63.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "sourceRange": [] + }, + "instances": { + "value": { + "type": "Number", + "value": 2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "rotateDuplicates": { + "value": { + "type": "Bool", + "value": true + }, + "sourceRange": [] + } + }, + "name": "patternCircular3d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "arcDegrees": { + "value": { + "type": "Number", + "value": 360.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "axis": { + "value": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "sourceRange": [] + }, + "center": { + "value": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 42.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 63.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "sourceRange": [] + }, + "instances": { + "value": { + "type": "Number", + "value": 2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "rotateDuplicates": { + "value": { + "type": "Bool", + "value": true + }, + "sourceRange": [] + } + }, + "name": "patternCircular3d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/artifact_commands.snap index 0a42e8899..bfc5c591c 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/artifact_commands.snap @@ -33,38 +33,15 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "make_plane", - "origin": { - "x": 4.0, + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, "y": 0.0, "z": 0.0 - }, - "x_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "size": 100.0, - "clobber": false, - "hide": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 } } }, @@ -88,7 +65,13 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 3.2, + "y": 0.0, + "z": 0.0 + } } }, { @@ -104,6 +87,24 @@ description: Artifact commands gridfinity-bins.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -111,6 +112,27 @@ description: Artifact commands gridfinity-bins.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -128,6 +150,40 @@ description: Artifact commands gridfinity-bins.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 4.75, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -2.95, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -162,6 +218,40 @@ description: Artifact commands gridfinity-bins.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 2.15, + "y": -2.15, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.8, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -196,6 +286,31 @@ description: Artifact commands gridfinity-bins.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.8, + "y": -0.8, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -231,6 +346,14 @@ description: Artifact commands gridfinity-bins.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -242,8 +365,135 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -259,30 +509,12 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -297,39 +529,12 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -344,18 +549,10 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -372,39 +569,12 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -415,43 +585,6 @@ description: Artifact commands gridfinity-bins.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -466,51 +599,12 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "entity_circular_pattern", - "entity_id": "[uuid]", - "axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "center": { - "x": 21.0, - "y": 21.0, - "z": 0.0 - }, - "num_repetitions": 3, - "arc_degrees": 360.0, - "rotate_duplicates": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -554,136 +648,29 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "enable_sketch_mode", + "type": "entity_circular_pattern", "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, + "axis": { + "x": 0.0, "y": 0.0, + "z": 1.0 + }, + "center": { + "x": 21.0, + "y": 21.0, "z": 0.0 - } + }, + "num_repetitions": 3, + "arc_degrees": 360.0, + "rotate_duplicates": true } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 3.2, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 4.75, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -2.95, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 2.15, - "y": -2.15, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.8, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.8, - "y": -0.8, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -715,8 +702,135 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -732,30 +846,12 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -770,39 +866,12 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -817,18 +886,10 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -845,39 +906,12 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -892,39 +926,12 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -939,28 +946,39 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "make_plane", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "size": 100.0, + "clobber": false, + "hide": false } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } } }, { @@ -1025,13 +1043,6 @@ description: Artifact commands gridfinity-bins.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1052,6 +1063,13 @@ description: Artifact commands gridfinity-bins.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1138,6 +1156,14 @@ description: Artifact commands gridfinity-bins.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1149,8 +1175,108 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1166,30 +1292,12 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1204,39 +1312,12 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1251,18 +1332,10 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1279,39 +1352,12 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1326,28 +1372,48 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", "edge_id": "[uuid]", - "face_id": "[uuid]" + "radius": 0.8, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "radius": 0.8, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 0.8, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 0.8, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { @@ -1394,48 +1460,8 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 0.8, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 0.8, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 0.8, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 0.8, - "tolerance": 0.0000001, - "cut_type": "fillet" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -1450,33 +1476,6 @@ description: Artifact commands gridfinity-bins.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -4.75, - "y": 8.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1506,8 +1505,27 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -4.75, + "y": 8.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -1547,82 +1565,24 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.4, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -1652,83 +1612,11 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -2.4, + "faces": null, + "opposite": "None" } }, { @@ -1742,89 +1630,6 @@ description: Artifact commands gridfinity-bins.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -1840,7 +1645,8 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -1851,6 +1657,158 @@ description: Artifact commands gridfinity-bins.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1864,7 +1822,7 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1873,17 +1831,16 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1902,9 +1859,70 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3564,13 +3582,6 @@ description: Artifact commands gridfinity-bins.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3584,6 +3595,15 @@ description: Artifact commands gridfinity-bins.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -3591,6 +3611,13 @@ description: Artifact commands gridfinity-bins.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3677,6 +3704,14 @@ description: Artifact commands gridfinity-bins.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3688,8 +3723,108 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -3705,30 +3840,12 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3743,39 +3860,12 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3790,18 +3880,10 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3818,39 +3900,12 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3865,28 +3920,48 @@ description: Artifact commands gridfinity-bins.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", "edge_id": "[uuid]", - "face_id": "[uuid]" + "radius": 3.75, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_fillet_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "radius": 3.75, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 3.75, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 3.75, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { @@ -3929,54 +4004,6 @@ description: Artifact commands gridfinity-bins.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 3.75, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 3.75, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 3.75, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 3.75, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3989,32 +4016,5 @@ description: Artifact commands gridfinity-bins.kcl "shell_thickness": 1.2, "hollow": false } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/artifact_graph_flowchart.snap.md index 57d0ee305..7de1e4ed1 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/artifact_graph_flowchart.snap.md @@ -1,391 +1,391 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[928, 974, 0]"] - 3["Segment
[982, 1004, 0]"] - 4["Segment
[1012, 1042, 0]"] - 5["Segment
[1050, 1094, 0]"] - 6["Segment
[1102, 1129, 0]"] - 7["Segment
[1137, 1181, 0]"] - 8["Segment
[1189, 1196, 0]"] - 9[Solid2d] + subgraph path9 [Path] + 9["Path
[928, 974, 0]"] + 14["Segment
[982, 1004, 0]"] + 17["Segment
[1012, 1042, 0]"] + 18["Segment
[1050, 1094, 0]"] + 20["Segment
[1102, 1129, 0]"] + 22["Segment
[1137, 1181, 0]"] + 25["Segment
[1189, 1196, 0]"] + 35[Solid2d] end - subgraph path29 [Path] - 29["Path
[928, 974, 0]"] - 30["Segment
[982, 1004, 0]"] - 31["Segment
[1012, 1042, 0]"] - 32["Segment
[1050, 1094, 0]"] - 33["Segment
[1102, 1129, 0]"] - 34["Segment
[1137, 1181, 0]"] - 35["Segment
[1189, 1196, 0]"] + subgraph path10 [Path] + 10["Path
[928, 974, 0]"] + 15["Segment
[982, 1004, 0]"] + 16["Segment
[1012, 1042, 0]"] + 19["Segment
[1050, 1094, 0]"] + 21["Segment
[1102, 1129, 0]"] + 23["Segment
[1137, 1181, 0]"] + 24["Segment
[1189, 1196, 0]"] + 39[Solid2d] + end + subgraph path11 [Path] + 11["Path
[2237, 2325, 0]"] + 26["Segment
[2331, 2395, 0]"] + 27["Segment
[2401, 2465, 0]"] + 28["Segment
[2471, 2524, 0]"] + 29["Segment
[2530, 2551, 0]"] + 37[Solid2d] + end + subgraph path12 [Path] + 12["Path
[2882, 3048, 0]"] + 30["Segment
[2882, 3048, 0]"] 36[Solid2d] end - subgraph path56 [Path] - 56["Path
[2237, 2325, 0]"] - 57["Segment
[2331, 2395, 0]"] - 58["Segment
[2401, 2465, 0]"] - 59["Segment
[2471, 2524, 0]"] - 60["Segment
[2530, 2551, 0]"] - 61[Solid2d] - end - subgraph path81 [Path] - 81["Path
[2882, 3048, 0]"] - 82["Segment
[2882, 3048, 0]"] - 83[Solid2d] - end - subgraph path93 [Path] - 93["Path
[4361, 4386, 0]"] - 94["Segment
[4392, 4464, 0]"] - 95["Segment
[4470, 4543, 0]"] - 96["Segment
[4549, 4602, 0]"] - 97["Segment
[4608, 4629, 0]"] - 98[Solid2d] + subgraph path13 [Path] + 13["Path
[4361, 4386, 0]"] + 31["Segment
[4392, 4464, 0]"] + 32["Segment
[4470, 4543, 0]"] + 33["Segment
[4549, 4602, 0]"] + 34["Segment
[4608, 4629, 0]"] + 38[Solid2d] end 1["Plane
[1282, 1329, 0]"] - 10["Sweep Extrusion
[1269, 1372, 0]"] - 11[Wall] - 12[Wall] - 13[Wall] - 14[Wall] - 15[Wall] - 16["Cap Start"] - 17["Cap End"] - 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 20["SweepEdge Opposite"] - 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] - 23["SweepEdge Adjacent"] - 24["SweepEdge Opposite"] - 25["SweepEdge Adjacent"] - 26["SweepEdge Opposite"] - 27["SweepEdge Adjacent"] - 28["Plane
[1861, 1908, 0]"] - 37["Sweep Revolve
[1848, 1939, 0]"] - 38[Wall] - 39[Wall] - 40[Wall] - 41[Wall] - 42[Wall] - 43["Cap Start"] - 44["Cap End"] - 45["SweepEdge Opposite"] - 46["SweepEdge Adjacent"] - 47["SweepEdge Opposite"] - 48["SweepEdge Adjacent"] - 49["SweepEdge Opposite"] - 50["SweepEdge Adjacent"] - 51["SweepEdge Opposite"] - 52["SweepEdge Adjacent"] - 53["SweepEdge Opposite"] - 54["SweepEdge Adjacent"] - 55["Plane
[2214, 2231, 0]"] - 62["Sweep Extrusion
[2557, 2581, 0]"] + 2["Plane
[1861, 1908, 0]"] + 3["Plane
[2214, 2231, 0]"] + 4["Plane
[4322, 4354, 0]"] + 5["StartSketchOnPlane
[4308, 4355, 0]"] + 6["StartSketchOnPlane
[900, 920, 0]"] + 7["StartSketchOnPlane
[900, 920, 0]"] + 8["StartSketchOnFace
[2834, 2876, 0]"] + 40["Sweep Extrusion
[1269, 1372, 0]"] + 41["Sweep Revolve
[1848, 1939, 0]"] + 42["Sweep Extrusion
[2557, 2581, 0]"] + 43["Sweep Extrusion
[3270, 3297, 0]"] + 44["Sweep Extrusion
[3270, 3297, 0]"] + 45["Sweep Extrusion
[3270, 3297, 0]"] + 46["Sweep Extrusion
[3270, 3297, 0]"] + 47["Sweep Extrusion
[4635, 4679, 0]"] + 48[Wall] + 49[Wall] + 50[Wall] + 51[Wall] + 52[Wall] + 53[Wall] + 54[Wall] + 55[Wall] + 56[Wall] + 57[Wall] + 58[Wall] + 59[Wall] + 60[Wall] + 61[Wall] + 62[Wall] 63[Wall] 64[Wall] 65[Wall] 66[Wall] 67["Cap Start"] - 68["Cap End"] - 69["SweepEdge Opposite"] - 70["SweepEdge Adjacent"] - 71["SweepEdge Opposite"] - 72["SweepEdge Adjacent"] - 73["SweepEdge Opposite"] - 74["SweepEdge Adjacent"] - 75["SweepEdge Opposite"] - 76["SweepEdge Adjacent"] - 77["EdgeCut Fillet
[2587, 2817, 0]"] - 78["EdgeCut Fillet
[2587, 2817, 0]"] - 79["EdgeCut Fillet
[2587, 2817, 0]"] - 80["EdgeCut Fillet
[2587, 2817, 0]"] - 84["Sweep Extrusion
[3270, 3297, 0]"] - 85[Wall] - 86["Cap Start"] + 68["Cap Start"] + 69["Cap Start"] + 70["Cap Start"] + 71["Cap Start"] + 72["Cap End"] + 73["Cap End"] + 74["Cap End"] + 75["Cap End"] + 76["SweepEdge Opposite"] + 77["SweepEdge Opposite"] + 78["SweepEdge Opposite"] + 79["SweepEdge Opposite"] + 80["SweepEdge Opposite"] + 81["SweepEdge Opposite"] + 82["SweepEdge Opposite"] + 83["SweepEdge Opposite"] + 84["SweepEdge Opposite"] + 85["SweepEdge Opposite"] + 86["SweepEdge Opposite"] 87["SweepEdge Opposite"] - 88["SweepEdge Adjacent"] - 89["Sweep Extrusion
[3270, 3297, 0]"] - 90["Sweep Extrusion
[3270, 3297, 0]"] - 91["Sweep Extrusion
[3270, 3297, 0]"] - 92["Plane
[4322, 4354, 0]"] - 99["Sweep Extrusion
[4635, 4679, 0]"] - 100[Wall] - 101[Wall] - 102[Wall] - 103[Wall] - 104["Cap Start"] - 105["Cap End"] - 106["SweepEdge Opposite"] + 88["SweepEdge Opposite"] + 89["SweepEdge Opposite"] + 90["SweepEdge Opposite"] + 91["SweepEdge Opposite"] + 92["SweepEdge Opposite"] + 93["SweepEdge Opposite"] + 94["SweepEdge Opposite"] + 95["SweepEdge Adjacent"] + 96["SweepEdge Adjacent"] + 97["SweepEdge Adjacent"] + 98["SweepEdge Adjacent"] + 99["SweepEdge Adjacent"] + 100["SweepEdge Adjacent"] + 101["SweepEdge Adjacent"] + 102["SweepEdge Adjacent"] + 103["SweepEdge Adjacent"] + 104["SweepEdge Adjacent"] + 105["SweepEdge Adjacent"] + 106["SweepEdge Adjacent"] 107["SweepEdge Adjacent"] - 108["SweepEdge Opposite"] + 108["SweepEdge Adjacent"] 109["SweepEdge Adjacent"] - 110["SweepEdge Opposite"] + 110["SweepEdge Adjacent"] 111["SweepEdge Adjacent"] - 112["SweepEdge Opposite"] + 112["SweepEdge Adjacent"] 113["SweepEdge Adjacent"] - 114["EdgeCut Fillet
[4685, 4918, 0]"] - 115["EdgeCut Fillet
[4685, 4918, 0]"] - 116["EdgeCut Fillet
[4685, 4918, 0]"] - 117["EdgeCut Fillet
[4685, 4918, 0]"] - 118["StartSketchOnPlane
[900, 920, 0]"] - 119["StartSketchOnPlane
[900, 920, 0]"] - 120["StartSketchOnFace
[2834, 2876, 0]"] - 121["StartSketchOnPlane
[4308, 4355, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 --- 8 - 2 ---- 10 + 114["EdgeCut Fillet
[2587, 2817, 0]"] + 115["EdgeCut Fillet
[2587, 2817, 0]"] + 116["EdgeCut Fillet
[2587, 2817, 0]"] + 117["EdgeCut Fillet
[2587, 2817, 0]"] + 118["EdgeCut Fillet
[4685, 4918, 0]"] + 119["EdgeCut Fillet
[4685, 4918, 0]"] + 120["EdgeCut Fillet
[4685, 4918, 0]"] + 121["EdgeCut Fillet
[4685, 4918, 0]"] + 1 <--x 7 + 1 --- 10 + 2 <--x 6 2 --- 9 3 --- 11 - 3 --- 18 - 3 --- 19 - 3 x--> 16 - 4 --- 12 - 4 --- 20 - 4 --- 21 - 4 x--> 16 - 5 --- 13 - 5 --- 22 - 5 --- 23 - 5 x--> 16 - 6 --- 14 - 6 --- 24 - 6 --- 25 - 6 x--> 16 - 7 --- 15 - 7 --- 26 - 7 --- 27 - 7 x--> 16 - 10 --- 11 - 10 --- 12 - 10 --- 13 - 10 --- 14 + 4 <--x 5 + 4 --- 13 + 68 x--> 8 + 9 --- 14 + 9 --- 17 + 9 --- 18 + 9 --- 20 + 9 --- 22 + 9 --- 25 + 9 --- 35 + 9 ---- 41 10 --- 15 10 --- 16 - 10 --- 17 - 10 --- 18 10 --- 19 - 10 --- 20 10 --- 21 - 10 --- 22 10 --- 23 10 --- 24 - 10 --- 25 - 10 --- 26 - 10 --- 27 - 18 <--x 11 - 18 <--x 17 - 19 <--x 11 - 19 <--x 12 - 20 <--x 12 - 20 <--x 17 - 21 <--x 12 - 21 <--x 13 - 22 <--x 13 - 22 <--x 17 - 23 <--x 13 - 23 <--x 14 - 24 <--x 14 - 24 <--x 17 - 25 <--x 14 - 25 <--x 15 - 26 <--x 15 - 26 <--x 17 - 27 <--x 11 - 27 <--x 15 - 28 --- 29 - 29 --- 30 - 29 --- 31 - 29 --- 32 - 29 --- 33 - 29 --- 34 - 29 --- 35 - 29 ---- 37 - 29 --- 36 - 30 --- 38 - 30 --- 45 - 30 --- 46 - 30 x--> 43 - 31 --- 39 - 31 --- 47 - 31 --- 48 - 31 x--> 43 - 32 --- 40 - 32 --- 49 - 32 --- 50 - 32 x--> 43 - 33 --- 41 - 33 --- 51 - 33 --- 52 - 33 x--> 43 - 34 --- 42 - 34 --- 53 - 34 --- 54 - 34 x--> 43 - 37 --- 38 - 37 --- 39 - 37 --- 40 - 37 --- 41 - 37 --- 42 - 37 --- 43 - 37 --- 44 - 37 --- 45 - 37 --- 46 - 37 --- 47 - 37 --- 48 - 37 --- 49 - 37 --- 50 - 37 --- 51 - 37 --- 52 - 37 --- 53 - 37 --- 54 - 45 <--x 38 - 45 <--x 44 - 46 <--x 38 - 46 <--x 39 - 47 <--x 39 - 47 <--x 44 - 48 <--x 39 - 48 <--x 40 - 49 <--x 40 - 49 <--x 44 - 50 <--x 40 - 50 <--x 41 - 51 <--x 41 - 51 <--x 44 - 52 <--x 41 - 52 <--x 42 - 53 <--x 42 - 53 <--x 44 - 54 <--x 42 - 54 <--x 38 - 55 --- 56 - 56 --- 57 - 56 --- 58 - 56 --- 59 - 56 --- 60 - 56 ---- 62 - 56 --- 61 - 57 --- 63 - 57 --- 69 - 57 --- 70 - 57 x--> 67 - 58 --- 64 - 58 --- 71 - 58 --- 72 - 58 x--> 67 - 59 --- 65 - 59 --- 73 - 59 --- 74 - 59 x--> 67 - 60 --- 66 - 60 --- 75 - 60 --- 76 - 60 x--> 67 - 62 --- 63 - 62 --- 64 - 62 --- 65 - 62 --- 66 - 62 --- 67 - 62 --- 68 - 62 --- 69 - 62 --- 70 - 62 --- 71 - 62 --- 72 - 62 --- 73 - 62 --- 74 - 62 --- 75 - 62 --- 76 - 67 --- 81 - 69 <--x 63 - 69 <--x 68 - 71 <--x 64 - 71 <--x 68 - 72 <--x 64 - 72 <--x 65 - 73 <--x 65 - 73 <--x 68 - 75 <--x 66 - 75 <--x 68 - 76 <--x 63 - 76 <--x 66 - 70 <--x 77 - 76 <--x 78 - 74 <--x 79 - 72 <--x 80 - 81 --- 82 - 81 ---- 84 - 81 --- 83 - 82 --- 85 - 82 --- 87 - 82 --- 88 - 82 <--x 67 - 84 --- 85 - 84 --- 86 - 84 --- 87 - 84 --- 88 - 87 <--x 85 - 87 <--x 86 - 88 <--x 85 - 92 --- 93 - 93 --- 94 - 93 --- 95 - 93 --- 96 - 93 --- 97 - 93 ---- 99 - 93 --- 98 - 94 --- 100 - 94 --- 106 - 94 --- 107 - 94 x--> 104 - 95 --- 101 - 95 --- 108 - 95 --- 109 - 95 x--> 104 - 96 --- 102 - 96 --- 110 - 96 --- 111 - 96 x--> 104 - 97 --- 103 - 97 --- 112 - 97 --- 113 - 97 x--> 104 - 99 --- 100 - 99 --- 101 - 99 --- 102 - 99 --- 103 - 99 --- 104 - 99 --- 105 - 99 --- 106 - 99 --- 107 - 99 --- 108 - 99 --- 109 - 99 --- 110 - 99 --- 111 - 99 --- 112 - 99 --- 113 - 106 <--x 100 - 106 <--x 105 - 108 <--x 101 - 108 <--x 105 - 109 <--x 101 - 109 <--x 102 - 110 <--x 102 - 110 <--x 105 - 112 <--x 103 - 112 <--x 105 - 113 <--x 100 - 113 <--x 103 - 107 <--x 114 - 113 <--x 115 - 111 <--x 116 - 109 <--x 117 - 1 <--x 118 - 28 <--x 119 - 67 <--x 120 - 92 <--x 121 + 10 --- 39 + 10 ---- 40 + 11 --- 26 + 11 --- 27 + 11 --- 28 + 11 --- 29 + 11 --- 37 + 11 ---- 42 + 12 --- 30 + 12 --- 36 + 12 ---- 45 + 68 --- 12 + 13 --- 31 + 13 --- 32 + 13 --- 33 + 13 --- 34 + 13 --- 38 + 13 ---- 47 + 14 --- 57 + 14 x--> 69 + 14 --- 89 + 14 --- 108 + 15 --- 49 + 15 x--> 67 + 15 --- 80 + 15 --- 96 + 16 --- 48 + 16 x--> 67 + 16 --- 78 + 16 --- 98 + 17 --- 58 + 17 x--> 69 + 17 --- 86 + 17 --- 106 + 18 --- 60 + 18 x--> 69 + 18 --- 88 + 18 --- 107 + 19 --- 50 + 19 x--> 67 + 19 --- 76 + 19 --- 95 + 20 --- 61 + 20 x--> 69 + 20 --- 85 + 20 --- 104 + 21 --- 52 + 21 x--> 67 + 21 --- 77 + 21 --- 97 + 22 --- 59 + 22 x--> 69 + 22 --- 87 + 22 --- 105 + 23 --- 51 + 23 x--> 67 + 23 --- 79 + 23 --- 99 + 26 --- 54 + 26 x--> 68 + 26 --- 82 + 26 --- 102 + 27 --- 55 + 27 x--> 68 + 27 --- 84 + 27 --- 100 + 28 --- 53 + 28 x--> 68 + 28 --- 81 + 28 --- 101 + 29 --- 56 + 29 x--> 68 + 29 --- 83 + 29 --- 103 + 30 --- 66 + 30 x--> 68 + 30 --- 94 + 30 --- 113 + 31 --- 63 + 31 x--> 70 + 31 --- 90 + 31 --- 111 + 32 --- 62 + 32 x--> 70 + 32 --- 93 + 32 --- 110 + 33 --- 65 + 33 x--> 70 + 33 --- 92 + 33 --- 112 + 34 --- 64 + 34 x--> 70 + 34 --- 91 + 34 --- 109 + 40 --- 48 + 40 --- 49 + 40 --- 50 + 40 --- 51 + 40 --- 52 + 40 --- 67 + 40 --- 72 + 40 --- 76 + 40 --- 77 + 40 --- 78 + 40 --- 79 + 40 --- 80 + 40 --- 95 + 40 --- 96 + 40 --- 97 + 40 --- 98 + 40 --- 99 + 41 --- 57 + 41 --- 58 + 41 --- 59 + 41 --- 60 + 41 --- 61 + 41 --- 69 + 41 --- 74 + 41 --- 85 + 41 --- 86 + 41 --- 87 + 41 --- 88 + 41 --- 89 + 41 --- 104 + 41 --- 105 + 41 --- 106 + 41 --- 107 + 41 --- 108 + 42 --- 53 + 42 --- 54 + 42 --- 55 + 42 --- 56 + 42 --- 68 + 42 --- 73 + 42 --- 81 + 42 --- 82 + 42 --- 83 + 42 --- 84 + 42 --- 100 + 42 --- 101 + 42 --- 102 + 42 --- 103 + 45 --- 66 + 45 --- 71 + 45 --- 94 + 45 --- 113 + 47 --- 62 + 47 --- 63 + 47 --- 64 + 47 --- 65 + 47 --- 70 + 47 --- 75 + 47 --- 90 + 47 --- 91 + 47 --- 92 + 47 --- 93 + 47 --- 109 + 47 --- 110 + 47 --- 111 + 47 --- 112 + 78 <--x 48 + 96 <--x 48 + 98 <--x 48 + 80 <--x 49 + 96 <--x 49 + 99 <--x 49 + 76 <--x 50 + 95 <--x 50 + 98 <--x 50 + 79 <--x 51 + 97 <--x 51 + 99 <--x 51 + 77 <--x 52 + 95 <--x 52 + 97 <--x 52 + 81 <--x 53 + 100 <--x 53 + 82 <--x 54 + 103 <--x 54 + 84 <--x 55 + 100 <--x 55 + 83 <--x 56 + 103 <--x 56 + 89 <--x 57 + 105 <--x 57 + 108 <--x 57 + 86 <--x 58 + 106 <--x 58 + 108 <--x 58 + 87 <--x 59 + 104 <--x 59 + 105 <--x 59 + 88 <--x 60 + 106 <--x 60 + 107 <--x 60 + 85 <--x 61 + 104 <--x 61 + 107 <--x 61 + 93 <--x 62 + 110 <--x 62 + 90 <--x 63 + 109 <--x 63 + 91 <--x 64 + 109 <--x 64 + 92 <--x 65 + 110 <--x 65 + 94 <--x 66 + 113 <--x 66 + 94 <--x 71 + 76 <--x 72 + 77 <--x 72 + 78 <--x 72 + 79 <--x 72 + 80 <--x 72 + 81 <--x 73 + 82 <--x 73 + 83 <--x 73 + 84 <--x 73 + 85 <--x 74 + 86 <--x 74 + 87 <--x 74 + 88 <--x 74 + 89 <--x 74 + 90 <--x 75 + 91 <--x 75 + 92 <--x 75 + 93 <--x 75 + 100 <--x 117 + 101 <--x 116 + 102 <--x 114 + 103 <--x 115 + 109 <--x 119 + 110 <--x 121 + 111 <--x 118 + 112 <--x 120 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/ops.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/ops.snap index bf29ce366..a726add97 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/ops.snap @@ -3,47 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed gridfinity-bins.kcl --- [ - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "face", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -60,7 +19,19 @@ description: Operations executed gridfinity-bins.kcl "unlabeledArg": null }, { - "type": "GroupEnd" + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { "labeledArgs": { @@ -94,6 +65,47 @@ description: Operations executed gridfinity-bins.kcl "sourceRange": [] } }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "face", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, { "labeledArgs": { "arcDegrees": { @@ -243,65 +255,6 @@ description: Operations executed gridfinity-bins.kcl "sourceRange": [] } }, - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "face", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, { "type": "KclStdLibCall", "name": "revolve", @@ -409,6 +362,47 @@ description: Operations executed gridfinity-bins.kcl }, "sourceRange": [] }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "face", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, { "labeledArgs": { "arcDegrees": { @@ -1460,6 +1454,21 @@ description: Operations executed gridfinity-bins.kcl "sourceRange": [] } }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -1490,21 +1499,6 @@ description: Operations executed gridfinity-bins.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -1636,5 +1630,11 @@ description: Operations executed gridfinity-bins.kcl } }, "sourceRange": [] + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/kcl_samples/hex-nut/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/hex-nut/artifact_commands.snap index f433339f0..393ed35b5 100644 --- a/rust/kcl-lib/tests/kcl_samples/hex-nut/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/hex-nut/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands hex-nut.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands hex-nut.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -190,6 +190,32 @@ description: Artifact commands hex-nut.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -206,33 +232,6 @@ description: Artifact commands hex-nut.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 3.96875, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -262,26 +261,27 @@ description: Artifact commands hex-nut.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 3.96875, + "y": 0.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "start_path" } }, { @@ -311,6 +311,14 @@ description: Artifact commands hex-nut.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -322,8 +330,189 @@ description: Artifact commands hex-nut.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -339,30 +528,12 @@ description: Artifact commands hex-nut.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -377,39 +548,12 @@ description: Artifact commands hex-nut.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -424,39 +568,12 @@ description: Artifact commands hex-nut.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -471,18 +588,10 @@ description: Artifact commands hex-nut.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -499,39 +608,12 @@ description: Artifact commands hex-nut.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -546,39 +628,12 @@ description: Artifact commands hex-nut.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -589,43 +644,6 @@ description: Artifact commands hex-nut.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -640,28 +658,10 @@ description: Artifact commands hex-nut.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/hex-nut/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/hex-nut/artifact_graph_flowchart.snap.md index e50452319..d73e2783c 100644 --- a/rust/kcl-lib/tests/kcl_samples/hex-nut/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/hex-nut/artifact_graph_flowchart.snap.md @@ -2,17 +2,17 @@ flowchart LR subgraph path2 [Path] 2["Path
[572, 622, 0]"] - 3["Segment
[630, 672, 0]"] - 4["Segment
[680, 722, 0]"] - 5["Segment
[730, 772, 0]"] - 6["Segment
[780, 821, 0]"] - 7["Segment
[829, 875, 0]"] - 8["Segment
[883, 890, 0]"] - 9[Solid2d] + 4["Segment
[630, 672, 0]"] + 5["Segment
[680, 722, 0]"] + 6["Segment
[730, 772, 0]"] + 7["Segment
[780, 821, 0]"] + 8["Segment
[829, 875, 0]"] + 9["Segment
[883, 890, 0]"] + 11[Solid2d] end - subgraph path10 [Path] - 10["Path
[916, 976, 0]"] - 11["Segment
[916, 976, 0]"] + subgraph path3 [Path] + 3["Path
[916, 976, 0]"] + 10["Segment
[916, 976, 0]"] 12[Solid2d] end 1["Plane
[546, 564, 0]"] @@ -26,53 +26,53 @@ flowchart LR 20["Cap Start"] 21["Cap End"] 22["SweepEdge Opposite"] - 23["SweepEdge Adjacent"] + 23["SweepEdge Opposite"] 24["SweepEdge Opposite"] - 25["SweepEdge Adjacent"] + 25["SweepEdge Opposite"] 26["SweepEdge Opposite"] - 27["SweepEdge Adjacent"] - 28["SweepEdge Opposite"] + 27["SweepEdge Opposite"] + 28["SweepEdge Adjacent"] 29["SweepEdge Adjacent"] - 30["SweepEdge Opposite"] + 30["SweepEdge Adjacent"] 31["SweepEdge Adjacent"] - 32["SweepEdge Opposite"] + 32["SweepEdge Adjacent"] 33["SweepEdge Adjacent"] 1 --- 2 - 1 --- 10 - 2 --- 3 + 1 --- 3 2 --- 4 2 --- 5 2 --- 6 2 --- 7 2 --- 8 - 2 ---- 13 2 --- 9 - 3 --- 19 - 3 --- 32 - 3 --- 33 - 3 x--> 20 - 4 --- 18 - 4 --- 30 - 4 --- 31 + 2 --- 11 + 2 ---- 13 + 3 --- 10 + 3 --- 12 + 4 --- 17 4 x--> 20 - 5 --- 17 - 5 --- 28 - 5 --- 29 + 4 --- 23 + 4 --- 32 + 5 --- 16 5 x--> 20 - 6 --- 16 - 6 --- 26 - 6 --- 27 + 5 --- 27 + 5 --- 33 + 6 --- 18 6 x--> 20 + 6 --- 26 + 6 --- 31 7 --- 15 - 7 --- 24 - 7 --- 25 7 x--> 20 + 7 --- 25 + 7 --- 29 8 --- 14 - 8 --- 22 - 8 --- 23 8 x--> 20 - 10 --- 11 - 10 --- 12 + 8 --- 22 + 8 --- 28 + 9 --- 19 + 9 x--> 20 + 9 --- 24 + 9 --- 30 13 --- 14 13 --- 15 13 --- 16 @@ -94,27 +94,27 @@ flowchart LR 13 --- 32 13 --- 33 22 <--x 14 - 22 <--x 21 - 23 <--x 14 - 23 <--x 19 - 24 <--x 15 - 24 <--x 21 - 25 <--x 14 + 28 <--x 14 + 29 <--x 14 25 <--x 15 - 26 <--x 16 - 26 <--x 21 - 27 <--x 15 + 29 <--x 15 + 31 <--x 15 27 <--x 16 - 28 <--x 17 - 28 <--x 21 - 29 <--x 16 - 29 <--x 17 - 30 <--x 18 - 30 <--x 21 - 31 <--x 17 + 32 <--x 16 + 33 <--x 16 + 23 <--x 17 + 30 <--x 17 + 32 <--x 17 + 26 <--x 18 31 <--x 18 - 32 <--x 19 - 32 <--x 21 33 <--x 18 - 33 <--x 19 + 24 <--x 19 + 28 <--x 19 + 30 <--x 19 + 22 <--x 21 + 23 <--x 21 + 24 <--x 21 + 25 <--x 21 + 26 <--x 21 + 27 <--x 21 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/hex-nut/ops.snap b/rust/kcl-lib/tests/kcl_samples/hex-nut/ops.snap index 809747c82..175c5cc1b 100644 --- a/rust/kcl-lib/tests/kcl_samples/hex-nut/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/hex-nut/ops.snap @@ -3,17 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed hex-nut.kcl --- [ - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "hexNut", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -86,6 +75,17 @@ description: Operations executed hex-nut.kcl "sourceRange": [] } }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "hexNut", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/kcl_samples/i-beam/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/i-beam/artifact_commands.snap index bd346e465..a6c27079d 100644 --- a/rust/kcl-lib/tests/kcl_samples/i-beam/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/i-beam/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands i-beam.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands i-beam.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -181,6 +181,14 @@ description: Artifact commands i-beam.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_get_all_child_uuids", + "entity_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -229,14 +237,6 @@ description: Artifact commands i-beam.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "entity_get_all_child_uuids", - "entity_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -264,6 +264,14 @@ description: Artifact commands i-beam.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -275,8 +283,459 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -292,30 +751,12 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -330,39 +771,12 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -377,39 +791,12 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -424,39 +811,12 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -471,39 +831,12 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -518,39 +851,12 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -565,39 +871,12 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -612,39 +891,12 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -659,18 +911,10 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -687,39 +931,12 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -734,39 +951,12 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -781,39 +971,12 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -828,39 +991,12 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -875,39 +1011,12 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -922,39 +1031,12 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -969,39 +1051,12 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1012,43 +1067,6 @@ description: Artifact commands i-beam.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1063,28 +1081,10 @@ description: Artifact commands i-beam.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/keyboard/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/keyboard/artifact_commands.snap index f957b9a3e..293e85179 100644 --- a/rust/kcl-lib/tests/kcl_samples/keyboard/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/keyboard/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands keyboard.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands keyboard.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -200,6 +200,14 @@ description: Artifact commands keyboard.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -211,8 +219,108 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -228,30 +336,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -266,39 +356,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -313,18 +376,10 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -337,43 +392,6 @@ description: Artifact commands keyboard.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -388,30 +406,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -429,6 +429,54 @@ description: Artifact commands keyboard.kcl "ambient_occlusion": 0.0 } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 15.239999999999998, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 15.239999999999998, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 15.239999999999998, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 15.239999999999998, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, { "cmdId": "[uuid]", "range": [], @@ -453,48 +501,8 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 15.239999999999998, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 15.239999999999998, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 15.239999999999998, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 15.239999999999998, - "tolerance": 0.0000001, - "cut_type": "fillet" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -509,33 +517,6 @@ description: Artifact commands keyboard.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 29.209999999999997, - "y": 19.049999999999997, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -561,6 +542,33 @@ description: Artifact commands keyboard.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 29.209999999999997, + "y": 19.049999999999997, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -581,33 +589,6 @@ description: Artifact commands keyboard.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 121.92000000000002, - "y": 19.049999999999997, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -633,6 +614,33 @@ description: Artifact commands keyboard.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 121.92000000000002, + "y": 19.049999999999997, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -653,33 +661,6 @@ description: Artifact commands keyboard.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 28.701999999999995, - "y": 326.39, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -705,6 +686,33 @@ description: Artifact commands keyboard.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 28.701999999999995, + "y": 326.39, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -725,33 +733,6 @@ description: Artifact commands keyboard.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 121.92000000000002, - "y": 326.39, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -781,8 +762,63 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 121.92000000000002, + "y": 326.39, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -812,83 +848,11 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 3.8099999999999996, + "faces": null, + "opposite": "None" } }, { @@ -902,89 +866,6 @@ description: Artifact commands keyboard.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -1000,7 +881,8 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -1011,6 +893,158 @@ description: Artifact commands keyboard.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1024,7 +1058,7 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1033,17 +1067,16 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1062,86 +1095,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 3.8099999999999996, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1156,9 +1115,550 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 17.779999999999998 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true } }, { @@ -1206,7 +1706,320 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } } }, { @@ -1222,6 +2035,455 @@ description: Artifact commands keyboard.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 38.099999999999994, + "y": 7.620000000000001, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 106.67999999999999, + "y": 7.620000000000001, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 241.29999999999998, + "y": 7.620000000000001, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 264.15999999999997, + "y": 7.620000000000001, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 287.02, + "y": 7.620000000000001, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 317.5, + "y": 7.620000000000001, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 7.620000000000001, + "y": 30.480000000000004, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 53.339999999999996, + "y": 30.480000000000004, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 281.94, + "y": 30.480000000000004, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 7.620000000000001, + "y": 53.339999999999996, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 40.64, + "y": 53.339999999999996, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 292.09999999999997, + "y": 53.339999999999996, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 7.620000000000001, + "y": 76.2, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 33.019999999999996, + "y": 76.2, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 307.34000000000003, + "y": 76.2, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 7.620000000000001, + "y": 99.06000000000002, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 304.79999999999995, + "y": 99.06000000000002, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 7.620000000000001, + "y": 121.92000000000002, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 38.099999999999994, + "y": 121.92000000000002, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 312.42, + "y": 121.92000000000002, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -1229,6 +2491,293 @@ description: Artifact commands keyboard.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1254,6 +2803,506 @@ description: Artifact commands keyboard.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 40.64, + "y": 7.62 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 109.22, + "y": 7.62 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 243.84, + "y": 7.62 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 266.7, + "y": 7.62 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 289.56, + "y": 7.62 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 320.04, + "y": 7.62 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 10.16, + "y": 30.48 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 55.88, + "y": 30.48 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 284.48, + "y": 30.48 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 10.16, + "y": 53.34 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 43.18, + "y": 53.34 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 294.64, + "y": 53.34 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 10.16, + "y": 76.2 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 35.56, + "y": 76.2 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 309.88, + "y": 76.2 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 10.16, + "y": 99.06 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 307.34, + "y": 99.06 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 10.16, + "y": 121.92 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 40.64, + "y": 121.92 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 314.96, + "y": 121.92 + }, + "radius": 2.54, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 270.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -1271,6 +3320,666 @@ description: Artifact commands keyboard.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 15.24, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 127.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 15.24, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 15.24, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 22.86, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 15.24, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 38.1, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 15.24, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 50.8, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 25.4, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 15.24, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 40.64, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 17.78, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 15.24, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 25.4, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 15.24, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 27.94, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 22.86, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 15.24, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 20.32, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -1304,6 +4013,666 @@ description: Artifact commands keyboard.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 15.24, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 7.112, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 7.112, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 7.112, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -1337,22 +4706,6 @@ description: Artifact commands keyboard.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, { "cmdId": "[uuid]", "range": [], @@ -1362,602 +4715,14 @@ description: Artifact commands keyboard.kcl "segment": { "type": "line", "end": { - "x": 7.62, - "y": 7.62, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.13725491, - "g": 0.6862745, - "b": 0.5764706, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "entity_linear_pattern_transform", - "entity_id": "[uuid]", - "transform": [], - "transforms": [] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 38.099999999999994, - "y": 7.620000000000001, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 40.64, - "y": 7.62 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 15.24, - "y": 0.0, + "x": -15.24, + "y": -0.0, "z": 0.0 }, "relative": true } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, { "cmdId": "[uuid]", "range": [], @@ -1967,30 +4732,14 @@ description: Artifact commands keyboard.kcl "segment": { "type": "line", "end": { - "x": 0.0, - "y": 15.24, + "x": -127.0, + "y": -0.0, "z": 0.0 }, "relative": true } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, { "cmdId": "[uuid]", "range": [], @@ -2008,6 +4757,295 @@ description: Artifact commands keyboard.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -15.24, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -22.86, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -15.24, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -38.1, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -15.24, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -50.8, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -25.4, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -15.24, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -40.64, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -17.78, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -15.24, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -25.4, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -15.24, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -27.94, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -22.86, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -15.24, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -20.32, + "y": -0.0, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -2024,6 +5062,343 @@ description: Artifact commands keyboard.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "tangential_arc", + "radius": 2.54, + "offset": { + "unit": "degrees", + "value": 90.0 + } + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.62, + "y": 7.62, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -2041,6 +5416,329 @@ description: Artifact commands keyboard.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 106.68, + "y": 7.62, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 241.3, + "y": 7.62, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 264.16, + "y": 7.62, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 287.02, + "y": 7.62, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 317.5, + "y": 7.62, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.62, + "y": 30.48, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 53.34, + "y": 30.48, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 281.94, + "y": 30.48, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.62, + "y": 53.34, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 40.64, + "y": 53.34, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 292.1, + "y": 53.34, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.62, + "y": 76.2, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 33.02, + "y": 76.2, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 307.34, + "y": 76.2, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.62, + "y": 99.06, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 304.8, + "y": 99.06, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.62, + "y": 121.92, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 38.1, + "y": 121.92, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 312.42, + "y": 121.92, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -2049,6 +5747,486 @@ description: Artifact commands keyboard.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -2080,7 +6258,220 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.54, + "faces": null, + "opposite": "None" } }, { @@ -2091,6 +6482,4849 @@ description: Artifact commands keyboard.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2104,7 +11338,7 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2113,17 +11347,169 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2142,39 +11528,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2189,39 +11548,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2236,39 +11568,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2283,39 +11588,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2330,39 +11608,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2377,39 +11628,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2424,39 +11648,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2471,9 +11668,3227 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.13725491, + "g": 0.6862745, + "b": 0.5764706, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 } }, { @@ -2493,6 +14908,339 @@ description: Artifact commands keyboard.kcl "ambient_occlusion": 0.0 } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.13725491, + "g": 0.6862745, + "b": 0.5764706, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.6901961, + "g": 0.6901961, + "b": 0.6901961, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.6901961, + "g": 0.6901961, + "b": 0.6901961, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.6901961, + "g": 0.6901961, + "b": 0.6901961, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.13725491, + "g": 0.6862745, + "b": 0.5764706, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.13725491, + "g": 0.6862745, + "b": 0.5764706, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.6901961, + "g": 0.6901961, + "b": 0.6901961, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.13725491, + "g": 0.6862745, + "b": 0.5764706, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.6901961, + "g": 0.6901961, + "b": 0.6901961, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.6901961, + "g": 0.6901961, + "b": 0.6901961, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.13725491, + "g": 0.6862745, + "b": 0.5764706, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.6901961, + "g": 0.6901961, + "b": 0.6901961, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.6901961, + "g": 0.6901961, + "b": 0.6901961, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.6901961, + "g": 0.6901961, + "b": 0.6901961, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.6901961, + "g": 0.6901961, + "b": 0.6901961, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.13725491, + "g": 0.6862745, + "b": 0.5764706, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.13725491, + "g": 0.6862745, + "b": 0.5764706, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.6901961, + "g": 0.6901961, + "b": 0.6901961, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.13725491, + "g": 0.6862745, + "b": 0.5764706, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_linear_pattern_transform", + "entity_id": "[uuid]", + "transform": [], + "transforms": [] + } + }, { "cmdId": "[uuid]", "range": [], @@ -2566,661 +15314,10 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", + "type": "entity_linear_pattern_transform", "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 106.67999999999999, - "y": 7.620000000000001, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 109.22, - "y": 7.62 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 127.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 15.24, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -127.0, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 106.68, - "y": 7.62, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.13725491, - "g": 0.6862745, - "b": 0.5764706, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 + "transform": [], + "transforms": [] } }, { @@ -3237,661 +15334,10 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", + "type": "entity_linear_pattern_transform", "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 241.29999999999998, - "y": 7.620000000000001, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 243.84, - "y": 7.62 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 15.24, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 15.24, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -15.24, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 241.3, - "y": 7.62, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.6901961, - "g": 0.6901961, - "b": 0.6901961, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 + "transform": [], + "transforms": [] } }, { @@ -3904,667 +15350,6 @@ description: Artifact commands keyboard.kcl "transforms": [] } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 264.15999999999997, - "y": 7.620000000000001, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 266.7, - "y": 7.62 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 15.24, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 15.24, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -15.24, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 264.16, - "y": 7.62, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.6901961, - "g": 0.6901961, - "b": 0.6901961, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -4575,667 +15360,6 @@ description: Artifact commands keyboard.kcl "transforms": [] } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 287.02, - "y": 7.620000000000001, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 289.56, - "y": 7.62 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 22.86, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 15.24, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -22.86, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 287.02, - "y": 7.62, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.6901961, - "g": 0.6901961, - "b": 0.6901961, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -5246,2009 +15370,6 @@ description: Artifact commands keyboard.kcl "transforms": [] } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 317.5, - "y": 7.620000000000001, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 320.04, - "y": 7.62 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 15.24, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 15.24, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -15.24, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 317.5, - "y": 7.62, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.13725491, - "g": 0.6862745, - "b": 0.5764706, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "entity_linear_pattern_transform", - "entity_id": "[uuid]", - "transform": [], - "transforms": [] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 7.620000000000001, - "y": 30.480000000000004, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 10.16, - "y": 30.48 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 38.1, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 15.24, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -38.1, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.62, - "y": 30.48, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.13725491, - "g": 0.6862745, - "b": 0.5764706, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "entity_linear_pattern_transform", - "entity_id": "[uuid]", - "transform": [], - "transforms": [] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 53.339999999999996, - "y": 30.480000000000004, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 55.88, - "y": 30.48 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 15.24, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 15.24, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -15.24, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 53.34, - "y": 30.48, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.6901961, - "g": 0.6901961, - "b": 0.6901961, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -7521,667 +15642,6 @@ description: Artifact commands keyboard.kcl ] } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 281.94, - "y": 30.480000000000004, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 284.48, - "y": 30.48 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 50.8, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 15.24, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -50.8, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 281.94, - "y": 30.48, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.13725491, - "g": 0.6862745, - "b": 0.5764706, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -8192,667 +15652,6 @@ description: Artifact commands keyboard.kcl "transforms": [] } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 7.620000000000001, - "y": 53.339999999999996, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 10.16, - "y": 53.34 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 25.4, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 15.24, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -25.4, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.62, - "y": 53.34, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.6901961, - "g": 0.6901961, - "b": 0.6901961, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -8863,667 +15662,6 @@ description: Artifact commands keyboard.kcl "transforms": [] } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 40.64, - "y": 53.339999999999996, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 43.18, - "y": 53.34 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 15.24, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 15.24, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -15.24, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 40.64, - "y": 53.34, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.6901961, - "g": 0.6901961, - "b": 0.6901961, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -9825,667 +15963,6 @@ description: Artifact commands keyboard.kcl ] } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 292.09999999999997, - "y": 53.339999999999996, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 294.64, - "y": 53.34 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 40.64, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 15.24, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -40.64, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 292.1, - "y": 53.34, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.13725491, - "g": 0.6862745, - "b": 0.5764706, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -10496,667 +15973,6 @@ description: Artifact commands keyboard.kcl "transforms": [] } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 7.620000000000001, - "y": 76.2, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 10.16, - "y": 76.2 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 17.78, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 15.24, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -17.78, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.62, - "y": 76.2, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.6901961, - "g": 0.6901961, - "b": 0.6901961, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -11167,667 +15983,6 @@ description: Artifact commands keyboard.kcl "transforms": [] } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 33.019999999999996, - "y": 76.2, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 35.56, - "y": 76.2 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 15.24, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 15.24, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -15.24, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 33.02, - "y": 76.2, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.6901961, - "g": 0.6901961, - "b": 0.6901961, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -12158,667 +16313,6 @@ description: Artifact commands keyboard.kcl ] } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 307.34000000000003, - "y": 76.2, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 309.88, - "y": 76.2 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 25.4, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 15.24, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -25.4, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 307.34, - "y": 76.2, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.6901961, - "g": 0.6901961, - "b": 0.6901961, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -12829,667 +16323,6 @@ description: Artifact commands keyboard.kcl "transforms": [] } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 7.620000000000001, - "y": 99.06000000000002, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 10.16, - "y": 99.06 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 15.24, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 15.24, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -15.24, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.62, - "y": 99.06, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.6901961, - "g": 0.6901961, - "b": 0.6901961, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -13849,667 +16682,6 @@ description: Artifact commands keyboard.kcl ] } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 304.79999999999995, - "y": 99.06000000000002, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 307.34, - "y": 99.06 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 27.94, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 15.24, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -27.94, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 304.8, - "y": 99.06, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.13725491, - "g": 0.6862745, - "b": 0.5764706, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -14520,667 +16692,6 @@ description: Artifact commands keyboard.kcl "transforms": [] } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 7.620000000000001, - "y": 121.92000000000002, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 10.16, - "y": 121.92 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 22.86, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 7.112, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -22.86, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.62, - "y": 121.92, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.13725491, - "g": 0.6862745, - "b": 0.5764706, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -15191,667 +16702,6 @@ description: Artifact commands keyboard.kcl "transforms": [] } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 38.099999999999994, - "y": 121.92000000000002, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 40.64, - "y": 121.92 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 15.24, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 7.112, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -15.24, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 38.1, - "y": 121.92, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.6901961, - "g": 0.6901961, - "b": 0.6901961, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -16182,667 +17032,6 @@ description: Artifact commands keyboard.kcl ] } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 17.779999999999998 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 312.42, - "y": 121.92000000000002, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 314.96, - "y": 121.92 - }, - "radius": 2.54, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 270.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 20.32, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 7.112, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -20.32, - "y": -0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "tangential_arc", - "radius": 2.54, - "offset": { - "unit": "degrees", - "value": 90.0 - } - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 312.42, - "y": 121.92, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.54, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.13725491, - "g": 0.6862745, - "b": 0.5764706, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -16894,13 +17083,6 @@ description: Artifact commands keyboard.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -16914,6 +17096,15 @@ description: Artifact commands keyboard.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -16921,6 +17112,13 @@ description: Artifact commands keyboard.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -17211,6 +17409,14 @@ description: Artifact commands keyboard.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -17222,8 +17428,432 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -17239,30 +17869,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -17277,39 +17889,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -17324,39 +17909,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -17371,39 +17929,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -17418,39 +17949,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -17465,39 +17969,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -17512,39 +17989,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -17559,39 +18009,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -17606,18 +18029,10 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17634,39 +18049,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -17681,39 +18069,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -17728,39 +18089,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -17775,39 +18109,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -17822,39 +18129,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -17869,39 +18149,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -17912,43 +18165,6 @@ description: Artifact commands keyboard.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -17963,30 +18179,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -18029,6 +18227,31 @@ description: Artifact commands keyboard.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 20.574 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -18049,7 +18272,16 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } } }, { @@ -18065,6 +18297,37 @@ description: Artifact commands keyboard.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 252.10008000000005, + "y": 87.58936, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -18072,6 +18335,27 @@ description: Artifact commands keyboard.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -18097,779 +18381,6 @@ description: Artifact commands keyboard.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.6583, - "y": 1.7877, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 226.0458, - "y": 83.3249 - }, - "radius": 2.92608, - "start": { - "unit": "degrees", - "value": 216.15 - }, - "end": { - "unit": "degrees", - "value": 58.15 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -0.7619999999999999, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.05882353, - "g": 0.05882353, - "b": 0.05882353, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 20.574 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 222.8596, - "y": 79.03464000000001, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 226.0585, - "y": 83.303 - }, - "radius": 5.3340000000000005, - "start": { - "unit": "degrees", - "value": -126.85 - }, - "end": { - "unit": "degrees", - "value": 41.15 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.6583, - "y": -1.7877, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 226.0539, - "y": 83.2991 - }, - "radius": 2.92608, - "start": { - "unit": "degrees", - "value": 36.15 - }, - "end": { - "unit": "degrees", - "value": -121.85 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -0.7619999999999999, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.05882353, - "g": 0.05882353, - "b": 0.05882353, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 20.574 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.9926556406329575, - "z": 0.12097429115135457 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -0.12097429115135457, - "z": 0.9926556406329575 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 252.10008000000005, - "y": 87.58936, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -18912,6 +18423,48 @@ description: Artifact commands keyboard.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.6583, + "y": 1.7877, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 226.0458, + "y": 83.3249 + }, + "radius": 2.92608, + "start": { + "unit": "degrees", + "value": 216.15 + }, + "end": { + "unit": "degrees", + "value": 58.15 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -18945,6 +18498,30 @@ description: Artifact commands keyboard.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -18976,7 +18553,11 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": -0.7619999999999999, + "faces": null, + "opposite": "None" } }, { @@ -18987,6 +18568,244 @@ description: Artifact commands keyboard.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -19000,26 +18819,7 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -19038,39 +18838,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -19085,39 +18858,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -19132,39 +18878,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -19179,9 +18898,107 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.05882353, + "g": 0.05882353, + "b": 0.05882353, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 } }, { @@ -19226,6 +19043,31 @@ description: Artifact commands keyboard.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 20.574 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.9926556406329575, + "z": 0.12097429115135457 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -19246,7 +19088,29 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 222.8596, + "y": 79.03464000000001, + "z": 0.0 + } } }, { @@ -19262,6 +19126,24 @@ description: Artifact commands keyboard.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -19269,6 +19151,52 @@ description: Artifact commands keyboard.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 226.0585, + "y": 83.303 + }, + "radius": 5.3340000000000005, + "start": { + "unit": "degrees", + "value": -126.85 + }, + "end": { + "unit": "degrees", + "value": 41.15 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -19311,6 +19239,48 @@ description: Artifact commands keyboard.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.6583, + "y": -1.7877, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 226.0539, + "y": 83.2991 + }, + "radius": 2.92608, + "start": { + "unit": "degrees", + "value": 36.15 + }, + "end": { + "unit": "degrees", + "value": -121.85 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -19344,6 +19314,30 @@ description: Artifact commands keyboard.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -0.12097429115135457, + "z": 0.9926556406329575 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -19375,7 +19369,11 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": -0.7619999999999999, + "faces": null, + "opposite": "None" } }, { @@ -19386,6 +19384,244 @@ description: Artifact commands keyboard.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -19399,26 +19635,7 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -19437,39 +19654,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -19484,39 +19674,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -19531,39 +19694,12 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -19578,9 +19714,90 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -19604,234 +19821,17 @@ description: Artifact commands keyboard.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "object_set_material_params_pbr", "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "color": { + "r": 0.05882353, + "g": 0.05882353, + "b": 0.05882353, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/keyboard/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/keyboard/artifact_graph_flowchart.snap.md index 3c97af64d..b7af5c2af 100644 --- a/rust/kcl-lib/tests/kcl_samples/keyboard/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/keyboard/artifact_graph_flowchart.snap.md @@ -1,625 +1,451 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[555, 580, 0]"] - 3["Segment
[586, 625, 0]"] - 4["Segment
[631, 707, 0]"] - 5["Segment
[713, 756, 0]"] - 6["Segment
[762, 832, 0]"] - 7["Segment
[838, 845, 0]"] - 8[Solid2d] + subgraph path29 [Path] + 29["Path
[555, 580, 0]"] + 60["Segment
[586, 625, 0]"] + 61["Segment
[631, 707, 0]"] + 62["Segment
[713, 756, 0]"] + 63["Segment
[762, 832, 0]"] + 64["Segment
[838, 845, 0]"] + 304[Solid2d] end - subgraph path28 [Path] - 28["Path
[1203, 1257, 0]"] - 29["Segment
[1203, 1257, 0]"] - 30[Solid2d] + subgraph path30 [Path] + 30["Path
[1203, 1257, 0]"] + 65["Segment
[1203, 1257, 0]"] + 317[Solid2d] end subgraph path31 [Path] 31["Path
[1271, 1324, 0]"] - 32["Segment
[1271, 1324, 0]"] - 33[Solid2d] + 66["Segment
[1271, 1324, 0]"] + 302[Solid2d] + end + subgraph path32 [Path] + 32["Path
[1338, 1398, 0]"] + 67["Segment
[1338, 1398, 0]"] + 312[Solid2d] + end + subgraph path33 [Path] + 33["Path
[1412, 1471, 0]"] + 68["Segment
[1412, 1471, 0]"] + 303[Solid2d] end subgraph path34 [Path] - 34["Path
[1338, 1398, 0]"] - 35["Segment
[1338, 1398, 0]"] - 36[Solid2d] + 34["Path
[1985, 2047, 0]"] + 87["Segment
[2055, 2106, 0]"] + 107["Segment
[2114, 2188, 0]"] + 116["Segment
[2196, 2235, 0]"] + 134["Segment
[2243, 2350, 0]"] + 155["Segment
[2358, 2397, 0]"] + 189["Segment
[2405, 2522, 0]"] + 198["Segment
[2530, 2569, 0]"] + 216["Segment
[2577, 2662, 0]"] + 242["Segment
[2670, 2677, 0]"] + 290[Solid2d] + end + subgraph path35 [Path] + 35["Path
[1985, 2047, 0]"] + 88["Segment
[2055, 2106, 0]"] + 101["Segment
[2114, 2188, 0]"] + 113["Segment
[2196, 2235, 0]"] + 152["Segment
[2243, 2350, 0]"] + 171["Segment
[2358, 2397, 0]"] + 191["Segment
[2405, 2522, 0]"] + 197["Segment
[2530, 2569, 0]"] + 217["Segment
[2577, 2662, 0]"] + 241["Segment
[2670, 2677, 0]"] + 291[Solid2d] + end + subgraph path36 [Path] + 36["Path
[1985, 2047, 0]"] + 74["Segment
[2055, 2106, 0]"] + 98["Segment
[2114, 2188, 0]"] + 117["Segment
[2196, 2235, 0]"] + 141["Segment
[2243, 2350, 0]"] + 170["Segment
[2358, 2397, 0]"] + 177["Segment
[2405, 2522, 0]"] + 215["Segment
[2530, 2569, 0]"] + 219["Segment
[2577, 2662, 0]"] + 254["Segment
[2670, 2677, 0]"] + 293[Solid2d] end subgraph path37 [Path] - 37["Path
[1412, 1471, 0]"] - 38["Segment
[1412, 1471, 0]"] - 39[Solid2d] + 37["Path
[1985, 2047, 0]"] + 76["Segment
[2055, 2106, 0]"] + 108["Segment
[2114, 2188, 0]"] + 130["Segment
[2196, 2235, 0]"] + 147["Segment
[2243, 2350, 0]"] + 169["Segment
[2358, 2397, 0]"] + 190["Segment
[2405, 2522, 0]"] + 201["Segment
[2530, 2569, 0]"] + 228["Segment
[2577, 2662, 0]"] + 253["Segment
[2670, 2677, 0]"] + 294[Solid2d] end - subgraph path61 [Path] - 61["Path
[1985, 2047, 0]"] - 62["Segment
[2055, 2106, 0]"] - 63["Segment
[2114, 2188, 0]"] - 64["Segment
[2196, 2235, 0]"] - 65["Segment
[2243, 2350, 0]"] - 66["Segment
[2358, 2397, 0]"] - 67["Segment
[2405, 2522, 0]"] - 68["Segment
[2530, 2569, 0]"] - 69["Segment
[2577, 2662, 0]"] - 70["Segment
[2670, 2677, 0]"] - 71[Solid2d] + subgraph path38 [Path] + 38["Path
[1985, 2047, 0]"] + 84["Segment
[2055, 2106, 0]"] + 96["Segment
[2114, 2188, 0]"] + 112["Segment
[2196, 2235, 0]"] + 133["Segment
[2243, 2350, 0]"] + 157["Segment
[2358, 2397, 0]"] + 186["Segment
[2405, 2522, 0]"] + 209["Segment
[2530, 2569, 0]"] + 224["Segment
[2577, 2662, 0]"] + 243["Segment
[2670, 2677, 0]"] + 295[Solid2d] end - subgraph path100 [Path] - 100["Path
[1985, 2047, 0]"] - 101["Segment
[2055, 2106, 0]"] + subgraph path39 [Path] + 39["Path
[1985, 2047, 0]"] + 78["Segment
[2055, 2106, 0]"] + 110["Segment
[2114, 2188, 0]"] + 118["Segment
[2196, 2235, 0]"] + 145["Segment
[2243, 2350, 0]"] + 166["Segment
[2358, 2397, 0]"] + 188["Segment
[2405, 2522, 0]"] + 202["Segment
[2530, 2569, 0]"] + 218["Segment
[2577, 2662, 0]"] + 245["Segment
[2670, 2677, 0]"] + 296[Solid2d] + end + subgraph path40 [Path] + 40["Path
[1985, 2047, 0]"] + 73["Segment
[2055, 2106, 0]"] + 95["Segment
[2114, 2188, 0]"] + 128["Segment
[2196, 2235, 0]"] + 148["Segment
[2243, 2350, 0]"] + 172["Segment
[2358, 2397, 0]"] + 178["Segment
[2405, 2522, 0]"] + 207["Segment
[2530, 2569, 0]"] + 234["Segment
[2577, 2662, 0]"] + 251["Segment
[2670, 2677, 0]"] + 297[Solid2d] + end + subgraph path41 [Path] + 41["Path
[1985, 2047, 0]"] + 83["Segment
[2055, 2106, 0]"] + 106["Segment
[2114, 2188, 0]"] + 125["Segment
[2196, 2235, 0]"] + 151["Segment
[2243, 2350, 0]"] + 160["Segment
[2358, 2397, 0]"] + 176["Segment
[2405, 2522, 0]"] + 204["Segment
[2530, 2569, 0]"] + 235["Segment
[2577, 2662, 0]"] + 248["Segment
[2670, 2677, 0]"] + 298[Solid2d] + end + subgraph path42 [Path] + 42["Path
[1985, 2047, 0]"] + 86["Segment
[2055, 2106, 0]"] 102["Segment
[2114, 2188, 0]"] - 103["Segment
[2196, 2235, 0]"] - 104["Segment
[2243, 2350, 0]"] - 105["Segment
[2358, 2397, 0]"] - 106["Segment
[2405, 2522, 0]"] - 107["Segment
[2530, 2569, 0]"] - 108["Segment
[2577, 2662, 0]"] - 109["Segment
[2670, 2677, 0]"] - 110[Solid2d] + 119["Segment
[2196, 2235, 0]"] + 150["Segment
[2243, 2350, 0]"] + 164["Segment
[2358, 2397, 0]"] + 174["Segment
[2405, 2522, 0]"] + 200["Segment
[2530, 2569, 0]"] + 226["Segment
[2577, 2662, 0]"] + 246["Segment
[2670, 2677, 0]"] + 300[Solid2d] end - subgraph path139 [Path] - 139["Path
[1985, 2047, 0]"] - 140["Segment
[2055, 2106, 0]"] - 141["Segment
[2114, 2188, 0]"] - 142["Segment
[2196, 2235, 0]"] - 143["Segment
[2243, 2350, 0]"] - 144["Segment
[2358, 2397, 0]"] - 145["Segment
[2405, 2522, 0]"] - 146["Segment
[2530, 2569, 0]"] - 147["Segment
[2577, 2662, 0]"] - 148["Segment
[2670, 2677, 0]"] - 149[Solid2d] + subgraph path43 [Path] + 43["Path
[1985, 2047, 0]"] + 77["Segment
[2055, 2106, 0]"] + 109["Segment
[2114, 2188, 0]"] + 114["Segment
[2196, 2235, 0]"] + 142["Segment
[2243, 2350, 0]"] + 153["Segment
[2358, 2397, 0]"] + 182["Segment
[2405, 2522, 0]"] + 199["Segment
[2530, 2569, 0]"] + 230["Segment
[2577, 2662, 0]"] + 252["Segment
[2670, 2677, 0]"] + 301[Solid2d] end - subgraph path178 [Path] - 178["Path
[1985, 2047, 0]"] - 179["Segment
[2055, 2106, 0]"] - 180["Segment
[2114, 2188, 0]"] - 181["Segment
[2196, 2235, 0]"] - 182["Segment
[2243, 2350, 0]"] - 183["Segment
[2358, 2397, 0]"] - 184["Segment
[2405, 2522, 0]"] - 185["Segment
[2530, 2569, 0]"] - 186["Segment
[2577, 2662, 0]"] - 187["Segment
[2670, 2677, 0]"] - 188[Solid2d] - end - subgraph path217 [Path] - 217["Path
[1985, 2047, 0]"] - 218["Segment
[2055, 2106, 0]"] - 219["Segment
[2114, 2188, 0]"] - 220["Segment
[2196, 2235, 0]"] - 221["Segment
[2243, 2350, 0]"] - 222["Segment
[2358, 2397, 0]"] - 223["Segment
[2405, 2522, 0]"] - 224["Segment
[2530, 2569, 0]"] - 225["Segment
[2577, 2662, 0]"] - 226["Segment
[2670, 2677, 0]"] - 227[Solid2d] - end - subgraph path256 [Path] - 256["Path
[1985, 2047, 0]"] - 257["Segment
[2055, 2106, 0]"] - 258["Segment
[2114, 2188, 0]"] - 259["Segment
[2196, 2235, 0]"] - 260["Segment
[2243, 2350, 0]"] - 261["Segment
[2358, 2397, 0]"] - 262["Segment
[2405, 2522, 0]"] - 263["Segment
[2530, 2569, 0]"] - 264["Segment
[2577, 2662, 0]"] - 265["Segment
[2670, 2677, 0]"] - 266[Solid2d] - end - subgraph path295 [Path] - 295["Path
[1985, 2047, 0]"] - 296["Segment
[2055, 2106, 0]"] - 297["Segment
[2114, 2188, 0]"] - 298["Segment
[2196, 2235, 0]"] - 299["Segment
[2243, 2350, 0]"] - 300["Segment
[2358, 2397, 0]"] - 301["Segment
[2405, 2522, 0]"] - 302["Segment
[2530, 2569, 0]"] - 303["Segment
[2577, 2662, 0]"] - 304["Segment
[2670, 2677, 0]"] + subgraph path44 [Path] + 44["Path
[1985, 2047, 0]"] + 69["Segment
[2055, 2106, 0]"] + 91["Segment
[2114, 2188, 0]"] + 127["Segment
[2196, 2235, 0]"] + 144["Segment
[2243, 2350, 0]"] + 163["Segment
[2358, 2397, 0]"] + 185["Segment
[2405, 2522, 0]"] + 210["Segment
[2530, 2569, 0]"] + 233["Segment
[2577, 2662, 0]"] + 256["Segment
[2670, 2677, 0]"] 305[Solid2d] end - subgraph path334 [Path] - 334["Path
[1985, 2047, 0]"] - 335["Segment
[2055, 2106, 0]"] - 336["Segment
[2114, 2188, 0]"] - 337["Segment
[2196, 2235, 0]"] - 338["Segment
[2243, 2350, 0]"] - 339["Segment
[2358, 2397, 0]"] - 340["Segment
[2405, 2522, 0]"] - 341["Segment
[2530, 2569, 0]"] - 342["Segment
[2577, 2662, 0]"] - 343["Segment
[2670, 2677, 0]"] - 344[Solid2d] + subgraph path45 [Path] + 45["Path
[1985, 2047, 0]"] + 80["Segment
[2055, 2106, 0]"] + 93["Segment
[2114, 2188, 0]"] + 124["Segment
[2196, 2235, 0]"] + 139["Segment
[2243, 2350, 0]"] + 168["Segment
[2358, 2397, 0]"] + 184["Segment
[2405, 2522, 0]"] + 195["Segment
[2530, 2569, 0]"] + 222["Segment
[2577, 2662, 0]"] + 240["Segment
[2670, 2677, 0]"] + 306[Solid2d] end - subgraph path373 [Path] - 373["Path
[1985, 2047, 0]"] - 374["Segment
[2055, 2106, 0]"] - 375["Segment
[2114, 2188, 0]"] - 376["Segment
[2196, 2235, 0]"] - 377["Segment
[2243, 2350, 0]"] - 378["Segment
[2358, 2397, 0]"] - 379["Segment
[2405, 2522, 0]"] - 380["Segment
[2530, 2569, 0]"] - 381["Segment
[2577, 2662, 0]"] - 382["Segment
[2670, 2677, 0]"] - 383[Solid2d] + subgraph path46 [Path] + 46["Path
[1985, 2047, 0]"] + 70["Segment
[2055, 2106, 0]"] + 103["Segment
[2114, 2188, 0]"] + 123["Segment
[2196, 2235, 0]"] + 143["Segment
[2243, 2350, 0]"] + 173["Segment
[2358, 2397, 0]"] + 179["Segment
[2405, 2522, 0]"] + 205["Segment
[2530, 2569, 0]"] + 220["Segment
[2577, 2662, 0]"] + 237["Segment
[2670, 2677, 0]"] + 307[Solid2d] end - subgraph path412 [Path] - 412["Path
[1985, 2047, 0]"] - 413["Segment
[2055, 2106, 0]"] - 414["Segment
[2114, 2188, 0]"] - 415["Segment
[2196, 2235, 0]"] - 416["Segment
[2243, 2350, 0]"] - 417["Segment
[2358, 2397, 0]"] - 418["Segment
[2405, 2522, 0]"] - 419["Segment
[2530, 2569, 0]"] - 420["Segment
[2577, 2662, 0]"] - 421["Segment
[2670, 2677, 0]"] - 422[Solid2d] + subgraph path47 [Path] + 47["Path
[1985, 2047, 0]"] + 82["Segment
[2055, 2106, 0]"] + 97["Segment
[2114, 2188, 0]"] + 126["Segment
[2196, 2235, 0]"] + 137["Segment
[2243, 2350, 0]"] + 159["Segment
[2358, 2397, 0]"] + 180["Segment
[2405, 2522, 0]"] + 196["Segment
[2530, 2569, 0]"] + 225["Segment
[2577, 2662, 0]"] + 255["Segment
[2670, 2677, 0]"] + 308[Solid2d] end - subgraph path451 [Path] - 451["Path
[1985, 2047, 0]"] - 452["Segment
[2055, 2106, 0]"] - 453["Segment
[2114, 2188, 0]"] - 454["Segment
[2196, 2235, 0]"] - 455["Segment
[2243, 2350, 0]"] - 456["Segment
[2358, 2397, 0]"] - 457["Segment
[2405, 2522, 0]"] - 458["Segment
[2530, 2569, 0]"] - 459["Segment
[2577, 2662, 0]"] - 460["Segment
[2670, 2677, 0]"] - 461[Solid2d] + subgraph path48 [Path] + 48["Path
[1985, 2047, 0]"] + 89["Segment
[2055, 2106, 0]"] + 100["Segment
[2114, 2188, 0]"] + 129["Segment
[2196, 2235, 0]"] + 135["Segment
[2243, 2350, 0]"] + 158["Segment
[2358, 2397, 0]"] + 183["Segment
[2405, 2522, 0]"] + 211["Segment
[2530, 2569, 0]"] + 221["Segment
[2577, 2662, 0]"] + 250["Segment
[2670, 2677, 0]"] + 309[Solid2d] end - subgraph path490 [Path] - 490["Path
[1985, 2047, 0]"] - 491["Segment
[2055, 2106, 0]"] - 492["Segment
[2114, 2188, 0]"] - 493["Segment
[2196, 2235, 0]"] - 494["Segment
[2243, 2350, 0]"] - 495["Segment
[2358, 2397, 0]"] - 496["Segment
[2405, 2522, 0]"] - 497["Segment
[2530, 2569, 0]"] - 498["Segment
[2577, 2662, 0]"] - 499["Segment
[2670, 2677, 0]"] - 500[Solid2d] + subgraph path49 [Path] + 49["Path
[1985, 2047, 0]"] + 72["Segment
[2055, 2106, 0]"] + 92["Segment
[2114, 2188, 0]"] + 115["Segment
[2196, 2235, 0]"] + 138["Segment
[2243, 2350, 0]"] + 162["Segment
[2358, 2397, 0]"] + 193["Segment
[2405, 2522, 0]"] + 203["Segment
[2530, 2569, 0]"] + 229["Segment
[2577, 2662, 0]"] + 239["Segment
[2670, 2677, 0]"] + 310[Solid2d] end - subgraph path529 [Path] - 529["Path
[1985, 2047, 0]"] - 530["Segment
[2055, 2106, 0]"] - 531["Segment
[2114, 2188, 0]"] - 532["Segment
[2196, 2235, 0]"] - 533["Segment
[2243, 2350, 0]"] - 534["Segment
[2358, 2397, 0]"] - 535["Segment
[2405, 2522, 0]"] - 536["Segment
[2530, 2569, 0]"] - 537["Segment
[2577, 2662, 0]"] - 538["Segment
[2670, 2677, 0]"] - 539[Solid2d] + subgraph path50 [Path] + 50["Path
[1985, 2047, 0]"] + 75["Segment
[2055, 2106, 0]"] + 99["Segment
[2114, 2188, 0]"] + 121["Segment
[2196, 2235, 0]"] + 140["Segment
[2243, 2350, 0]"] + 167["Segment
[2358, 2397, 0]"] + 181["Segment
[2405, 2522, 0]"] + 206["Segment
[2530, 2569, 0]"] + 223["Segment
[2577, 2662, 0]"] + 238["Segment
[2670, 2677, 0]"] + 313[Solid2d] end - subgraph path568 [Path] - 568["Path
[1985, 2047, 0]"] - 569["Segment
[2055, 2106, 0]"] - 570["Segment
[2114, 2188, 0]"] - 571["Segment
[2196, 2235, 0]"] - 572["Segment
[2243, 2350, 0]"] - 573["Segment
[2358, 2397, 0]"] - 574["Segment
[2405, 2522, 0]"] - 575["Segment
[2530, 2569, 0]"] - 576["Segment
[2577, 2662, 0]"] - 577["Segment
[2670, 2677, 0]"] - 578[Solid2d] + subgraph path51 [Path] + 51["Path
[1985, 2047, 0]"] + 79["Segment
[2055, 2106, 0]"] + 104["Segment
[2114, 2188, 0]"] + 131["Segment
[2196, 2235, 0]"] + 149["Segment
[2243, 2350, 0]"] + 156["Segment
[2358, 2397, 0]"] + 175["Segment
[2405, 2522, 0]"] + 214["Segment
[2530, 2569, 0]"] + 227["Segment
[2577, 2662, 0]"] + 244["Segment
[2670, 2677, 0]"] + 315[Solid2d] end - subgraph path607 [Path] - 607["Path
[1985, 2047, 0]"] - 608["Segment
[2055, 2106, 0]"] - 609["Segment
[2114, 2188, 0]"] - 610["Segment
[2196, 2235, 0]"] - 611["Segment
[2243, 2350, 0]"] - 612["Segment
[2358, 2397, 0]"] - 613["Segment
[2405, 2522, 0]"] - 614["Segment
[2530, 2569, 0]"] - 615["Segment
[2577, 2662, 0]"] - 616["Segment
[2670, 2677, 0]"] - 617[Solid2d] + subgraph path52 [Path] + 52["Path
[1985, 2047, 0]"] + 85["Segment
[2055, 2106, 0]"] + 105["Segment
[2114, 2188, 0]"] + 120["Segment
[2196, 2235, 0]"] + 132["Segment
[2243, 2350, 0]"] + 165["Segment
[2358, 2397, 0]"] + 187["Segment
[2405, 2522, 0]"] + 208["Segment
[2530, 2569, 0]"] + 231["Segment
[2577, 2662, 0]"] + 249["Segment
[2670, 2677, 0]"] + 318[Solid2d] end - subgraph path646 [Path] - 646["Path
[1985, 2047, 0]"] - 647["Segment
[2055, 2106, 0]"] - 648["Segment
[2114, 2188, 0]"] - 649["Segment
[2196, 2235, 0]"] - 650["Segment
[2243, 2350, 0]"] - 651["Segment
[2358, 2397, 0]"] - 652["Segment
[2405, 2522, 0]"] - 653["Segment
[2530, 2569, 0]"] - 654["Segment
[2577, 2662, 0]"] - 655["Segment
[2670, 2677, 0]"] - 656[Solid2d] + subgraph path53 [Path] + 53["Path
[1985, 2047, 0]"] + 71["Segment
[2055, 2106, 0]"] + 94["Segment
[2114, 2188, 0]"] + 122["Segment
[2196, 2235, 0]"] + 146["Segment
[2243, 2350, 0]"] + 154["Segment
[2358, 2397, 0]"] + 192["Segment
[2405, 2522, 0]"] + 212["Segment
[2530, 2569, 0]"] + 232["Segment
[2577, 2662, 0]"] + 247["Segment
[2670, 2677, 0]"] + 319[Solid2d] end - subgraph path685 [Path] - 685["Path
[1985, 2047, 0]"] - 686["Segment
[2055, 2106, 0]"] - 687["Segment
[2114, 2188, 0]"] - 688["Segment
[2196, 2235, 0]"] - 689["Segment
[2243, 2350, 0]"] - 690["Segment
[2358, 2397, 0]"] - 691["Segment
[2405, 2522, 0]"] - 692["Segment
[2530, 2569, 0]"] - 693["Segment
[2577, 2662, 0]"] - 694["Segment
[2670, 2677, 0]"] - 695[Solid2d] + subgraph path54 [Path] + 54["Path
[1985, 2047, 0]"] + 81["Segment
[2055, 2106, 0]"] + 90["Segment
[2114, 2188, 0]"] + 111["Segment
[2196, 2235, 0]"] + 136["Segment
[2243, 2350, 0]"] + 161["Segment
[2358, 2397, 0]"] + 194["Segment
[2405, 2522, 0]"] + 213["Segment
[2530, 2569, 0]"] + 236["Segment
[2577, 2662, 0]"] + 257["Segment
[2670, 2677, 0]"] + 320[Solid2d] end - subgraph path724 [Path] - 724["Path
[1985, 2047, 0]"] - 725["Segment
[2055, 2106, 0]"] - 726["Segment
[2114, 2188, 0]"] - 727["Segment
[2196, 2235, 0]"] - 728["Segment
[2243, 2350, 0]"] - 729["Segment
[2358, 2397, 0]"] - 730["Segment
[2405, 2522, 0]"] - 731["Segment
[2530, 2569, 0]"] - 732["Segment
[2577, 2662, 0]"] - 733["Segment
[2670, 2677, 0]"] - 734[Solid2d] + subgraph path55 [Path] + 55["Path
[4901, 4988, 0]"] + 258["Segment
[4996, 5025, 0]"] + 259["Segment
[5033, 5061, 0]"] + 260["Segment
[5069, 5147, 0]"] + 261["Segment
[5155, 5202, 0]"] + 262["Segment
[5210, 5238, 0]"] + 263["Segment
[5246, 5275, 0]"] + 264["Segment
[5283, 5312, 0]"] + 265["Segment
[5320, 5386, 0]"] + 266["Segment
[5394, 5422, 0]"] + 267["Segment
[5430, 5459, 0]"] + 268["Segment
[5467, 5529, 0]"] + 269["Segment
[5537, 5565, 0]"] + 270["Segment
[5573, 5607, 0]"] + 271["Segment
[5615, 5645, 0]"] + 272["Segment
[5653, 5721, 0]"] + 273["Segment
[5729, 5736, 0]"] + 314[Solid2d] end - subgraph path763 [Path] - 763["Path
[1985, 2047, 0]"] - 764["Segment
[2055, 2106, 0]"] - 765["Segment
[2114, 2188, 0]"] - 766["Segment
[2196, 2235, 0]"] - 767["Segment
[2243, 2350, 0]"] - 768["Segment
[2358, 2397, 0]"] - 769["Segment
[2405, 2522, 0]"] - 770["Segment
[2530, 2569, 0]"] - 771["Segment
[2577, 2662, 0]"] - 772["Segment
[2670, 2677, 0]"] - 773[Solid2d] + subgraph path56 [Path] + 56["Path
[5936, 6034, 0]"] + 274["Segment
[6042, 6120, 0]"] + 277["Segment
[6128, 6175, 0]"] + 279["Segment
[6183, 6263, 0]"] + 281["Segment
[6271, 6278, 0]"] + 299[Solid2d] end - subgraph path802 [Path] - 802["Path
[1985, 2047, 0]"] - 803["Segment
[2055, 2106, 0]"] - 804["Segment
[2114, 2188, 0]"] - 805["Segment
[2196, 2235, 0]"] - 806["Segment
[2243, 2350, 0]"] - 807["Segment
[2358, 2397, 0]"] - 808["Segment
[2405, 2522, 0]"] - 809["Segment
[2530, 2569, 0]"] - 810["Segment
[2577, 2662, 0]"] - 811["Segment
[2670, 2677, 0]"] - 812[Solid2d] + subgraph path57 [Path] + 57["Path
[5936, 6034, 0]"] + 275["Segment
[6042, 6120, 0]"] + 276["Segment
[6128, 6175, 0]"] + 278["Segment
[6183, 6263, 0]"] + 280["Segment
[6271, 6278, 0]"] + 316[Solid2d] end - subgraph path841 [Path] - 841["Path
[1985, 2047, 0]"] - 842["Segment
[2055, 2106, 0]"] - 843["Segment
[2114, 2188, 0]"] - 844["Segment
[2196, 2235, 0]"] - 845["Segment
[2243, 2350, 0]"] - 846["Segment
[2358, 2397, 0]"] - 847["Segment
[2405, 2522, 0]"] - 848["Segment
[2530, 2569, 0]"] - 849["Segment
[2577, 2662, 0]"] - 850["Segment
[2670, 2677, 0]"] - 851[Solid2d] + subgraph path58 [Path] + 58["Path
[6386, 6483, 0]"] + 282["Segment
[6491, 6569, 0]"] + 284["Segment
[6577, 6625, 0]"] + 286["Segment
[6633, 6713, 0]"] + 289["Segment
[6721, 6728, 0]"] + 292[Solid2d] end - subgraph path880 [Path] - 880["Path
[4901, 4988, 0]"] - 881["Segment
[4996, 5025, 0]"] - 882["Segment
[5033, 5061, 0]"] - 883["Segment
[5069, 5147, 0]"] - 884["Segment
[5155, 5202, 0]"] - 885["Segment
[5210, 5238, 0]"] - 886["Segment
[5246, 5275, 0]"] - 887["Segment
[5283, 5312, 0]"] - 888["Segment
[5320, 5386, 0]"] - 889["Segment
[5394, 5422, 0]"] - 890["Segment
[5430, 5459, 0]"] - 891["Segment
[5467, 5529, 0]"] - 892["Segment
[5537, 5565, 0]"] - 893["Segment
[5573, 5607, 0]"] - 894["Segment
[5615, 5645, 0]"] - 895["Segment
[5653, 5721, 0]"] - 896["Segment
[5729, 5736, 0]"] - 897[Solid2d] - end - subgraph path950 [Path] - 950["Path
[5936, 6034, 0]"] - 951["Segment
[6042, 6120, 0]"] - 952["Segment
[6128, 6175, 0]"] - 953["Segment
[6183, 6263, 0]"] - 954["Segment
[6271, 6278, 0]"] - 955[Solid2d] - end - subgraph path972 [Path] - 972["Path
[6386, 6483, 0]"] - 973["Segment
[6491, 6569, 0]"] - 974["Segment
[6577, 6625, 0]"] - 975["Segment
[6633, 6713, 0]"] - 976["Segment
[6721, 6728, 0]"] - 977[Solid2d] - end - subgraph path994 [Path] - 994["Path
[5936, 6034, 0]"] - 995["Segment
[6042, 6120, 0]"] - 996["Segment
[6128, 6175, 0]"] - 997["Segment
[6183, 6263, 0]"] - 998["Segment
[6271, 6278, 0]"] - 999[Solid2d] - end - subgraph path1016 [Path] - 1016["Path
[6386, 6483, 0]"] - 1017["Segment
[6491, 6569, 0]"] - 1018["Segment
[6577, 6625, 0]"] - 1019["Segment
[6633, 6713, 0]"] - 1020["Segment
[6721, 6728, 0]"] - 1021[Solid2d] + subgraph path59 [Path] + 59["Path
[6386, 6483, 0]"] + 283["Segment
[6491, 6569, 0]"] + 285["Segment
[6577, 6625, 0]"] + 287["Segment
[6633, 6713, 0]"] + 288["Segment
[6721, 6728, 0]"] + 311[Solid2d] end 1["Plane
[532, 549, 0]"] - 9["Sweep Extrusion
[851, 873, 0]"] - 10[Wall] - 11[Wall] - 12[Wall] - 13[Wall] - 14["Cap Start"] - 15["Cap End"] - 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] - 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 20["SweepEdge Opposite"] - 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] - 23["SweepEdge Adjacent"] - 24["EdgeCut Fillet
[914, 1071, 0]"] - 25["EdgeCut Fillet
[914, 1071, 0]"] - 26["EdgeCut Fillet
[914, 1071, 0]"] - 27["EdgeCut Fillet
[914, 1071, 0]"] - 40["Sweep Extrusion
[1472, 1570, 0]"] - 41[Wall] - 42["Cap End"] - 43["SweepEdge Opposite"] - 44["SweepEdge Adjacent"] - 45["Sweep Extrusion
[1472, 1570, 0]"] - 46[Wall] - 47["Cap End"] - 48["SweepEdge Opposite"] - 49["SweepEdge Adjacent"] - 50["Sweep Extrusion
[1472, 1570, 0]"] - 51[Wall] - 52["Cap End"] - 53["SweepEdge Opposite"] - 54["SweepEdge Adjacent"] - 55["Sweep Extrusion
[1472, 1570, 0]"] - 56[Wall] - 57["Cap End"] - 58["SweepEdge Opposite"] - 59["SweepEdge Adjacent"] - 60["Plane
[1946, 1969, 0]"] - 72["Sweep Extrusion
[2685, 2711, 0]"] - 73[Wall] - 74[Wall] - 75[Wall] - 76[Wall] - 77[Wall] - 78[Wall] - 79[Wall] - 80[Wall] - 81["Cap Start"] - 82["Cap End"] - 83["SweepEdge Opposite"] - 84["SweepEdge Adjacent"] - 85["SweepEdge Opposite"] - 86["SweepEdge Adjacent"] - 87["SweepEdge Opposite"] - 88["SweepEdge Adjacent"] - 89["SweepEdge Opposite"] - 90["SweepEdge Adjacent"] - 91["SweepEdge Opposite"] - 92["SweepEdge Adjacent"] - 93["SweepEdge Opposite"] - 94["SweepEdge Adjacent"] - 95["SweepEdge Opposite"] - 96["SweepEdge Adjacent"] - 97["SweepEdge Opposite"] - 98["SweepEdge Adjacent"] - 99["Plane
[1946, 1969, 0]"] - 111["Sweep Extrusion
[2685, 2711, 0]"] - 112[Wall] - 113[Wall] - 114[Wall] - 115[Wall] - 116[Wall] - 117[Wall] - 118[Wall] - 119[Wall] - 120["Cap Start"] - 121["Cap End"] - 122["SweepEdge Opposite"] - 123["SweepEdge Adjacent"] - 124["SweepEdge Opposite"] - 125["SweepEdge Adjacent"] - 126["SweepEdge Opposite"] - 127["SweepEdge Adjacent"] - 128["SweepEdge Opposite"] - 129["SweepEdge Adjacent"] - 130["SweepEdge Opposite"] - 131["SweepEdge Adjacent"] - 132["SweepEdge Opposite"] - 133["SweepEdge Adjacent"] - 134["SweepEdge Opposite"] - 135["SweepEdge Adjacent"] - 136["SweepEdge Opposite"] - 137["SweepEdge Adjacent"] - 138["Plane
[1946, 1969, 0]"] - 150["Sweep Extrusion
[2685, 2711, 0]"] - 151[Wall] - 152[Wall] - 153[Wall] - 154[Wall] - 155[Wall] - 156[Wall] - 157[Wall] - 158[Wall] - 159["Cap Start"] - 160["Cap End"] - 161["SweepEdge Opposite"] - 162["SweepEdge Adjacent"] - 163["SweepEdge Opposite"] - 164["SweepEdge Adjacent"] - 165["SweepEdge Opposite"] - 166["SweepEdge Adjacent"] - 167["SweepEdge Opposite"] - 168["SweepEdge Adjacent"] - 169["SweepEdge Opposite"] - 170["SweepEdge Adjacent"] - 171["SweepEdge Opposite"] - 172["SweepEdge Adjacent"] - 173["SweepEdge Opposite"] - 174["SweepEdge Adjacent"] - 175["SweepEdge Opposite"] - 176["SweepEdge Adjacent"] - 177["Plane
[1946, 1969, 0]"] - 189["Sweep Extrusion
[2685, 2711, 0]"] - 190[Wall] - 191[Wall] - 192[Wall] - 193[Wall] - 194[Wall] - 195[Wall] - 196[Wall] - 197[Wall] - 198["Cap Start"] - 199["Cap End"] - 200["SweepEdge Opposite"] - 201["SweepEdge Adjacent"] - 202["SweepEdge Opposite"] - 203["SweepEdge Adjacent"] - 204["SweepEdge Opposite"] - 205["SweepEdge Adjacent"] - 206["SweepEdge Opposite"] - 207["SweepEdge Adjacent"] - 208["SweepEdge Opposite"] - 209["SweepEdge Adjacent"] - 210["SweepEdge Opposite"] - 211["SweepEdge Adjacent"] - 212["SweepEdge Opposite"] - 213["SweepEdge Adjacent"] - 214["SweepEdge Opposite"] - 215["SweepEdge Adjacent"] - 216["Plane
[1946, 1969, 0]"] - 228["Sweep Extrusion
[2685, 2711, 0]"] - 229[Wall] - 230[Wall] - 231[Wall] - 232[Wall] - 233[Wall] - 234[Wall] - 235[Wall] - 236[Wall] - 237["Cap Start"] - 238["Cap End"] - 239["SweepEdge Opposite"] - 240["SweepEdge Adjacent"] - 241["SweepEdge Opposite"] - 242["SweepEdge Adjacent"] - 243["SweepEdge Opposite"] - 244["SweepEdge Adjacent"] - 245["SweepEdge Opposite"] - 246["SweepEdge Adjacent"] - 247["SweepEdge Opposite"] - 248["SweepEdge Adjacent"] - 249["SweepEdge Opposite"] - 250["SweepEdge Adjacent"] - 251["SweepEdge Opposite"] - 252["SweepEdge Adjacent"] - 253["SweepEdge Opposite"] - 254["SweepEdge Adjacent"] - 255["Plane
[1946, 1969, 0]"] - 267["Sweep Extrusion
[2685, 2711, 0]"] - 268[Wall] - 269[Wall] - 270[Wall] - 271[Wall] - 272[Wall] - 273[Wall] - 274[Wall] - 275[Wall] - 276["Cap Start"] - 277["Cap End"] - 278["SweepEdge Opposite"] - 279["SweepEdge Adjacent"] - 280["SweepEdge Opposite"] - 281["SweepEdge Adjacent"] - 282["SweepEdge Opposite"] - 283["SweepEdge Adjacent"] - 284["SweepEdge Opposite"] - 285["SweepEdge Adjacent"] - 286["SweepEdge Opposite"] - 287["SweepEdge Adjacent"] - 288["SweepEdge Opposite"] - 289["SweepEdge Adjacent"] - 290["SweepEdge Opposite"] - 291["SweepEdge Adjacent"] - 292["SweepEdge Opposite"] - 293["SweepEdge Adjacent"] - 294["Plane
[1946, 1969, 0]"] - 306["Sweep Extrusion
[2685, 2711, 0]"] - 307[Wall] - 308[Wall] - 309[Wall] - 310[Wall] - 311[Wall] - 312[Wall] - 313[Wall] - 314[Wall] - 315["Cap Start"] - 316["Cap End"] - 317["SweepEdge Opposite"] - 318["SweepEdge Adjacent"] - 319["SweepEdge Opposite"] - 320["SweepEdge Adjacent"] - 321["SweepEdge Opposite"] - 322["SweepEdge Adjacent"] - 323["SweepEdge Opposite"] - 324["SweepEdge Adjacent"] - 325["SweepEdge Opposite"] - 326["SweepEdge Adjacent"] - 327["SweepEdge Opposite"] - 328["SweepEdge Adjacent"] - 329["SweepEdge Opposite"] - 330["SweepEdge Adjacent"] - 331["SweepEdge Opposite"] - 332["SweepEdge Adjacent"] - 333["Plane
[1946, 1969, 0]"] + 2["Plane
[1946, 1969, 0]"] + 3["Plane
[1946, 1969, 0]"] + 4["Plane
[1946, 1969, 0]"] + 5["Plane
[1946, 1969, 0]"] + 6["Plane
[1946, 1969, 0]"] + 7["Plane
[1946, 1969, 0]"] + 8["Plane
[1946, 1969, 0]"] + 9["Plane
[1946, 1969, 0]"] + 10["Plane
[1946, 1969, 0]"] + 11["Plane
[1946, 1969, 0]"] + 12["Plane
[1946, 1969, 0]"] + 13["Plane
[1946, 1969, 0]"] + 14["Plane
[1946, 1969, 0]"] + 15["Plane
[1946, 1969, 0]"] + 16["Plane
[1946, 1969, 0]"] + 17["Plane
[1946, 1969, 0]"] + 18["Plane
[1946, 1969, 0]"] + 19["Plane
[1946, 1969, 0]"] + 20["Plane
[1946, 1969, 0]"] + 21["Plane
[1946, 1969, 0]"] + 22["Plane
[1946, 1969, 0]"] + 23["Plane
[4870, 4893, 0]"] + 24["Plane
[5905, 5928, 0]"] + 25["Plane
[5905, 5928, 0]"] + 26["Plane
[6355, 6378, 0]"] + 27["Plane
[6355, 6378, 0]"] + 28["StartSketchOnFace
[1151, 1189, 0]"] + 321["Sweep Extrusion
[851, 873, 0]"] + 322["Sweep Extrusion
[1472, 1570, 0]"] + 323["Sweep Extrusion
[1472, 1570, 0]"] + 324["Sweep Extrusion
[1472, 1570, 0]"] + 325["Sweep Extrusion
[1472, 1570, 0]"] + 326["Sweep Extrusion
[2685, 2711, 0]"] + 327["Sweep Extrusion
[2685, 2711, 0]"] + 328["Sweep Extrusion
[2685, 2711, 0]"] + 329["Sweep Extrusion
[2685, 2711, 0]"] + 330["Sweep Extrusion
[2685, 2711, 0]"] + 331["Sweep Extrusion
[2685, 2711, 0]"] + 332["Sweep Extrusion
[2685, 2711, 0]"] + 333["Sweep Extrusion
[2685, 2711, 0]"] + 334["Sweep Extrusion
[2685, 2711, 0]"] + 335["Sweep Extrusion
[2685, 2711, 0]"] + 336["Sweep Extrusion
[2685, 2711, 0]"] + 337["Sweep Extrusion
[2685, 2711, 0]"] + 338["Sweep Extrusion
[2685, 2711, 0]"] + 339["Sweep Extrusion
[2685, 2711, 0]"] + 340["Sweep Extrusion
[2685, 2711, 0]"] + 341["Sweep Extrusion
[2685, 2711, 0]"] + 342["Sweep Extrusion
[2685, 2711, 0]"] + 343["Sweep Extrusion
[2685, 2711, 0]"] + 344["Sweep Extrusion
[2685, 2711, 0]"] 345["Sweep Extrusion
[2685, 2711, 0]"] - 346[Wall] - 347[Wall] - 348[Wall] - 349[Wall] - 350[Wall] - 351[Wall] + 346["Sweep Extrusion
[2685, 2711, 0]"] + 347["Sweep Extrusion
[5744, 5768, 0]"] + 348["Sweep Extrusion
[6286, 6310, 0]"] + 349["Sweep Extrusion
[6286, 6310, 0]"] + 350["Sweep Extrusion
[6736, 6760, 0]"] + 351["Sweep Extrusion
[6736, 6760, 0]"] 352[Wall] 353[Wall] - 354["Cap Start"] - 355["Cap End"] - 356["SweepEdge Opposite"] - 357["SweepEdge Adjacent"] - 358["SweepEdge Opposite"] - 359["SweepEdge Adjacent"] - 360["SweepEdge Opposite"] - 361["SweepEdge Adjacent"] - 362["SweepEdge Opposite"] - 363["SweepEdge Adjacent"] - 364["SweepEdge Opposite"] - 365["SweepEdge Adjacent"] - 366["SweepEdge Opposite"] - 367["SweepEdge Adjacent"] - 368["SweepEdge Opposite"] - 369["SweepEdge Adjacent"] - 370["SweepEdge Opposite"] - 371["SweepEdge Adjacent"] - 372["Plane
[1946, 1969, 0]"] - 384["Sweep Extrusion
[2685, 2711, 0]"] + 354[Wall] + 355[Wall] + 356[Wall] + 357[Wall] + 358[Wall] + 359[Wall] + 360[Wall] + 361[Wall] + 362[Wall] + 363[Wall] + 364[Wall] + 365[Wall] + 366[Wall] + 367[Wall] + 368[Wall] + 369[Wall] + 370[Wall] + 371[Wall] + 372[Wall] + 373[Wall] + 374[Wall] + 375[Wall] + 376[Wall] + 377[Wall] + 378[Wall] + 379[Wall] + 380[Wall] + 381[Wall] + 382[Wall] + 383[Wall] + 384[Wall] 385[Wall] 386[Wall] 387[Wall] @@ -628,26 +454,37 @@ flowchart LR 390[Wall] 391[Wall] 392[Wall] - 393["Cap Start"] - 394["Cap End"] - 395["SweepEdge Opposite"] - 396["SweepEdge Adjacent"] - 397["SweepEdge Opposite"] - 398["SweepEdge Adjacent"] - 399["SweepEdge Opposite"] - 400["SweepEdge Adjacent"] - 401["SweepEdge Opposite"] - 402["SweepEdge Adjacent"] - 403["SweepEdge Opposite"] - 404["SweepEdge Adjacent"] - 405["SweepEdge Opposite"] - 406["SweepEdge Adjacent"] - 407["SweepEdge Opposite"] - 408["SweepEdge Adjacent"] - 409["SweepEdge Opposite"] - 410["SweepEdge Adjacent"] - 411["Plane
[1946, 1969, 0]"] - 423["Sweep Extrusion
[2685, 2711, 0]"] + 393[Wall] + 394[Wall] + 395[Wall] + 396[Wall] + 397[Wall] + 398[Wall] + 399[Wall] + 400[Wall] + 401[Wall] + 402[Wall] + 403[Wall] + 404[Wall] + 405[Wall] + 406[Wall] + 407[Wall] + 408[Wall] + 409[Wall] + 410[Wall] + 411[Wall] + 412[Wall] + 413[Wall] + 414[Wall] + 415[Wall] + 416[Wall] + 417[Wall] + 418[Wall] + 419[Wall] + 420[Wall] + 421[Wall] + 422[Wall] + 423[Wall] 424[Wall] 425[Wall] 426[Wall] @@ -656,26 +493,37 @@ flowchart LR 429[Wall] 430[Wall] 431[Wall] - 432["Cap Start"] - 433["Cap End"] - 434["SweepEdge Opposite"] - 435["SweepEdge Adjacent"] - 436["SweepEdge Opposite"] - 437["SweepEdge Adjacent"] - 438["SweepEdge Opposite"] - 439["SweepEdge Adjacent"] - 440["SweepEdge Opposite"] - 441["SweepEdge Adjacent"] - 442["SweepEdge Opposite"] - 443["SweepEdge Adjacent"] - 444["SweepEdge Opposite"] - 445["SweepEdge Adjacent"] - 446["SweepEdge Opposite"] - 447["SweepEdge Adjacent"] - 448["SweepEdge Opposite"] - 449["SweepEdge Adjacent"] - 450["Plane
[1946, 1969, 0]"] - 462["Sweep Extrusion
[2685, 2711, 0]"] + 432[Wall] + 433[Wall] + 434[Wall] + 435[Wall] + 436[Wall] + 437[Wall] + 438[Wall] + 439[Wall] + 440[Wall] + 441[Wall] + 442[Wall] + 443[Wall] + 444[Wall] + 445[Wall] + 446[Wall] + 447[Wall] + 448[Wall] + 449[Wall] + 450[Wall] + 451[Wall] + 452[Wall] + 453[Wall] + 454[Wall] + 455[Wall] + 456[Wall] + 457[Wall] + 458[Wall] + 459[Wall] + 460[Wall] + 461[Wall] + 462[Wall] 463[Wall] 464[Wall] 465[Wall] @@ -684,26 +532,37 @@ flowchart LR 468[Wall] 469[Wall] 470[Wall] - 471["Cap Start"] - 472["Cap End"] - 473["SweepEdge Opposite"] - 474["SweepEdge Adjacent"] - 475["SweepEdge Opposite"] - 476["SweepEdge Adjacent"] - 477["SweepEdge Opposite"] - 478["SweepEdge Adjacent"] - 479["SweepEdge Opposite"] - 480["SweepEdge Adjacent"] - 481["SweepEdge Opposite"] - 482["SweepEdge Adjacent"] - 483["SweepEdge Opposite"] - 484["SweepEdge Adjacent"] - 485["SweepEdge Opposite"] - 486["SweepEdge Adjacent"] - 487["SweepEdge Opposite"] - 488["SweepEdge Adjacent"] - 489["Plane
[1946, 1969, 0]"] - 501["Sweep Extrusion
[2685, 2711, 0]"] + 471[Wall] + 472[Wall] + 473[Wall] + 474[Wall] + 475[Wall] + 476[Wall] + 477[Wall] + 478[Wall] + 479[Wall] + 480[Wall] + 481[Wall] + 482[Wall] + 483[Wall] + 484[Wall] + 485[Wall] + 486[Wall] + 487[Wall] + 488[Wall] + 489[Wall] + 490[Wall] + 491[Wall] + 492[Wall] + 493[Wall] + 494[Wall] + 495[Wall] + 496[Wall] + 497[Wall] + 498[Wall] + 499[Wall] + 500[Wall] + 501[Wall] 502[Wall] 503[Wall] 504[Wall] @@ -712,26 +571,37 @@ flowchart LR 507[Wall] 508[Wall] 509[Wall] - 510["Cap Start"] - 511["Cap End"] - 512["SweepEdge Opposite"] - 513["SweepEdge Adjacent"] - 514["SweepEdge Opposite"] - 515["SweepEdge Adjacent"] - 516["SweepEdge Opposite"] - 517["SweepEdge Adjacent"] - 518["SweepEdge Opposite"] - 519["SweepEdge Adjacent"] - 520["SweepEdge Opposite"] - 521["SweepEdge Adjacent"] - 522["SweepEdge Opposite"] - 523["SweepEdge Adjacent"] - 524["SweepEdge Opposite"] - 525["SweepEdge Adjacent"] - 526["SweepEdge Opposite"] - 527["SweepEdge Adjacent"] - 528["Plane
[1946, 1969, 0]"] - 540["Sweep Extrusion
[2685, 2711, 0]"] + 510[Wall] + 511[Wall] + 512[Wall] + 513[Wall] + 514[Wall] + 515[Wall] + 516[Wall] + 517[Wall] + 518[Wall] + 519[Wall] + 520[Wall] + 521[Wall] + 522[Wall] + 523[Wall] + 524[Wall] + 525[Wall] + 526[Wall] + 527[Wall] + 528[Wall] + 529[Wall] + 530[Wall] + 531[Wall] + 532[Wall] + 533[Wall] + 534[Wall] + 535[Wall] + 536[Wall] + 537[Wall] + 538[Wall] + 539[Wall] + 540[Wall] 541[Wall] 542[Wall] 543[Wall] @@ -740,3029 +610,3159 @@ flowchart LR 546[Wall] 547[Wall] 548[Wall] - 549["Cap Start"] - 550["Cap End"] - 551["SweepEdge Opposite"] - 552["SweepEdge Adjacent"] - 553["SweepEdge Opposite"] - 554["SweepEdge Adjacent"] - 555["SweepEdge Opposite"] - 556["SweepEdge Adjacent"] - 557["SweepEdge Opposite"] - 558["SweepEdge Adjacent"] - 559["SweepEdge Opposite"] - 560["SweepEdge Adjacent"] - 561["SweepEdge Opposite"] - 562["SweepEdge Adjacent"] - 563["SweepEdge Opposite"] - 564["SweepEdge Adjacent"] - 565["SweepEdge Opposite"] - 566["SweepEdge Adjacent"] - 567["Plane
[1946, 1969, 0]"] - 579["Sweep Extrusion
[2685, 2711, 0]"] - 580[Wall] - 581[Wall] - 582[Wall] - 583[Wall] - 584[Wall] - 585[Wall] - 586[Wall] - 587[Wall] - 588["Cap Start"] + 549[Wall] + 550[Wall] + 551[Wall] + 552[Wall] + 553[Wall] + 554[Wall] + 555[Wall] + 556[Wall] + 557[Wall] + 558[Wall] + 559[Wall] + 560["Cap Start"] + 561["Cap Start"] + 562["Cap Start"] + 563["Cap Start"] + 564["Cap Start"] + 565["Cap Start"] + 566["Cap Start"] + 567["Cap Start"] + 568["Cap Start"] + 569["Cap Start"] + 570["Cap Start"] + 571["Cap Start"] + 572["Cap Start"] + 573["Cap Start"] + 574["Cap Start"] + 575["Cap Start"] + 576["Cap Start"] + 577["Cap Start"] + 578["Cap Start"] + 579["Cap Start"] + 580["Cap Start"] + 581["Cap Start"] + 582["Cap Start"] + 583["Cap Start"] + 584["Cap Start"] + 585["Cap Start"] + 586["Cap Start"] + 587["Cap End"] + 588["Cap End"] 589["Cap End"] - 590["SweepEdge Opposite"] - 591["SweepEdge Adjacent"] - 592["SweepEdge Opposite"] - 593["SweepEdge Adjacent"] - 594["SweepEdge Opposite"] - 595["SweepEdge Adjacent"] - 596["SweepEdge Opposite"] - 597["SweepEdge Adjacent"] - 598["SweepEdge Opposite"] - 599["SweepEdge Adjacent"] - 600["SweepEdge Opposite"] - 601["SweepEdge Adjacent"] - 602["SweepEdge Opposite"] - 603["SweepEdge Adjacent"] - 604["SweepEdge Opposite"] - 605["SweepEdge Adjacent"] - 606["Plane
[1946, 1969, 0]"] - 618["Sweep Extrusion
[2685, 2711, 0]"] - 619[Wall] - 620[Wall] - 621[Wall] - 622[Wall] - 623[Wall] - 624[Wall] - 625[Wall] - 626[Wall] - 627["Cap Start"] - 628["Cap End"] + 590["Cap End"] + 591["Cap End"] + 592["Cap End"] + 593["Cap End"] + 594["Cap End"] + 595["Cap End"] + 596["Cap End"] + 597["Cap End"] + 598["Cap End"] + 599["Cap End"] + 600["Cap End"] + 601["Cap End"] + 602["Cap End"] + 603["Cap End"] + 604["Cap End"] + 605["Cap End"] + 606["Cap End"] + 607["Cap End"] + 608["Cap End"] + 609["Cap End"] + 610["Cap End"] + 611["Cap End"] + 612["Cap End"] + 613["Cap End"] + 614["Cap End"] + 615["Cap End"] + 616["Cap End"] + 617["Cap End"] + 618["SweepEdge Opposite"] + 619["SweepEdge Opposite"] + 620["SweepEdge Opposite"] + 621["SweepEdge Opposite"] + 622["SweepEdge Opposite"] + 623["SweepEdge Opposite"] + 624["SweepEdge Opposite"] + 625["SweepEdge Opposite"] + 626["SweepEdge Opposite"] + 627["SweepEdge Opposite"] + 628["SweepEdge Opposite"] 629["SweepEdge Opposite"] - 630["SweepEdge Adjacent"] + 630["SweepEdge Opposite"] 631["SweepEdge Opposite"] - 632["SweepEdge Adjacent"] + 632["SweepEdge Opposite"] 633["SweepEdge Opposite"] - 634["SweepEdge Adjacent"] + 634["SweepEdge Opposite"] 635["SweepEdge Opposite"] - 636["SweepEdge Adjacent"] + 636["SweepEdge Opposite"] 637["SweepEdge Opposite"] - 638["SweepEdge Adjacent"] + 638["SweepEdge Opposite"] 639["SweepEdge Opposite"] - 640["SweepEdge Adjacent"] + 640["SweepEdge Opposite"] 641["SweepEdge Opposite"] - 642["SweepEdge Adjacent"] + 642["SweepEdge Opposite"] 643["SweepEdge Opposite"] - 644["SweepEdge Adjacent"] - 645["Plane
[1946, 1969, 0]"] - 657["Sweep Extrusion
[2685, 2711, 0]"] - 658[Wall] - 659[Wall] - 660[Wall] - 661[Wall] - 662[Wall] - 663[Wall] - 664[Wall] - 665[Wall] - 666["Cap Start"] - 667["Cap End"] + 644["SweepEdge Opposite"] + 645["SweepEdge Opposite"] + 646["SweepEdge Opposite"] + 647["SweepEdge Opposite"] + 648["SweepEdge Opposite"] + 649["SweepEdge Opposite"] + 650["SweepEdge Opposite"] + 651["SweepEdge Opposite"] + 652["SweepEdge Opposite"] + 653["SweepEdge Opposite"] + 654["SweepEdge Opposite"] + 655["SweepEdge Opposite"] + 656["SweepEdge Opposite"] + 657["SweepEdge Opposite"] + 658["SweepEdge Opposite"] + 659["SweepEdge Opposite"] + 660["SweepEdge Opposite"] + 661["SweepEdge Opposite"] + 662["SweepEdge Opposite"] + 663["SweepEdge Opposite"] + 664["SweepEdge Opposite"] + 665["SweepEdge Opposite"] + 666["SweepEdge Opposite"] + 667["SweepEdge Opposite"] 668["SweepEdge Opposite"] - 669["SweepEdge Adjacent"] + 669["SweepEdge Opposite"] 670["SweepEdge Opposite"] - 671["SweepEdge Adjacent"] + 671["SweepEdge Opposite"] 672["SweepEdge Opposite"] - 673["SweepEdge Adjacent"] + 673["SweepEdge Opposite"] 674["SweepEdge Opposite"] - 675["SweepEdge Adjacent"] + 675["SweepEdge Opposite"] 676["SweepEdge Opposite"] - 677["SweepEdge Adjacent"] + 677["SweepEdge Opposite"] 678["SweepEdge Opposite"] - 679["SweepEdge Adjacent"] + 679["SweepEdge Opposite"] 680["SweepEdge Opposite"] - 681["SweepEdge Adjacent"] + 681["SweepEdge Opposite"] 682["SweepEdge Opposite"] - 683["SweepEdge Adjacent"] - 684["Plane
[1946, 1969, 0]"] - 696["Sweep Extrusion
[2685, 2711, 0]"] - 697[Wall] - 698[Wall] - 699[Wall] - 700[Wall] - 701[Wall] - 702[Wall] - 703[Wall] - 704[Wall] - 705["Cap Start"] - 706["Cap End"] + 683["SweepEdge Opposite"] + 684["SweepEdge Opposite"] + 685["SweepEdge Opposite"] + 686["SweepEdge Opposite"] + 687["SweepEdge Opposite"] + 688["SweepEdge Opposite"] + 689["SweepEdge Opposite"] + 690["SweepEdge Opposite"] + 691["SweepEdge Opposite"] + 692["SweepEdge Opposite"] + 693["SweepEdge Opposite"] + 694["SweepEdge Opposite"] + 695["SweepEdge Opposite"] + 696["SweepEdge Opposite"] + 697["SweepEdge Opposite"] + 698["SweepEdge Opposite"] + 699["SweepEdge Opposite"] + 700["SweepEdge Opposite"] + 701["SweepEdge Opposite"] + 702["SweepEdge Opposite"] + 703["SweepEdge Opposite"] + 704["SweepEdge Opposite"] + 705["SweepEdge Opposite"] + 706["SweepEdge Opposite"] 707["SweepEdge Opposite"] - 708["SweepEdge Adjacent"] + 708["SweepEdge Opposite"] 709["SweepEdge Opposite"] - 710["SweepEdge Adjacent"] + 710["SweepEdge Opposite"] 711["SweepEdge Opposite"] - 712["SweepEdge Adjacent"] + 712["SweepEdge Opposite"] 713["SweepEdge Opposite"] - 714["SweepEdge Adjacent"] + 714["SweepEdge Opposite"] 715["SweepEdge Opposite"] - 716["SweepEdge Adjacent"] + 716["SweepEdge Opposite"] 717["SweepEdge Opposite"] - 718["SweepEdge Adjacent"] + 718["SweepEdge Opposite"] 719["SweepEdge Opposite"] - 720["SweepEdge Adjacent"] + 720["SweepEdge Opposite"] 721["SweepEdge Opposite"] - 722["SweepEdge Adjacent"] - 723["Plane
[1946, 1969, 0]"] - 735["Sweep Extrusion
[2685, 2711, 0]"] - 736[Wall] - 737[Wall] - 738[Wall] - 739[Wall] - 740[Wall] - 741[Wall] - 742[Wall] - 743[Wall] - 744["Cap Start"] - 745["Cap End"] + 722["SweepEdge Opposite"] + 723["SweepEdge Opposite"] + 724["SweepEdge Opposite"] + 725["SweepEdge Opposite"] + 726["SweepEdge Opposite"] + 727["SweepEdge Opposite"] + 728["SweepEdge Opposite"] + 729["SweepEdge Opposite"] + 730["SweepEdge Opposite"] + 731["SweepEdge Opposite"] + 732["SweepEdge Opposite"] + 733["SweepEdge Opposite"] + 734["SweepEdge Opposite"] + 735["SweepEdge Opposite"] + 736["SweepEdge Opposite"] + 737["SweepEdge Opposite"] + 738["SweepEdge Opposite"] + 739["SweepEdge Opposite"] + 740["SweepEdge Opposite"] + 741["SweepEdge Opposite"] + 742["SweepEdge Opposite"] + 743["SweepEdge Opposite"] + 744["SweepEdge Opposite"] + 745["SweepEdge Opposite"] 746["SweepEdge Opposite"] - 747["SweepEdge Adjacent"] + 747["SweepEdge Opposite"] 748["SweepEdge Opposite"] - 749["SweepEdge Adjacent"] + 749["SweepEdge Opposite"] 750["SweepEdge Opposite"] - 751["SweepEdge Adjacent"] + 751["SweepEdge Opposite"] 752["SweepEdge Opposite"] - 753["SweepEdge Adjacent"] + 753["SweepEdge Opposite"] 754["SweepEdge Opposite"] - 755["SweepEdge Adjacent"] + 755["SweepEdge Opposite"] 756["SweepEdge Opposite"] - 757["SweepEdge Adjacent"] + 757["SweepEdge Opposite"] 758["SweepEdge Opposite"] - 759["SweepEdge Adjacent"] + 759["SweepEdge Opposite"] 760["SweepEdge Opposite"] - 761["SweepEdge Adjacent"] - 762["Plane
[1946, 1969, 0]"] - 774["Sweep Extrusion
[2685, 2711, 0]"] - 775[Wall] - 776[Wall] - 777[Wall] - 778[Wall] - 779[Wall] - 780[Wall] - 781[Wall] - 782[Wall] - 783["Cap Start"] - 784["Cap End"] + 761["SweepEdge Opposite"] + 762["SweepEdge Opposite"] + 763["SweepEdge Opposite"] + 764["SweepEdge Opposite"] + 765["SweepEdge Opposite"] + 766["SweepEdge Opposite"] + 767["SweepEdge Opposite"] + 768["SweepEdge Opposite"] + 769["SweepEdge Opposite"] + 770["SweepEdge Opposite"] + 771["SweepEdge Opposite"] + 772["SweepEdge Opposite"] + 773["SweepEdge Opposite"] + 774["SweepEdge Opposite"] + 775["SweepEdge Opposite"] + 776["SweepEdge Opposite"] + 777["SweepEdge Opposite"] + 778["SweepEdge Opposite"] + 779["SweepEdge Opposite"] + 780["SweepEdge Opposite"] + 781["SweepEdge Opposite"] + 782["SweepEdge Opposite"] + 783["SweepEdge Opposite"] + 784["SweepEdge Opposite"] 785["SweepEdge Opposite"] - 786["SweepEdge Adjacent"] + 786["SweepEdge Opposite"] 787["SweepEdge Opposite"] - 788["SweepEdge Adjacent"] + 788["SweepEdge Opposite"] 789["SweepEdge Opposite"] - 790["SweepEdge Adjacent"] + 790["SweepEdge Opposite"] 791["SweepEdge Opposite"] - 792["SweepEdge Adjacent"] + 792["SweepEdge Opposite"] 793["SweepEdge Opposite"] - 794["SweepEdge Adjacent"] + 794["SweepEdge Opposite"] 795["SweepEdge Opposite"] - 796["SweepEdge Adjacent"] + 796["SweepEdge Opposite"] 797["SweepEdge Opposite"] - 798["SweepEdge Adjacent"] + 798["SweepEdge Opposite"] 799["SweepEdge Opposite"] - 800["SweepEdge Adjacent"] - 801["Plane
[1946, 1969, 0]"] - 813["Sweep Extrusion
[2685, 2711, 0]"] - 814[Wall] - 815[Wall] - 816[Wall] - 817[Wall] - 818[Wall] - 819[Wall] - 820[Wall] - 821[Wall] - 822["Cap Start"] - 823["Cap End"] + 800["SweepEdge Opposite"] + 801["SweepEdge Opposite"] + 802["SweepEdge Opposite"] + 803["SweepEdge Opposite"] + 804["SweepEdge Opposite"] + 805["SweepEdge Opposite"] + 806["SweepEdge Opposite"] + 807["SweepEdge Opposite"] + 808["SweepEdge Opposite"] + 809["SweepEdge Opposite"] + 810["SweepEdge Opposite"] + 811["SweepEdge Opposite"] + 812["SweepEdge Opposite"] + 813["SweepEdge Opposite"] + 814["SweepEdge Opposite"] + 815["SweepEdge Opposite"] + 816["SweepEdge Opposite"] + 817["SweepEdge Opposite"] + 818["SweepEdge Opposite"] + 819["SweepEdge Opposite"] + 820["SweepEdge Opposite"] + 821["SweepEdge Opposite"] + 822["SweepEdge Opposite"] + 823["SweepEdge Opposite"] 824["SweepEdge Opposite"] - 825["SweepEdge Adjacent"] - 826["SweepEdge Opposite"] + 825["SweepEdge Opposite"] + 826["SweepEdge Adjacent"] 827["SweepEdge Adjacent"] - 828["SweepEdge Opposite"] + 828["SweepEdge Adjacent"] 829["SweepEdge Adjacent"] - 830["SweepEdge Opposite"] + 830["SweepEdge Adjacent"] 831["SweepEdge Adjacent"] - 832["SweepEdge Opposite"] + 832["SweepEdge Adjacent"] 833["SweepEdge Adjacent"] - 834["SweepEdge Opposite"] + 834["SweepEdge Adjacent"] 835["SweepEdge Adjacent"] - 836["SweepEdge Opposite"] + 836["SweepEdge Adjacent"] 837["SweepEdge Adjacent"] - 838["SweepEdge Opposite"] + 838["SweepEdge Adjacent"] 839["SweepEdge Adjacent"] - 840["Plane
[1946, 1969, 0]"] - 852["Sweep Extrusion
[2685, 2711, 0]"] - 853[Wall] - 854[Wall] - 855[Wall] - 856[Wall] - 857[Wall] - 858[Wall] - 859[Wall] - 860[Wall] - 861["Cap Start"] - 862["Cap End"] - 863["SweepEdge Opposite"] + 840["SweepEdge Adjacent"] + 841["SweepEdge Adjacent"] + 842["SweepEdge Adjacent"] + 843["SweepEdge Adjacent"] + 844["SweepEdge Adjacent"] + 845["SweepEdge Adjacent"] + 846["SweepEdge Adjacent"] + 847["SweepEdge Adjacent"] + 848["SweepEdge Adjacent"] + 849["SweepEdge Adjacent"] + 850["SweepEdge Adjacent"] + 851["SweepEdge Adjacent"] + 852["SweepEdge Adjacent"] + 853["SweepEdge Adjacent"] + 854["SweepEdge Adjacent"] + 855["SweepEdge Adjacent"] + 856["SweepEdge Adjacent"] + 857["SweepEdge Adjacent"] + 858["SweepEdge Adjacent"] + 859["SweepEdge Adjacent"] + 860["SweepEdge Adjacent"] + 861["SweepEdge Adjacent"] + 862["SweepEdge Adjacent"] + 863["SweepEdge Adjacent"] 864["SweepEdge Adjacent"] - 865["SweepEdge Opposite"] + 865["SweepEdge Adjacent"] 866["SweepEdge Adjacent"] - 867["SweepEdge Opposite"] + 867["SweepEdge Adjacent"] 868["SweepEdge Adjacent"] - 869["SweepEdge Opposite"] + 869["SweepEdge Adjacent"] 870["SweepEdge Adjacent"] - 871["SweepEdge Opposite"] + 871["SweepEdge Adjacent"] 872["SweepEdge Adjacent"] - 873["SweepEdge Opposite"] + 873["SweepEdge Adjacent"] 874["SweepEdge Adjacent"] - 875["SweepEdge Opposite"] + 875["SweepEdge Adjacent"] 876["SweepEdge Adjacent"] - 877["SweepEdge Opposite"] + 877["SweepEdge Adjacent"] 878["SweepEdge Adjacent"] - 879["Plane
[4870, 4893, 0]"] - 898["Sweep Extrusion
[5744, 5768, 0]"] - 899[Wall] - 900[Wall] - 901[Wall] - 902[Wall] - 903[Wall] - 904[Wall] - 905[Wall] - 906[Wall] - 907[Wall] - 908[Wall] - 909[Wall] - 910[Wall] - 911[Wall] - 912[Wall] - 913[Wall] - 914[Wall] - 915["Cap Start"] - 916["Cap End"] - 917["SweepEdge Opposite"] + 879["SweepEdge Adjacent"] + 880["SweepEdge Adjacent"] + 881["SweepEdge Adjacent"] + 882["SweepEdge Adjacent"] + 883["SweepEdge Adjacent"] + 884["SweepEdge Adjacent"] + 885["SweepEdge Adjacent"] + 886["SweepEdge Adjacent"] + 887["SweepEdge Adjacent"] + 888["SweepEdge Adjacent"] + 889["SweepEdge Adjacent"] + 890["SweepEdge Adjacent"] + 891["SweepEdge Adjacent"] + 892["SweepEdge Adjacent"] + 893["SweepEdge Adjacent"] + 894["SweepEdge Adjacent"] + 895["SweepEdge Adjacent"] + 896["SweepEdge Adjacent"] + 897["SweepEdge Adjacent"] + 898["SweepEdge Adjacent"] + 899["SweepEdge Adjacent"] + 900["SweepEdge Adjacent"] + 901["SweepEdge Adjacent"] + 902["SweepEdge Adjacent"] + 903["SweepEdge Adjacent"] + 904["SweepEdge Adjacent"] + 905["SweepEdge Adjacent"] + 906["SweepEdge Adjacent"] + 907["SweepEdge Adjacent"] + 908["SweepEdge Adjacent"] + 909["SweepEdge Adjacent"] + 910["SweepEdge Adjacent"] + 911["SweepEdge Adjacent"] + 912["SweepEdge Adjacent"] + 913["SweepEdge Adjacent"] + 914["SweepEdge Adjacent"] + 915["SweepEdge Adjacent"] + 916["SweepEdge Adjacent"] + 917["SweepEdge Adjacent"] 918["SweepEdge Adjacent"] - 919["SweepEdge Opposite"] + 919["SweepEdge Adjacent"] 920["SweepEdge Adjacent"] - 921["SweepEdge Opposite"] + 921["SweepEdge Adjacent"] 922["SweepEdge Adjacent"] - 923["SweepEdge Opposite"] + 923["SweepEdge Adjacent"] 924["SweepEdge Adjacent"] - 925["SweepEdge Opposite"] + 925["SweepEdge Adjacent"] 926["SweepEdge Adjacent"] - 927["SweepEdge Opposite"] + 927["SweepEdge Adjacent"] 928["SweepEdge Adjacent"] - 929["SweepEdge Opposite"] + 929["SweepEdge Adjacent"] 930["SweepEdge Adjacent"] - 931["SweepEdge Opposite"] + 931["SweepEdge Adjacent"] 932["SweepEdge Adjacent"] - 933["SweepEdge Opposite"] + 933["SweepEdge Adjacent"] 934["SweepEdge Adjacent"] - 935["SweepEdge Opposite"] + 935["SweepEdge Adjacent"] 936["SweepEdge Adjacent"] - 937["SweepEdge Opposite"] + 937["SweepEdge Adjacent"] 938["SweepEdge Adjacent"] - 939["SweepEdge Opposite"] + 939["SweepEdge Adjacent"] 940["SweepEdge Adjacent"] - 941["SweepEdge Opposite"] + 941["SweepEdge Adjacent"] 942["SweepEdge Adjacent"] - 943["SweepEdge Opposite"] + 943["SweepEdge Adjacent"] 944["SweepEdge Adjacent"] - 945["SweepEdge Opposite"] + 945["SweepEdge Adjacent"] 946["SweepEdge Adjacent"] - 947["SweepEdge Opposite"] + 947["SweepEdge Adjacent"] 948["SweepEdge Adjacent"] - 949["Plane
[5905, 5928, 0]"] - 956["Sweep Extrusion
[6286, 6310, 0]"] - 957[Wall] - 958[Wall] - 959[Wall] - 960[Wall] - 961["Cap Start"] - 962["Cap End"] - 963["SweepEdge Opposite"] + 949["SweepEdge Adjacent"] + 950["SweepEdge Adjacent"] + 951["SweepEdge Adjacent"] + 952["SweepEdge Adjacent"] + 953["SweepEdge Adjacent"] + 954["SweepEdge Adjacent"] + 955["SweepEdge Adjacent"] + 956["SweepEdge Adjacent"] + 957["SweepEdge Adjacent"] + 958["SweepEdge Adjacent"] + 959["SweepEdge Adjacent"] + 960["SweepEdge Adjacent"] + 961["SweepEdge Adjacent"] + 962["SweepEdge Adjacent"] + 963["SweepEdge Adjacent"] 964["SweepEdge Adjacent"] - 965["SweepEdge Opposite"] + 965["SweepEdge Adjacent"] 966["SweepEdge Adjacent"] - 967["SweepEdge Opposite"] + 967["SweepEdge Adjacent"] 968["SweepEdge Adjacent"] - 969["SweepEdge Opposite"] + 969["SweepEdge Adjacent"] 970["SweepEdge Adjacent"] - 971["Plane
[6355, 6378, 0]"] - 978["Sweep Extrusion
[6736, 6760, 0]"] - 979[Wall] - 980[Wall] - 981[Wall] - 982[Wall] - 983["Cap Start"] - 984["Cap End"] - 985["SweepEdge Opposite"] + 971["SweepEdge Adjacent"] + 972["SweepEdge Adjacent"] + 973["SweepEdge Adjacent"] + 974["SweepEdge Adjacent"] + 975["SweepEdge Adjacent"] + 976["SweepEdge Adjacent"] + 977["SweepEdge Adjacent"] + 978["SweepEdge Adjacent"] + 979["SweepEdge Adjacent"] + 980["SweepEdge Adjacent"] + 981["SweepEdge Adjacent"] + 982["SweepEdge Adjacent"] + 983["SweepEdge Adjacent"] + 984["SweepEdge Adjacent"] + 985["SweepEdge Adjacent"] 986["SweepEdge Adjacent"] - 987["SweepEdge Opposite"] + 987["SweepEdge Adjacent"] 988["SweepEdge Adjacent"] - 989["SweepEdge Opposite"] + 989["SweepEdge Adjacent"] 990["SweepEdge Adjacent"] - 991["SweepEdge Opposite"] + 991["SweepEdge Adjacent"] 992["SweepEdge Adjacent"] - 993["Plane
[5905, 5928, 0]"] - 1000["Sweep Extrusion
[6286, 6310, 0]"] - 1001[Wall] - 1002[Wall] - 1003[Wall] - 1004[Wall] - 1005["Cap Start"] - 1006["Cap End"] - 1007["SweepEdge Opposite"] + 993["SweepEdge Adjacent"] + 994["SweepEdge Adjacent"] + 995["SweepEdge Adjacent"] + 996["SweepEdge Adjacent"] + 997["SweepEdge Adjacent"] + 998["SweepEdge Adjacent"] + 999["SweepEdge Adjacent"] + 1000["SweepEdge Adjacent"] + 1001["SweepEdge Adjacent"] + 1002["SweepEdge Adjacent"] + 1003["SweepEdge Adjacent"] + 1004["SweepEdge Adjacent"] + 1005["SweepEdge Adjacent"] + 1006["SweepEdge Adjacent"] + 1007["SweepEdge Adjacent"] 1008["SweepEdge Adjacent"] - 1009["SweepEdge Opposite"] + 1009["SweepEdge Adjacent"] 1010["SweepEdge Adjacent"] - 1011["SweepEdge Opposite"] + 1011["SweepEdge Adjacent"] 1012["SweepEdge Adjacent"] - 1013["SweepEdge Opposite"] + 1013["SweepEdge Adjacent"] 1014["SweepEdge Adjacent"] - 1015["Plane
[6355, 6378, 0]"] - 1022["Sweep Extrusion
[6736, 6760, 0]"] - 1023[Wall] - 1024[Wall] - 1025[Wall] - 1026[Wall] - 1027["Cap Start"] - 1028["Cap End"] - 1029["SweepEdge Opposite"] + 1015["SweepEdge Adjacent"] + 1016["SweepEdge Adjacent"] + 1017["SweepEdge Adjacent"] + 1018["SweepEdge Adjacent"] + 1019["SweepEdge Adjacent"] + 1020["SweepEdge Adjacent"] + 1021["SweepEdge Adjacent"] + 1022["SweepEdge Adjacent"] + 1023["SweepEdge Adjacent"] + 1024["SweepEdge Adjacent"] + 1025["SweepEdge Adjacent"] + 1026["SweepEdge Adjacent"] + 1027["SweepEdge Adjacent"] + 1028["SweepEdge Adjacent"] + 1029["SweepEdge Adjacent"] 1030["SweepEdge Adjacent"] - 1031["SweepEdge Opposite"] + 1031["SweepEdge Adjacent"] 1032["SweepEdge Adjacent"] - 1033["SweepEdge Opposite"] - 1034["SweepEdge Adjacent"] - 1035["SweepEdge Opposite"] - 1036["SweepEdge Adjacent"] - 1037["StartSketchOnFace
[1151, 1189, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 ---- 9 - 2 --- 8 - 3 --- 13 - 3 --- 22 - 3 --- 23 - 3 --- 26 - 3 x--> 14 - 4 --- 12 - 4 --- 20 - 4 --- 21 - 4 x--> 14 - 5 --- 11 - 5 --- 18 - 5 --- 19 - 5 --- 27 - 5 x--> 14 - 6 --- 10 - 6 --- 16 - 6 --- 17 - 6 x--> 14 - 9 --- 10 - 9 --- 11 - 9 --- 12 - 9 --- 13 - 9 --- 14 - 9 --- 15 - 9 --- 16 - 9 --- 17 - 9 --- 18 - 9 --- 19 - 9 --- 20 - 9 --- 21 - 9 --- 22 - 9 --- 23 - 10 --- 28 - 10 --- 31 - 10 --- 34 - 10 --- 37 - 16 <--x 10 - 16 <--x 15 - 17 <--x 10 - 17 <--x 13 - 19 <--x 10 - 19 <--x 11 - 20 <--x 12 - 20 <--x 15 - 21 <--x 11 - 21 <--x 12 - 23 <--x 12 - 23 <--x 13 - 22 <--x 24 - 18 <--x 25 - 28 --- 29 - 28 ---- 40 - 28 --- 30 - 29 --- 41 - 29 --- 43 - 29 --- 44 - 29 <--x 10 - 31 --- 32 - 31 ---- 45 - 31 --- 33 - 32 --- 46 - 32 --- 48 - 32 --- 49 - 32 <--x 10 - 34 --- 35 - 34 ---- 50 - 34 --- 36 - 35 --- 51 - 35 --- 53 - 35 --- 54 - 35 <--x 10 - 37 --- 38 - 37 ---- 55 - 37 --- 39 - 38 --- 56 - 38 --- 58 - 38 --- 59 - 38 <--x 10 - 40 --- 41 - 40 --- 42 - 40 --- 43 - 40 --- 44 - 43 <--x 41 - 43 <--x 42 - 44 <--x 41 - 45 --- 46 - 45 --- 47 - 45 --- 48 - 45 --- 49 - 48 <--x 46 - 48 <--x 47 - 49 <--x 46 - 50 --- 51 - 50 --- 52 - 50 --- 53 - 50 --- 54 - 53 <--x 51 - 53 <--x 52 - 54 <--x 51 - 55 --- 56 - 55 --- 57 - 55 --- 58 - 55 --- 59 - 58 <--x 56 - 58 <--x 57 - 59 <--x 56 - 60 --- 61 - 61 --- 62 - 61 --- 63 - 61 --- 64 - 61 --- 65 - 61 --- 66 - 61 --- 67 - 61 --- 68 - 61 --- 69 - 61 --- 70 - 61 ---- 72 - 61 --- 71 - 62 --- 73 - 62 --- 83 - 62 --- 84 - 62 x--> 81 - 63 --- 74 - 63 --- 85 - 63 --- 86 - 63 x--> 81 - 64 --- 75 - 64 --- 87 - 64 --- 88 - 64 x--> 81 - 65 --- 76 - 65 --- 89 - 65 --- 90 - 65 x--> 81 - 66 --- 77 - 66 --- 91 - 66 --- 92 - 66 x--> 81 - 67 --- 78 - 67 --- 93 - 67 --- 94 - 67 x--> 81 - 68 --- 79 - 68 --- 95 - 68 --- 96 - 68 x--> 81 - 69 --- 80 - 69 --- 97 - 69 --- 98 - 69 x--> 81 - 72 --- 73 - 72 --- 74 - 72 --- 75 - 72 --- 76 - 72 --- 77 - 72 --- 78 - 72 --- 79 - 72 --- 80 - 72 --- 81 - 72 --- 82 - 72 --- 83 - 72 --- 84 - 72 --- 85 - 72 --- 86 - 72 --- 87 - 72 --- 88 - 72 --- 89 - 72 --- 90 - 72 --- 91 - 72 --- 92 - 72 --- 93 - 72 --- 94 - 72 --- 95 - 72 --- 96 - 72 --- 97 - 72 --- 98 - 83 <--x 73 - 83 <--x 82 - 84 <--x 73 - 84 <--x 74 - 85 <--x 74 - 85 <--x 82 - 86 <--x 74 - 86 <--x 75 - 87 <--x 75 - 87 <--x 82 - 88 <--x 75 - 88 <--x 76 - 89 <--x 76 - 89 <--x 82 - 90 <--x 76 - 90 <--x 77 - 91 <--x 77 - 91 <--x 82 - 92 <--x 77 - 92 <--x 78 - 93 <--x 78 - 93 <--x 82 - 94 <--x 78 - 94 <--x 79 - 95 <--x 79 - 95 <--x 82 - 96 <--x 79 - 96 <--x 80 - 97 <--x 80 - 97 <--x 82 - 98 <--x 73 - 98 <--x 80 - 99 --- 100 - 100 --- 101 - 100 --- 102 - 100 --- 103 - 100 --- 104 - 100 --- 105 - 100 --- 106 - 100 --- 107 - 100 --- 108 - 100 --- 109 - 100 ---- 111 - 100 --- 110 - 101 --- 112 - 101 --- 122 - 101 --- 123 - 101 x--> 120 - 102 --- 113 - 102 --- 124 - 102 --- 125 - 102 x--> 120 - 103 --- 114 - 103 --- 126 - 103 --- 127 - 103 x--> 120 - 104 --- 115 - 104 --- 128 - 104 --- 129 - 104 x--> 120 - 105 --- 116 - 105 --- 130 - 105 --- 131 - 105 x--> 120 - 106 --- 117 - 106 --- 132 - 106 --- 133 - 106 x--> 120 - 107 --- 118 - 107 --- 134 - 107 --- 135 - 107 x--> 120 - 108 --- 119 - 108 --- 136 - 108 --- 137 - 108 x--> 120 - 111 --- 112 - 111 --- 113 - 111 --- 114 - 111 --- 115 - 111 --- 116 - 111 --- 117 - 111 --- 118 - 111 --- 119 - 111 --- 120 - 111 --- 121 - 111 --- 122 - 111 --- 123 - 111 --- 124 - 111 --- 125 - 111 --- 126 - 111 --- 127 - 111 --- 128 - 111 --- 129 - 111 --- 130 - 111 --- 131 - 111 --- 132 - 111 --- 133 - 111 --- 134 - 111 --- 135 - 111 --- 136 - 111 --- 137 - 122 <--x 112 - 122 <--x 121 - 123 <--x 112 - 123 <--x 113 - 124 <--x 113 - 124 <--x 121 - 125 <--x 113 - 125 <--x 114 - 126 <--x 114 - 126 <--x 121 - 127 <--x 114 - 127 <--x 115 - 128 <--x 115 - 128 <--x 121 - 129 <--x 115 - 129 <--x 116 - 130 <--x 116 - 130 <--x 121 - 131 <--x 116 - 131 <--x 117 - 132 <--x 117 - 132 <--x 121 - 133 <--x 117 - 133 <--x 118 - 134 <--x 118 - 134 <--x 121 - 135 <--x 118 - 135 <--x 119 - 136 <--x 119 - 136 <--x 121 - 137 <--x 112 - 137 <--x 119 - 138 --- 139 - 139 --- 140 - 139 --- 141 - 139 --- 142 - 139 --- 143 - 139 --- 144 - 139 --- 145 - 139 --- 146 - 139 --- 147 - 139 --- 148 - 139 ---- 150 - 139 --- 149 - 140 --- 151 - 140 --- 161 - 140 --- 162 - 140 x--> 159 - 141 --- 152 - 141 --- 163 - 141 --- 164 - 141 x--> 159 - 142 --- 153 - 142 --- 165 - 142 --- 166 - 142 x--> 159 - 143 --- 154 - 143 --- 167 - 143 --- 168 - 143 x--> 159 - 144 --- 155 - 144 --- 169 - 144 --- 170 - 144 x--> 159 - 145 --- 156 - 145 --- 171 - 145 --- 172 - 145 x--> 159 - 146 --- 157 - 146 --- 173 - 146 --- 174 - 146 x--> 159 - 147 --- 158 - 147 --- 175 - 147 --- 176 - 147 x--> 159 - 150 --- 151 - 150 --- 152 - 150 --- 153 - 150 --- 154 - 150 --- 155 - 150 --- 156 - 150 --- 157 - 150 --- 158 - 150 --- 159 - 150 --- 160 - 150 --- 161 - 150 --- 162 - 150 --- 163 - 150 --- 164 - 150 --- 165 - 150 --- 166 - 150 --- 167 - 150 --- 168 - 150 --- 169 - 150 --- 170 - 150 --- 171 - 150 --- 172 - 150 --- 173 - 150 --- 174 - 150 --- 175 - 150 --- 176 - 161 <--x 151 - 161 <--x 160 - 162 <--x 151 - 162 <--x 152 - 163 <--x 152 - 163 <--x 160 - 164 <--x 152 - 164 <--x 153 - 165 <--x 153 - 165 <--x 160 - 166 <--x 153 - 166 <--x 154 - 167 <--x 154 - 167 <--x 160 - 168 <--x 154 - 168 <--x 155 - 169 <--x 155 - 169 <--x 160 - 170 <--x 155 - 170 <--x 156 - 171 <--x 156 - 171 <--x 160 - 172 <--x 156 - 172 <--x 157 - 173 <--x 157 - 173 <--x 160 - 174 <--x 157 - 174 <--x 158 - 175 <--x 158 - 175 <--x 160 - 176 <--x 151 - 176 <--x 158 - 177 --- 178 - 178 --- 179 - 178 --- 180 - 178 --- 181 - 178 --- 182 - 178 --- 183 - 178 --- 184 - 178 --- 185 - 178 --- 186 - 178 --- 187 - 178 ---- 189 - 178 --- 188 - 179 --- 190 - 179 --- 200 - 179 --- 201 - 179 x--> 198 - 180 --- 191 - 180 --- 202 - 180 --- 203 - 180 x--> 198 - 181 --- 192 - 181 --- 204 - 181 --- 205 - 181 x--> 198 - 182 --- 193 - 182 --- 206 - 182 --- 207 - 182 x--> 198 - 183 --- 194 - 183 --- 208 - 183 --- 209 - 183 x--> 198 - 184 --- 195 - 184 --- 210 - 184 --- 211 - 184 x--> 198 - 185 --- 196 - 185 --- 212 - 185 --- 213 - 185 x--> 198 - 186 --- 197 - 186 --- 214 - 186 --- 215 - 186 x--> 198 - 189 --- 190 - 189 --- 191 - 189 --- 192 - 189 --- 193 - 189 --- 194 - 189 --- 195 - 189 --- 196 - 189 --- 197 - 189 --- 198 - 189 --- 199 - 189 --- 200 - 189 --- 201 - 189 --- 202 - 189 --- 203 - 189 --- 204 - 189 --- 205 - 189 --- 206 - 189 --- 207 - 189 --- 208 - 189 --- 209 - 189 --- 210 - 189 --- 211 - 189 --- 212 - 189 --- 213 - 189 --- 214 - 189 --- 215 - 200 <--x 190 - 200 <--x 199 - 201 <--x 190 - 201 <--x 191 - 202 <--x 191 - 202 <--x 199 - 203 <--x 191 - 203 <--x 192 - 204 <--x 192 - 204 <--x 199 - 205 <--x 192 - 205 <--x 193 - 206 <--x 193 - 206 <--x 199 - 207 <--x 193 - 207 <--x 194 - 208 <--x 194 - 208 <--x 199 - 209 <--x 194 - 209 <--x 195 - 210 <--x 195 - 210 <--x 199 - 211 <--x 195 - 211 <--x 196 - 212 <--x 196 - 212 <--x 199 - 213 <--x 196 - 213 <--x 197 - 214 <--x 197 - 214 <--x 199 - 215 <--x 190 - 215 <--x 197 - 216 --- 217 - 217 --- 218 - 217 --- 219 - 217 --- 220 - 217 --- 221 - 217 --- 222 - 217 --- 223 - 217 --- 224 - 217 --- 225 - 217 --- 226 - 217 ---- 228 - 217 --- 227 - 218 --- 229 - 218 --- 239 - 218 --- 240 - 218 x--> 237 - 219 --- 230 - 219 --- 241 - 219 --- 242 - 219 x--> 237 - 220 --- 231 - 220 --- 243 - 220 --- 244 - 220 x--> 237 - 221 --- 232 - 221 --- 245 - 221 --- 246 - 221 x--> 237 - 222 --- 233 - 222 --- 247 - 222 --- 248 - 222 x--> 237 - 223 --- 234 - 223 --- 249 - 223 --- 250 - 223 x--> 237 - 224 --- 235 - 224 --- 251 - 224 --- 252 - 224 x--> 237 - 225 --- 236 - 225 --- 253 - 225 --- 254 - 225 x--> 237 - 228 --- 229 - 228 --- 230 - 228 --- 231 - 228 --- 232 - 228 --- 233 - 228 --- 234 - 228 --- 235 - 228 --- 236 - 228 --- 237 - 228 --- 238 - 228 --- 239 - 228 --- 240 - 228 --- 241 - 228 --- 242 - 228 --- 243 - 228 --- 244 - 228 --- 245 - 228 --- 246 - 228 --- 247 - 228 --- 248 - 228 --- 249 - 228 --- 250 - 228 --- 251 - 228 --- 252 - 228 --- 253 - 228 --- 254 - 239 <--x 229 - 239 <--x 238 - 240 <--x 229 - 240 <--x 230 - 241 <--x 230 - 241 <--x 238 - 242 <--x 230 - 242 <--x 231 - 243 <--x 231 - 243 <--x 238 - 244 <--x 231 - 244 <--x 232 - 245 <--x 232 - 245 <--x 238 - 246 <--x 232 - 246 <--x 233 - 247 <--x 233 - 247 <--x 238 - 248 <--x 233 - 248 <--x 234 - 249 <--x 234 - 249 <--x 238 - 250 <--x 234 - 250 <--x 235 - 251 <--x 235 - 251 <--x 238 - 252 <--x 235 - 252 <--x 236 - 253 <--x 236 - 253 <--x 238 - 254 <--x 229 - 254 <--x 236 - 255 --- 256 - 256 --- 257 - 256 --- 258 - 256 --- 259 - 256 --- 260 - 256 --- 261 - 256 --- 262 - 256 --- 263 - 256 --- 264 - 256 --- 265 - 256 ---- 267 - 256 --- 266 - 257 --- 268 - 257 --- 278 - 257 --- 279 - 257 x--> 276 - 258 --- 269 - 258 --- 280 - 258 --- 281 - 258 x--> 276 - 259 --- 270 - 259 --- 282 - 259 --- 283 - 259 x--> 276 - 260 --- 271 - 260 --- 284 - 260 --- 285 - 260 x--> 276 - 261 --- 272 - 261 --- 286 - 261 --- 287 - 261 x--> 276 - 262 --- 273 - 262 --- 288 - 262 --- 289 - 262 x--> 276 - 263 --- 274 - 263 --- 290 - 263 --- 291 - 263 x--> 276 - 264 --- 275 - 264 --- 292 - 264 --- 293 - 264 x--> 276 - 267 --- 268 - 267 --- 269 - 267 --- 270 - 267 --- 271 - 267 --- 272 - 267 --- 273 - 267 --- 274 - 267 --- 275 - 267 --- 276 - 267 --- 277 - 267 --- 278 - 267 --- 279 - 267 --- 280 - 267 --- 281 - 267 --- 282 - 267 --- 283 - 267 --- 284 - 267 --- 285 - 267 --- 286 - 267 --- 287 - 267 --- 288 - 267 --- 289 - 267 --- 290 - 267 --- 291 - 267 --- 292 - 267 --- 293 - 278 <--x 268 - 278 <--x 277 - 279 <--x 268 - 279 <--x 269 - 280 <--x 269 - 280 <--x 277 - 281 <--x 269 - 281 <--x 270 - 282 <--x 270 - 282 <--x 277 - 283 <--x 270 - 283 <--x 271 - 284 <--x 271 - 284 <--x 277 - 285 <--x 271 - 285 <--x 272 - 286 <--x 272 - 286 <--x 277 - 287 <--x 272 - 287 <--x 273 - 288 <--x 273 - 288 <--x 277 - 289 <--x 273 - 289 <--x 274 - 290 <--x 274 - 290 <--x 277 - 291 <--x 274 - 291 <--x 275 - 292 <--x 275 - 292 <--x 277 - 293 <--x 268 - 293 <--x 275 - 294 --- 295 - 295 --- 296 - 295 --- 297 - 295 --- 298 - 295 --- 299 - 295 --- 300 - 295 --- 301 - 295 --- 302 - 295 --- 303 - 295 --- 304 - 295 ---- 306 - 295 --- 305 - 296 --- 307 - 296 --- 317 - 296 --- 318 - 296 x--> 315 - 297 --- 308 - 297 --- 319 - 297 --- 320 - 297 x--> 315 - 298 --- 309 - 298 --- 321 - 298 --- 322 - 298 x--> 315 - 299 --- 310 - 299 --- 323 - 299 --- 324 - 299 x--> 315 - 300 --- 311 - 300 --- 325 - 300 --- 326 - 300 x--> 315 - 301 --- 312 - 301 --- 327 - 301 --- 328 - 301 x--> 315 - 302 --- 313 - 302 --- 329 - 302 --- 330 - 302 x--> 315 - 303 --- 314 - 303 --- 331 - 303 --- 332 - 303 x--> 315 - 306 --- 307 - 306 --- 308 - 306 --- 309 - 306 --- 310 - 306 --- 311 - 306 --- 312 - 306 --- 313 - 306 --- 314 - 306 --- 315 - 306 --- 316 - 306 --- 317 - 306 --- 318 - 306 --- 319 - 306 --- 320 - 306 --- 321 - 306 --- 322 - 306 --- 323 - 306 --- 324 - 306 --- 325 - 306 --- 326 - 306 --- 327 - 306 --- 328 - 306 --- 329 - 306 --- 330 - 306 --- 331 - 306 --- 332 - 317 <--x 307 - 317 <--x 316 - 318 <--x 307 - 318 <--x 308 - 319 <--x 308 - 319 <--x 316 - 320 <--x 308 - 320 <--x 309 - 321 <--x 309 - 321 <--x 316 - 322 <--x 309 - 322 <--x 310 - 323 <--x 310 - 323 <--x 316 - 324 <--x 310 - 324 <--x 311 - 325 <--x 311 - 325 <--x 316 - 326 <--x 311 - 326 <--x 312 - 327 <--x 312 - 327 <--x 316 - 328 <--x 312 - 328 <--x 313 - 329 <--x 313 - 329 <--x 316 - 330 <--x 313 - 330 <--x 314 - 331 <--x 314 - 331 <--x 316 - 332 <--x 307 - 332 <--x 314 - 333 --- 334 - 334 --- 335 - 334 --- 336 - 334 --- 337 - 334 --- 338 - 334 --- 339 - 334 --- 340 - 334 --- 341 - 334 --- 342 - 334 --- 343 - 334 ---- 345 - 334 --- 344 - 335 --- 346 - 335 --- 356 - 335 --- 357 - 335 x--> 354 - 336 --- 347 - 336 --- 358 - 336 --- 359 - 336 x--> 354 - 337 --- 348 - 337 --- 360 - 337 --- 361 - 337 x--> 354 - 338 --- 349 - 338 --- 362 - 338 --- 363 - 338 x--> 354 - 339 --- 350 - 339 --- 364 - 339 --- 365 - 339 x--> 354 - 340 --- 351 - 340 --- 366 - 340 --- 367 - 340 x--> 354 - 341 --- 352 - 341 --- 368 - 341 --- 369 - 341 x--> 354 - 342 --- 353 - 342 --- 370 - 342 --- 371 - 342 x--> 354 - 345 --- 346 - 345 --- 347 - 345 --- 348 - 345 --- 349 - 345 --- 350 - 345 --- 351 - 345 --- 352 - 345 --- 353 - 345 --- 354 - 345 --- 355 - 345 --- 356 - 345 --- 357 - 345 --- 358 - 345 --- 359 - 345 --- 360 - 345 --- 361 - 345 --- 362 - 345 --- 363 - 345 --- 364 - 345 --- 365 - 345 --- 366 - 345 --- 367 - 345 --- 368 - 345 --- 369 - 345 --- 370 - 345 --- 371 - 356 <--x 346 - 356 <--x 355 - 357 <--x 346 - 357 <--x 347 - 358 <--x 347 - 358 <--x 355 - 359 <--x 347 - 359 <--x 348 - 360 <--x 348 - 360 <--x 355 - 361 <--x 348 - 361 <--x 349 - 362 <--x 349 - 362 <--x 355 - 363 <--x 349 - 363 <--x 350 - 364 <--x 350 - 364 <--x 355 - 365 <--x 350 - 365 <--x 351 - 366 <--x 351 - 366 <--x 355 - 367 <--x 351 - 367 <--x 352 - 368 <--x 352 - 368 <--x 355 - 369 <--x 352 - 369 <--x 353 - 370 <--x 353 - 370 <--x 355 - 371 <--x 346 - 371 <--x 353 - 372 --- 373 - 373 --- 374 - 373 --- 375 - 373 --- 376 - 373 --- 377 - 373 --- 378 - 373 --- 379 - 373 --- 380 - 373 --- 381 - 373 --- 382 - 373 ---- 384 - 373 --- 383 - 374 --- 385 - 374 --- 395 - 374 --- 396 - 374 x--> 393 - 375 --- 386 - 375 --- 397 - 375 --- 398 - 375 x--> 393 - 376 --- 387 - 376 --- 399 - 376 --- 400 - 376 x--> 393 - 377 --- 388 - 377 --- 401 - 377 --- 402 - 377 x--> 393 - 378 --- 389 - 378 --- 403 - 378 --- 404 - 378 x--> 393 - 379 --- 390 - 379 --- 405 - 379 --- 406 - 379 x--> 393 - 380 --- 391 - 380 --- 407 - 380 --- 408 - 380 x--> 393 - 381 --- 392 - 381 --- 409 - 381 --- 410 - 381 x--> 393 - 384 --- 385 - 384 --- 386 - 384 --- 387 - 384 --- 388 - 384 --- 389 - 384 --- 390 - 384 --- 391 - 384 --- 392 - 384 --- 393 - 384 --- 394 - 384 --- 395 - 384 --- 396 - 384 --- 397 - 384 --- 398 - 384 --- 399 - 384 --- 400 - 384 --- 401 - 384 --- 402 - 384 --- 403 - 384 --- 404 - 384 --- 405 - 384 --- 406 - 384 --- 407 - 384 --- 408 - 384 --- 409 - 384 --- 410 - 395 <--x 385 - 395 <--x 394 - 396 <--x 385 - 396 <--x 386 - 397 <--x 386 - 397 <--x 394 - 398 <--x 386 - 398 <--x 387 - 399 <--x 387 - 399 <--x 394 - 400 <--x 387 - 400 <--x 388 - 401 <--x 388 - 401 <--x 394 - 402 <--x 388 - 402 <--x 389 - 403 <--x 389 - 403 <--x 394 - 404 <--x 389 - 404 <--x 390 - 405 <--x 390 - 405 <--x 394 - 406 <--x 390 - 406 <--x 391 - 407 <--x 391 - 407 <--x 394 - 408 <--x 391 - 408 <--x 392 - 409 <--x 392 - 409 <--x 394 - 410 <--x 385 - 410 <--x 392 - 411 --- 412 - 412 --- 413 - 412 --- 414 - 412 --- 415 - 412 --- 416 - 412 --- 417 - 412 --- 418 - 412 --- 419 - 412 --- 420 - 412 --- 421 - 412 ---- 423 - 412 --- 422 - 413 --- 424 - 413 --- 434 - 413 --- 435 - 413 x--> 432 - 414 --- 425 - 414 --- 436 - 414 --- 437 - 414 x--> 432 - 415 --- 426 - 415 --- 438 - 415 --- 439 - 415 x--> 432 - 416 --- 427 - 416 --- 440 - 416 --- 441 - 416 x--> 432 - 417 --- 428 - 417 --- 442 - 417 --- 443 - 417 x--> 432 - 418 --- 429 - 418 --- 444 - 418 --- 445 - 418 x--> 432 - 419 --- 430 - 419 --- 446 - 419 --- 447 - 419 x--> 432 - 420 --- 431 - 420 --- 448 - 420 --- 449 - 420 x--> 432 - 423 --- 424 - 423 --- 425 - 423 --- 426 - 423 --- 427 - 423 --- 428 - 423 --- 429 - 423 --- 430 - 423 --- 431 - 423 --- 432 - 423 --- 433 - 423 --- 434 - 423 --- 435 - 423 --- 436 - 423 --- 437 - 423 --- 438 - 423 --- 439 - 423 --- 440 - 423 --- 441 - 423 --- 442 - 423 --- 443 - 423 --- 444 - 423 --- 445 - 423 --- 446 - 423 --- 447 - 423 --- 448 - 423 --- 449 - 434 <--x 424 - 434 <--x 433 - 435 <--x 424 - 435 <--x 425 - 436 <--x 425 - 436 <--x 433 - 437 <--x 425 - 437 <--x 426 - 438 <--x 426 - 438 <--x 433 - 439 <--x 426 - 439 <--x 427 - 440 <--x 427 - 440 <--x 433 - 441 <--x 427 - 441 <--x 428 - 442 <--x 428 - 442 <--x 433 - 443 <--x 428 - 443 <--x 429 - 444 <--x 429 - 444 <--x 433 - 445 <--x 429 - 445 <--x 430 - 446 <--x 430 - 446 <--x 433 - 447 <--x 430 - 447 <--x 431 - 448 <--x 431 - 448 <--x 433 - 449 <--x 424 - 449 <--x 431 - 450 --- 451 - 451 --- 452 - 451 --- 453 - 451 --- 454 - 451 --- 455 - 451 --- 456 - 451 --- 457 - 451 --- 458 - 451 --- 459 - 451 --- 460 - 451 ---- 462 - 451 --- 461 - 452 --- 463 - 452 --- 473 - 452 --- 474 - 452 x--> 471 - 453 --- 464 - 453 --- 475 - 453 --- 476 - 453 x--> 471 - 454 --- 465 - 454 --- 477 - 454 --- 478 - 454 x--> 471 - 455 --- 466 - 455 --- 479 - 455 --- 480 - 455 x--> 471 - 456 --- 467 - 456 --- 481 - 456 --- 482 - 456 x--> 471 - 457 --- 468 - 457 --- 483 - 457 --- 484 - 457 x--> 471 - 458 --- 469 - 458 --- 485 - 458 --- 486 - 458 x--> 471 - 459 --- 470 - 459 --- 487 - 459 --- 488 - 459 x--> 471 - 462 --- 463 - 462 --- 464 - 462 --- 465 - 462 --- 466 - 462 --- 467 - 462 --- 468 - 462 --- 469 - 462 --- 470 - 462 --- 471 - 462 --- 472 - 462 --- 473 - 462 --- 474 - 462 --- 475 - 462 --- 476 - 462 --- 477 - 462 --- 478 - 462 --- 479 - 462 --- 480 - 462 --- 481 - 462 --- 482 - 462 --- 483 - 462 --- 484 - 462 --- 485 - 462 --- 486 - 462 --- 487 - 462 --- 488 - 473 <--x 463 - 473 <--x 472 - 474 <--x 463 - 474 <--x 464 - 475 <--x 464 - 475 <--x 472 - 476 <--x 464 - 476 <--x 465 - 477 <--x 465 - 477 <--x 472 - 478 <--x 465 - 478 <--x 466 - 479 <--x 466 - 479 <--x 472 - 480 <--x 466 - 480 <--x 467 - 481 <--x 467 - 481 <--x 472 - 482 <--x 467 - 482 <--x 468 - 483 <--x 468 - 483 <--x 472 - 484 <--x 468 - 484 <--x 469 - 485 <--x 469 - 485 <--x 472 - 486 <--x 469 - 486 <--x 470 - 487 <--x 470 - 487 <--x 472 - 488 <--x 463 - 488 <--x 470 - 489 --- 490 - 490 --- 491 - 490 --- 492 - 490 --- 493 - 490 --- 494 - 490 --- 495 - 490 --- 496 - 490 --- 497 - 490 --- 498 - 490 --- 499 - 490 ---- 501 - 490 --- 500 - 491 --- 502 - 491 --- 512 - 491 --- 513 - 491 x--> 510 - 492 --- 503 - 492 --- 514 - 492 --- 515 - 492 x--> 510 - 493 --- 504 - 493 --- 516 - 493 --- 517 - 493 x--> 510 - 494 --- 505 - 494 --- 518 - 494 --- 519 - 494 x--> 510 - 495 --- 506 - 495 --- 520 - 495 --- 521 - 495 x--> 510 - 496 --- 507 - 496 --- 522 - 496 --- 523 - 496 x--> 510 - 497 --- 508 - 497 --- 524 - 497 --- 525 - 497 x--> 510 - 498 --- 509 - 498 --- 526 - 498 --- 527 - 498 x--> 510 - 501 --- 502 - 501 --- 503 - 501 --- 504 - 501 --- 505 - 501 --- 506 - 501 --- 507 - 501 --- 508 - 501 --- 509 - 501 --- 510 - 501 --- 511 - 501 --- 512 - 501 --- 513 - 501 --- 514 - 501 --- 515 - 501 --- 516 - 501 --- 517 - 501 --- 518 - 501 --- 519 - 501 --- 520 - 501 --- 521 - 501 --- 522 - 501 --- 523 - 501 --- 524 - 501 --- 525 - 501 --- 526 - 501 --- 527 - 512 <--x 502 - 512 <--x 511 - 513 <--x 502 - 513 <--x 503 - 514 <--x 503 - 514 <--x 511 - 515 <--x 503 - 515 <--x 504 - 516 <--x 504 - 516 <--x 511 - 517 <--x 504 - 517 <--x 505 - 518 <--x 505 - 518 <--x 511 - 519 <--x 505 - 519 <--x 506 - 520 <--x 506 - 520 <--x 511 - 521 <--x 506 - 521 <--x 507 - 522 <--x 507 - 522 <--x 511 - 523 <--x 507 - 523 <--x 508 - 524 <--x 508 - 524 <--x 511 - 525 <--x 508 - 525 <--x 509 - 526 <--x 509 - 526 <--x 511 - 527 <--x 502 - 527 <--x 509 - 528 --- 529 - 529 --- 530 - 529 --- 531 - 529 --- 532 - 529 --- 533 - 529 --- 534 - 529 --- 535 - 529 --- 536 - 529 --- 537 - 529 --- 538 - 529 ---- 540 - 529 --- 539 - 530 --- 541 - 530 --- 551 - 530 --- 552 - 530 x--> 549 - 531 --- 542 - 531 --- 553 - 531 --- 554 - 531 x--> 549 - 532 --- 543 - 532 --- 555 - 532 --- 556 - 532 x--> 549 - 533 --- 544 - 533 --- 557 - 533 --- 558 - 533 x--> 549 - 534 --- 545 - 534 --- 559 - 534 --- 560 - 534 x--> 549 - 535 --- 546 - 535 --- 561 - 535 --- 562 - 535 x--> 549 - 536 --- 547 - 536 --- 563 - 536 --- 564 - 536 x--> 549 - 537 --- 548 - 537 --- 565 - 537 --- 566 - 537 x--> 549 - 540 --- 541 - 540 --- 542 - 540 --- 543 - 540 --- 544 - 540 --- 545 - 540 --- 546 - 540 --- 547 - 540 --- 548 - 540 --- 549 - 540 --- 550 - 540 --- 551 - 540 --- 552 - 540 --- 553 - 540 --- 554 - 540 --- 555 - 540 --- 556 - 540 --- 557 - 540 --- 558 - 540 --- 559 - 540 --- 560 - 540 --- 561 - 540 --- 562 - 540 --- 563 - 540 --- 564 - 540 --- 565 - 540 --- 566 - 551 <--x 541 - 551 <--x 550 - 552 <--x 541 - 552 <--x 542 - 553 <--x 542 - 553 <--x 550 - 554 <--x 542 - 554 <--x 543 - 555 <--x 543 - 555 <--x 550 - 556 <--x 543 - 556 <--x 544 - 557 <--x 544 - 557 <--x 550 - 558 <--x 544 - 558 <--x 545 - 559 <--x 545 - 559 <--x 550 - 560 <--x 545 - 560 <--x 546 - 561 <--x 546 - 561 <--x 550 - 562 <--x 546 - 562 <--x 547 - 563 <--x 547 - 563 <--x 550 - 564 <--x 547 - 564 <--x 548 - 565 <--x 548 - 565 <--x 550 - 566 <--x 541 - 566 <--x 548 - 567 --- 568 - 568 --- 569 - 568 --- 570 - 568 --- 571 - 568 --- 572 - 568 --- 573 - 568 --- 574 - 568 --- 575 - 568 --- 576 - 568 --- 577 - 568 ---- 579 - 568 --- 578 - 569 --- 580 - 569 --- 590 - 569 --- 591 - 569 x--> 588 - 570 --- 581 - 570 --- 592 - 570 --- 593 - 570 x--> 588 - 571 --- 582 - 571 --- 594 - 571 --- 595 - 571 x--> 588 - 572 --- 583 - 572 --- 596 - 572 --- 597 - 572 x--> 588 - 573 --- 584 - 573 --- 598 - 573 --- 599 - 573 x--> 588 - 574 --- 585 - 574 --- 600 - 574 --- 601 - 574 x--> 588 - 575 --- 586 - 575 --- 602 - 575 --- 603 - 575 x--> 588 - 576 --- 587 - 576 --- 604 - 576 --- 605 - 576 x--> 588 - 579 --- 580 - 579 --- 581 - 579 --- 582 - 579 --- 583 - 579 --- 584 - 579 --- 585 - 579 --- 586 - 579 --- 587 - 579 --- 588 - 579 --- 589 - 579 --- 590 - 579 --- 591 - 579 --- 592 - 579 --- 593 - 579 --- 594 - 579 --- 595 - 579 --- 596 - 579 --- 597 - 579 --- 598 - 579 --- 599 - 579 --- 600 - 579 --- 601 - 579 --- 602 - 579 --- 603 - 579 --- 604 - 579 --- 605 - 590 <--x 580 - 590 <--x 589 - 591 <--x 580 - 591 <--x 581 - 592 <--x 581 - 592 <--x 589 - 593 <--x 581 - 593 <--x 582 - 594 <--x 582 - 594 <--x 589 - 595 <--x 582 - 595 <--x 583 - 596 <--x 583 - 596 <--x 589 - 597 <--x 583 - 597 <--x 584 - 598 <--x 584 - 598 <--x 589 - 599 <--x 584 - 599 <--x 585 - 600 <--x 585 - 600 <--x 589 - 601 <--x 585 - 601 <--x 586 - 602 <--x 586 - 602 <--x 589 - 603 <--x 586 - 603 <--x 587 - 604 <--x 587 - 604 <--x 589 - 605 <--x 580 - 605 <--x 587 - 606 --- 607 - 607 --- 608 - 607 --- 609 - 607 --- 610 - 607 --- 611 - 607 --- 612 - 607 --- 613 - 607 --- 614 - 607 --- 615 - 607 --- 616 - 607 ---- 618 - 607 --- 617 - 608 --- 619 - 608 --- 629 - 608 --- 630 - 608 x--> 627 - 609 --- 620 - 609 --- 631 - 609 --- 632 - 609 x--> 627 - 610 --- 621 - 610 --- 633 - 610 --- 634 - 610 x--> 627 - 611 --- 622 - 611 --- 635 - 611 --- 636 - 611 x--> 627 - 612 --- 623 - 612 --- 637 - 612 --- 638 - 612 x--> 627 - 613 --- 624 - 613 --- 639 - 613 --- 640 - 613 x--> 627 - 614 --- 625 - 614 --- 641 - 614 --- 642 - 614 x--> 627 - 615 --- 626 - 615 --- 643 - 615 --- 644 - 615 x--> 627 - 618 --- 619 - 618 --- 620 - 618 --- 621 - 618 --- 622 - 618 --- 623 - 618 --- 624 - 618 --- 625 - 618 --- 626 - 618 --- 627 - 618 --- 628 - 618 --- 629 - 618 --- 630 - 618 --- 631 - 618 --- 632 - 618 --- 633 - 618 --- 634 - 618 --- 635 - 618 --- 636 - 618 --- 637 - 618 --- 638 - 618 --- 639 - 618 --- 640 - 618 --- 641 - 618 --- 642 - 618 --- 643 - 618 --- 644 - 629 <--x 619 - 629 <--x 628 - 630 <--x 619 - 630 <--x 620 - 631 <--x 620 - 631 <--x 628 - 632 <--x 620 - 632 <--x 621 - 633 <--x 621 - 633 <--x 628 - 634 <--x 621 - 634 <--x 622 - 635 <--x 622 - 635 <--x 628 - 636 <--x 622 - 636 <--x 623 - 637 <--x 623 - 637 <--x 628 - 638 <--x 623 - 638 <--x 624 - 639 <--x 624 - 639 <--x 628 - 640 <--x 624 - 640 <--x 625 - 641 <--x 625 - 641 <--x 628 - 642 <--x 625 - 642 <--x 626 - 643 <--x 626 - 643 <--x 628 - 644 <--x 619 - 644 <--x 626 - 645 --- 646 - 646 --- 647 - 646 --- 648 - 646 --- 649 - 646 --- 650 - 646 --- 651 - 646 --- 652 - 646 --- 653 - 646 --- 654 - 646 --- 655 - 646 ---- 657 - 646 --- 656 - 647 --- 658 - 647 --- 668 - 647 --- 669 - 647 x--> 666 - 648 --- 659 - 648 --- 670 - 648 --- 671 - 648 x--> 666 - 649 --- 660 - 649 --- 672 - 649 --- 673 - 649 x--> 666 - 650 --- 661 - 650 --- 674 - 650 --- 675 - 650 x--> 666 - 651 --- 662 - 651 --- 676 - 651 --- 677 - 651 x--> 666 - 652 --- 663 - 652 --- 678 - 652 --- 679 - 652 x--> 666 - 653 --- 664 - 653 --- 680 - 653 --- 681 - 653 x--> 666 - 654 --- 665 - 654 --- 682 - 654 --- 683 - 654 x--> 666 - 657 --- 658 - 657 --- 659 - 657 --- 660 - 657 --- 661 - 657 --- 662 - 657 --- 663 - 657 --- 664 - 657 --- 665 - 657 --- 666 - 657 --- 667 - 657 --- 668 - 657 --- 669 - 657 --- 670 - 657 --- 671 - 657 --- 672 - 657 --- 673 - 657 --- 674 - 657 --- 675 - 657 --- 676 - 657 --- 677 - 657 --- 678 - 657 --- 679 - 657 --- 680 - 657 --- 681 - 657 --- 682 - 657 --- 683 - 668 <--x 658 - 668 <--x 667 - 669 <--x 658 - 669 <--x 659 - 670 <--x 659 - 670 <--x 667 - 671 <--x 659 - 671 <--x 660 - 672 <--x 660 - 672 <--x 667 - 673 <--x 660 - 673 <--x 661 - 674 <--x 661 - 674 <--x 667 - 675 <--x 661 - 675 <--x 662 - 676 <--x 662 - 676 <--x 667 - 677 <--x 662 - 677 <--x 663 - 678 <--x 663 - 678 <--x 667 - 679 <--x 663 - 679 <--x 664 - 680 <--x 664 - 680 <--x 667 - 681 <--x 664 - 681 <--x 665 - 682 <--x 665 - 682 <--x 667 - 683 <--x 658 - 683 <--x 665 - 684 --- 685 - 685 --- 686 - 685 --- 687 - 685 --- 688 - 685 --- 689 - 685 --- 690 - 685 --- 691 - 685 --- 692 - 685 --- 693 - 685 --- 694 - 685 ---- 696 - 685 --- 695 - 686 --- 697 - 686 --- 707 - 686 --- 708 - 686 x--> 705 - 687 --- 698 - 687 --- 709 - 687 --- 710 - 687 x--> 705 - 688 --- 699 - 688 --- 711 - 688 --- 712 - 688 x--> 705 - 689 --- 700 - 689 --- 713 - 689 --- 714 - 689 x--> 705 - 690 --- 701 - 690 --- 715 - 690 --- 716 - 690 x--> 705 - 691 --- 702 - 691 --- 717 - 691 --- 718 - 691 x--> 705 - 692 --- 703 - 692 --- 719 - 692 --- 720 - 692 x--> 705 - 693 --- 704 - 693 --- 721 - 693 --- 722 - 693 x--> 705 - 696 --- 697 - 696 --- 698 - 696 --- 699 - 696 --- 700 - 696 --- 701 - 696 --- 702 - 696 --- 703 - 696 --- 704 - 696 --- 705 - 696 --- 706 - 696 --- 707 - 696 --- 708 - 696 --- 709 - 696 --- 710 - 696 --- 711 - 696 --- 712 - 696 --- 713 - 696 --- 714 - 696 --- 715 - 696 --- 716 - 696 --- 717 - 696 --- 718 - 696 --- 719 - 696 --- 720 - 696 --- 721 - 696 --- 722 - 707 <--x 697 - 707 <--x 706 - 708 <--x 697 - 708 <--x 698 - 709 <--x 698 - 709 <--x 706 - 710 <--x 698 - 710 <--x 699 - 711 <--x 699 - 711 <--x 706 - 712 <--x 699 - 712 <--x 700 - 713 <--x 700 - 713 <--x 706 - 714 <--x 700 - 714 <--x 701 - 715 <--x 701 - 715 <--x 706 - 716 <--x 701 - 716 <--x 702 - 717 <--x 702 - 717 <--x 706 - 718 <--x 702 - 718 <--x 703 - 719 <--x 703 - 719 <--x 706 - 720 <--x 703 - 720 <--x 704 - 721 <--x 704 - 721 <--x 706 - 722 <--x 697 - 722 <--x 704 - 723 --- 724 - 724 --- 725 - 724 --- 726 - 724 --- 727 - 724 --- 728 - 724 --- 729 - 724 --- 730 - 724 --- 731 - 724 --- 732 - 724 --- 733 - 724 ---- 735 - 724 --- 734 - 725 --- 736 - 725 --- 746 - 725 --- 747 - 725 x--> 744 - 726 --- 737 - 726 --- 748 - 726 --- 749 - 726 x--> 744 - 727 --- 738 - 727 --- 750 - 727 --- 751 - 727 x--> 744 - 728 --- 739 - 728 --- 752 - 728 --- 753 - 728 x--> 744 - 729 --- 740 - 729 --- 754 - 729 --- 755 - 729 x--> 744 - 730 --- 741 - 730 --- 756 - 730 --- 757 - 730 x--> 744 - 731 --- 742 - 731 --- 758 - 731 --- 759 - 731 x--> 744 - 732 --- 743 - 732 --- 760 - 732 --- 761 - 732 x--> 744 - 735 --- 736 - 735 --- 737 - 735 --- 738 - 735 --- 739 - 735 --- 740 - 735 --- 741 - 735 --- 742 - 735 --- 743 - 735 --- 744 - 735 --- 745 - 735 --- 746 - 735 --- 747 - 735 --- 748 - 735 --- 749 - 735 --- 750 - 735 --- 751 - 735 --- 752 - 735 --- 753 - 735 --- 754 - 735 --- 755 - 735 --- 756 - 735 --- 757 - 735 --- 758 - 735 --- 759 - 735 --- 760 - 735 --- 761 - 746 <--x 736 - 746 <--x 745 - 747 <--x 736 - 747 <--x 737 - 748 <--x 737 - 748 <--x 745 - 749 <--x 737 - 749 <--x 738 - 750 <--x 738 - 750 <--x 745 - 751 <--x 738 - 751 <--x 739 - 752 <--x 739 - 752 <--x 745 - 753 <--x 739 - 753 <--x 740 - 754 <--x 740 - 754 <--x 745 - 755 <--x 740 - 755 <--x 741 - 756 <--x 741 - 756 <--x 745 - 757 <--x 741 - 757 <--x 742 - 758 <--x 742 - 758 <--x 745 - 759 <--x 742 - 759 <--x 743 - 760 <--x 743 - 760 <--x 745 - 761 <--x 736 - 761 <--x 743 - 762 --- 763 - 763 --- 764 - 763 --- 765 - 763 --- 766 - 763 --- 767 - 763 --- 768 - 763 --- 769 - 763 --- 770 - 763 --- 771 - 763 --- 772 - 763 ---- 774 - 763 --- 773 - 764 --- 775 - 764 --- 785 - 764 --- 786 - 764 x--> 783 - 765 --- 776 - 765 --- 787 - 765 --- 788 - 765 x--> 783 - 766 --- 777 - 766 --- 789 - 766 --- 790 - 766 x--> 783 - 767 --- 778 - 767 --- 791 - 767 --- 792 - 767 x--> 783 - 768 --- 779 - 768 --- 793 - 768 --- 794 - 768 x--> 783 - 769 --- 780 - 769 --- 795 - 769 --- 796 - 769 x--> 783 - 770 --- 781 - 770 --- 797 - 770 --- 798 - 770 x--> 783 - 771 --- 782 - 771 --- 799 - 771 --- 800 - 771 x--> 783 - 774 --- 775 - 774 --- 776 - 774 --- 777 - 774 --- 778 - 774 --- 779 - 774 --- 780 - 774 --- 781 - 774 --- 782 - 774 --- 783 - 774 --- 784 - 774 --- 785 - 774 --- 786 - 774 --- 787 - 774 --- 788 - 774 --- 789 - 774 --- 790 - 774 --- 791 - 774 --- 792 - 774 --- 793 - 774 --- 794 - 774 --- 795 - 774 --- 796 - 774 --- 797 - 774 --- 798 - 774 --- 799 - 774 --- 800 - 785 <--x 775 - 785 <--x 784 - 786 <--x 775 - 786 <--x 776 - 787 <--x 776 - 787 <--x 784 - 788 <--x 776 - 788 <--x 777 - 789 <--x 777 - 789 <--x 784 - 790 <--x 777 - 790 <--x 778 - 791 <--x 778 - 791 <--x 784 - 792 <--x 778 - 792 <--x 779 - 793 <--x 779 - 793 <--x 784 - 794 <--x 779 - 794 <--x 780 - 795 <--x 780 - 795 <--x 784 - 796 <--x 780 - 796 <--x 781 - 797 <--x 781 - 797 <--x 784 - 798 <--x 781 - 798 <--x 782 - 799 <--x 782 - 799 <--x 784 - 800 <--x 775 - 800 <--x 782 - 801 --- 802 - 802 --- 803 - 802 --- 804 - 802 --- 805 - 802 --- 806 - 802 --- 807 - 802 --- 808 - 802 --- 809 - 802 --- 810 - 802 --- 811 - 802 ---- 813 - 802 --- 812 - 803 --- 814 - 803 --- 824 - 803 --- 825 - 803 x--> 822 - 804 --- 815 - 804 --- 826 - 804 --- 827 - 804 x--> 822 - 805 --- 816 - 805 --- 828 - 805 --- 829 - 805 x--> 822 - 806 --- 817 - 806 --- 830 - 806 --- 831 - 806 x--> 822 - 807 --- 818 - 807 --- 832 - 807 --- 833 - 807 x--> 822 - 808 --- 819 - 808 --- 834 - 808 --- 835 - 808 x--> 822 - 809 --- 820 - 809 --- 836 - 809 --- 837 - 809 x--> 822 - 810 --- 821 - 810 --- 838 - 810 --- 839 - 810 x--> 822 - 813 --- 814 - 813 --- 815 - 813 --- 816 - 813 --- 817 - 813 --- 818 - 813 --- 819 - 813 --- 820 - 813 --- 821 - 813 --- 822 - 813 --- 823 - 813 --- 824 - 813 --- 825 - 813 --- 826 - 813 --- 827 - 813 --- 828 - 813 --- 829 - 813 --- 830 - 813 --- 831 - 813 --- 832 - 813 --- 833 - 813 --- 834 - 813 --- 835 - 813 --- 836 - 813 --- 837 - 813 --- 838 - 813 --- 839 - 824 <--x 814 - 824 <--x 823 - 825 <--x 814 - 825 <--x 815 - 826 <--x 815 - 826 <--x 823 - 827 <--x 815 - 827 <--x 816 - 828 <--x 816 - 828 <--x 823 - 829 <--x 816 - 829 <--x 817 - 830 <--x 817 - 830 <--x 823 - 831 <--x 817 - 831 <--x 818 - 832 <--x 818 - 832 <--x 823 - 833 <--x 818 - 833 <--x 819 - 834 <--x 819 - 834 <--x 823 - 835 <--x 819 - 835 <--x 820 - 836 <--x 820 - 836 <--x 823 - 837 <--x 820 - 837 <--x 821 - 838 <--x 821 - 838 <--x 823 - 839 <--x 814 - 839 <--x 821 - 840 --- 841 - 841 --- 842 - 841 --- 843 - 841 --- 844 - 841 --- 845 - 841 --- 846 - 841 --- 847 - 841 --- 848 - 841 --- 849 - 841 --- 850 - 841 ---- 852 - 841 --- 851 - 842 --- 853 - 842 --- 863 - 842 --- 864 - 842 x--> 861 - 843 --- 854 - 843 --- 865 - 843 --- 866 - 843 x--> 861 - 844 --- 855 - 844 --- 867 - 844 --- 868 - 844 x--> 861 - 845 --- 856 - 845 --- 869 - 845 --- 870 - 845 x--> 861 - 846 --- 857 - 846 --- 871 - 846 --- 872 - 846 x--> 861 - 847 --- 858 - 847 --- 873 - 847 --- 874 - 847 x--> 861 - 848 --- 859 - 848 --- 875 - 848 --- 876 - 848 x--> 861 - 849 --- 860 - 849 --- 877 - 849 --- 878 - 849 x--> 861 - 852 --- 853 - 852 --- 854 - 852 --- 855 - 852 --- 856 - 852 --- 857 - 852 --- 858 - 852 --- 859 - 852 --- 860 - 852 --- 861 - 852 --- 862 - 852 --- 863 - 852 --- 864 - 852 --- 865 - 852 --- 866 - 852 --- 867 - 852 --- 868 - 852 --- 869 - 852 --- 870 - 852 --- 871 - 852 --- 872 - 852 --- 873 - 852 --- 874 - 852 --- 875 - 852 --- 876 - 852 --- 877 - 852 --- 878 - 863 <--x 853 - 863 <--x 862 - 864 <--x 853 - 864 <--x 854 - 865 <--x 854 - 865 <--x 862 - 866 <--x 854 - 866 <--x 855 - 867 <--x 855 - 867 <--x 862 - 868 <--x 855 - 868 <--x 856 - 869 <--x 856 - 869 <--x 862 - 870 <--x 856 - 870 <--x 857 - 871 <--x 857 - 871 <--x 862 - 872 <--x 857 - 872 <--x 858 - 873 <--x 858 - 873 <--x 862 - 874 <--x 858 - 874 <--x 859 - 875 <--x 859 - 875 <--x 862 - 876 <--x 859 - 876 <--x 860 - 877 <--x 860 - 877 <--x 862 - 878 <--x 853 - 878 <--x 860 - 879 --- 880 - 880 --- 881 - 880 --- 882 - 880 --- 883 - 880 --- 884 - 880 --- 885 - 880 --- 886 - 880 --- 887 - 880 --- 888 - 880 --- 889 - 880 --- 890 - 880 --- 891 - 880 --- 892 - 880 --- 893 - 880 --- 894 - 880 --- 895 - 880 --- 896 - 880 ---- 898 - 880 --- 897 - 881 --- 899 - 881 --- 917 - 881 --- 918 - 881 x--> 916 - 882 --- 900 - 882 --- 919 - 882 --- 920 - 882 x--> 916 - 883 --- 901 - 883 --- 921 - 883 --- 922 - 883 x--> 916 - 884 --- 902 - 884 --- 923 - 884 --- 924 - 884 x--> 916 - 885 --- 903 - 885 --- 925 - 885 --- 926 - 885 x--> 916 - 886 --- 904 - 886 --- 927 - 886 --- 928 - 886 x--> 916 - 887 --- 905 - 887 --- 929 - 887 --- 930 - 887 x--> 916 - 888 --- 906 - 888 --- 931 - 888 --- 932 - 888 x--> 916 - 889 --- 907 - 889 --- 933 - 889 --- 934 - 889 x--> 916 - 890 --- 908 - 890 --- 935 - 890 --- 936 - 890 x--> 916 - 891 --- 909 - 891 --- 937 - 891 --- 938 - 891 x--> 916 - 892 --- 910 - 892 --- 939 - 892 --- 940 - 892 x--> 916 - 893 --- 911 - 893 --- 941 - 893 --- 942 - 893 x--> 916 - 894 --- 912 - 894 --- 943 - 894 --- 944 - 894 x--> 916 - 895 --- 913 - 895 --- 945 - 895 --- 946 - 895 x--> 916 - 896 --- 914 - 896 --- 947 - 896 --- 948 - 896 x--> 916 - 898 --- 899 - 898 --- 900 - 898 --- 901 - 898 --- 902 - 898 --- 903 - 898 --- 904 - 898 --- 905 - 898 --- 906 - 898 --- 907 - 898 --- 908 - 898 --- 909 - 898 --- 910 - 898 --- 911 - 898 --- 912 - 898 --- 913 - 898 --- 914 - 898 --- 915 - 898 --- 916 - 898 --- 917 - 898 --- 918 - 898 --- 919 - 898 --- 920 - 898 --- 921 - 898 --- 922 - 898 --- 923 - 898 --- 924 - 898 --- 925 - 898 --- 926 - 898 --- 927 - 898 --- 928 - 898 --- 929 - 898 --- 930 - 898 --- 931 - 898 --- 932 - 898 --- 933 - 898 --- 934 - 898 --- 935 - 898 --- 936 - 898 --- 937 - 898 --- 938 - 898 --- 939 - 898 --- 940 - 898 --- 941 - 898 --- 942 - 898 --- 943 - 898 --- 944 - 898 --- 945 - 898 --- 946 - 898 --- 947 - 898 --- 948 - 917 <--x 899 - 917 <--x 915 - 918 <--x 899 - 918 <--x 900 - 919 <--x 900 - 919 <--x 915 - 920 <--x 900 - 920 <--x 901 - 921 <--x 901 - 921 <--x 915 - 922 <--x 901 - 922 <--x 902 - 923 <--x 902 - 923 <--x 915 - 924 <--x 902 - 924 <--x 903 - 925 <--x 903 - 925 <--x 915 - 926 <--x 903 - 926 <--x 904 - 927 <--x 904 - 927 <--x 915 - 928 <--x 904 - 928 <--x 905 - 929 <--x 905 - 929 <--x 915 - 930 <--x 905 - 930 <--x 906 - 931 <--x 906 - 931 <--x 915 - 932 <--x 906 - 932 <--x 907 - 933 <--x 907 - 933 <--x 915 - 934 <--x 907 - 934 <--x 908 - 935 <--x 908 - 935 <--x 915 - 936 <--x 908 - 936 <--x 909 - 937 <--x 909 - 937 <--x 915 - 938 <--x 909 - 938 <--x 910 - 939 <--x 910 - 939 <--x 915 - 940 <--x 910 - 940 <--x 911 - 941 <--x 911 - 941 <--x 915 - 942 <--x 911 - 942 <--x 912 - 943 <--x 912 - 943 <--x 915 - 944 <--x 912 - 944 <--x 913 - 945 <--x 913 - 945 <--x 915 - 946 <--x 913 - 946 <--x 914 - 947 <--x 914 - 947 <--x 915 - 948 <--x 899 - 948 <--x 914 - 949 --- 950 - 950 --- 951 - 950 --- 952 - 950 --- 953 - 950 --- 954 - 950 ---- 956 - 950 --- 955 - 951 --- 957 - 951 --- 963 - 951 --- 964 - 951 x--> 962 - 952 --- 958 - 952 --- 965 - 952 --- 966 - 952 x--> 962 - 953 --- 959 - 953 --- 967 - 953 --- 968 - 953 x--> 962 - 954 --- 960 - 954 --- 969 - 954 --- 970 - 954 x--> 962 - 956 --- 957 - 956 --- 958 - 956 --- 959 - 956 --- 960 - 956 --- 961 - 956 --- 962 - 956 --- 963 - 956 --- 964 - 956 --- 965 - 956 --- 966 - 956 --- 967 - 956 --- 968 - 956 --- 969 - 956 --- 970 - 963 <--x 957 - 963 <--x 961 - 964 <--x 957 - 964 <--x 958 - 965 <--x 958 - 965 <--x 961 - 966 <--x 958 - 966 <--x 959 - 967 <--x 959 - 967 <--x 961 - 968 <--x 959 - 968 <--x 960 - 969 <--x 960 - 969 <--x 961 - 970 <--x 957 - 970 <--x 960 - 971 --- 972 - 972 --- 973 - 972 --- 974 - 972 --- 975 - 972 --- 976 - 972 ---- 978 - 972 --- 977 - 973 --- 979 - 973 --- 985 - 973 --- 986 - 973 x--> 984 - 974 --- 980 - 974 --- 987 - 974 --- 988 - 974 x--> 984 - 975 --- 981 - 975 --- 989 - 975 --- 990 - 975 x--> 984 - 976 --- 982 - 976 --- 991 - 976 --- 992 - 976 x--> 984 - 978 --- 979 - 978 --- 980 - 978 --- 981 - 978 --- 982 - 978 --- 983 - 978 --- 984 - 978 --- 985 - 978 --- 986 - 978 --- 987 - 978 --- 988 - 978 --- 989 - 978 --- 990 - 978 --- 991 - 978 --- 992 - 985 <--x 979 - 985 <--x 983 - 986 <--x 979 - 986 <--x 980 - 987 <--x 980 - 987 <--x 983 - 988 <--x 980 - 988 <--x 981 - 989 <--x 981 - 989 <--x 983 - 990 <--x 981 - 990 <--x 982 - 991 <--x 982 - 991 <--x 983 - 992 <--x 979 - 992 <--x 982 - 993 --- 994 - 994 --- 995 - 994 --- 996 - 994 --- 997 - 994 --- 998 - 994 ---- 1000 - 994 --- 999 - 995 --- 1001 - 995 --- 1007 - 995 --- 1008 - 995 x--> 1006 - 996 --- 1002 - 996 --- 1009 - 996 --- 1010 - 996 x--> 1006 - 997 --- 1003 - 997 --- 1011 - 997 --- 1012 - 997 x--> 1006 - 998 --- 1004 - 998 --- 1013 - 998 --- 1014 - 998 x--> 1006 - 1000 --- 1001 - 1000 --- 1002 - 1000 --- 1003 - 1000 --- 1004 - 1000 --- 1005 - 1000 --- 1006 - 1000 --- 1007 - 1000 --- 1008 - 1000 --- 1009 - 1000 --- 1010 - 1000 --- 1011 - 1000 --- 1012 - 1000 --- 1013 - 1000 --- 1014 - 1007 <--x 1001 - 1007 <--x 1005 - 1008 <--x 1001 - 1008 <--x 1002 - 1009 <--x 1002 - 1009 <--x 1005 - 1010 <--x 1002 - 1010 <--x 1003 - 1011 <--x 1003 - 1011 <--x 1005 - 1012 <--x 1003 - 1012 <--x 1004 - 1013 <--x 1004 - 1013 <--x 1005 - 1014 <--x 1001 - 1014 <--x 1004 - 1015 --- 1016 - 1016 --- 1017 - 1016 --- 1018 - 1016 --- 1019 - 1016 --- 1020 - 1016 ---- 1022 - 1016 --- 1021 - 1017 --- 1023 - 1017 --- 1029 - 1017 --- 1030 - 1017 x--> 1028 - 1018 --- 1024 - 1018 --- 1031 - 1018 --- 1032 - 1018 x--> 1028 - 1019 --- 1025 - 1019 --- 1033 - 1019 --- 1034 - 1019 x--> 1028 - 1020 --- 1026 - 1020 --- 1035 - 1020 --- 1036 - 1020 x--> 1028 - 1022 --- 1023 - 1022 --- 1024 - 1022 --- 1025 - 1022 --- 1026 - 1022 --- 1027 - 1022 --- 1028 - 1022 --- 1029 - 1022 --- 1030 - 1022 --- 1031 - 1022 --- 1032 - 1022 --- 1033 - 1022 --- 1034 - 1022 --- 1035 - 1022 --- 1036 - 1029 <--x 1023 - 1029 <--x 1027 - 1030 <--x 1023 - 1030 <--x 1024 - 1031 <--x 1024 - 1031 <--x 1027 - 1032 <--x 1024 - 1032 <--x 1025 - 1033 <--x 1025 - 1033 <--x 1027 - 1034 <--x 1025 - 1034 <--x 1026 - 1035 <--x 1026 - 1035 <--x 1027 - 1036 <--x 1023 - 1036 <--x 1026 - 10 <--x 1037 + 1033["SweepEdge Adjacent"] + 1034["EdgeCut Fillet
[914, 1071, 0]"] + 1035["EdgeCut Fillet
[914, 1071, 0]"] + 1036["EdgeCut Fillet
[914, 1071, 0]"] + 1037["EdgeCut Fillet
[914, 1071, 0]"] + 1 --- 29 + 2 --- 39 + 3 --- 46 + 4 --- 38 + 5 --- 48 + 6 --- 41 + 7 --- 42 + 8 --- 34 + 9 --- 49 + 10 --- 53 + 11 --- 36 + 12 --- 52 + 13 --- 54 + 14 --- 37 + 15 --- 44 + 16 --- 45 + 17 --- 35 + 18 --- 50 + 19 --- 43 + 20 --- 47 + 21 --- 40 + 22 --- 51 + 23 --- 55 + 24 --- 57 + 25 --- 56 + 26 --- 59 + 27 --- 58 + 412 x--> 28 + 29 --- 60 + 29 --- 61 + 29 --- 62 + 29 --- 63 + 29 --- 64 + 29 --- 304 + 29 ---- 321 + 30 --- 65 + 30 --- 317 + 30 ---- 325 + 412 --- 30 + 31 --- 66 + 31 --- 302 + 31 ---- 324 + 412 --- 31 + 32 --- 67 + 32 --- 312 + 32 ---- 322 + 412 --- 32 + 33 --- 68 + 33 --- 303 + 33 ---- 323 + 412 --- 33 + 34 --- 87 + 34 --- 107 + 34 --- 116 + 34 --- 134 + 34 --- 155 + 34 --- 189 + 34 --- 198 + 34 --- 216 + 34 --- 242 + 34 --- 290 + 34 ---- 327 + 35 --- 88 + 35 --- 101 + 35 --- 113 + 35 --- 152 + 35 --- 171 + 35 --- 191 + 35 --- 197 + 35 --- 217 + 35 --- 241 + 35 --- 291 + 35 ---- 340 + 36 --- 74 + 36 --- 98 + 36 --- 117 + 36 --- 141 + 36 --- 170 + 36 --- 177 + 36 --- 215 + 36 --- 219 + 36 --- 254 + 36 --- 293 + 36 ---- 326 + 37 --- 76 + 37 --- 108 + 37 --- 130 + 37 --- 147 + 37 --- 169 + 37 --- 190 + 37 --- 201 + 37 --- 228 + 37 --- 253 + 37 --- 294 + 37 ---- 331 + 38 --- 84 + 38 --- 96 + 38 --- 112 + 38 --- 133 + 38 --- 157 + 38 --- 186 + 38 --- 209 + 38 --- 224 + 38 --- 243 + 38 --- 295 + 38 ---- 343 + 39 --- 78 + 39 --- 110 + 39 --- 118 + 39 --- 145 + 39 --- 166 + 39 --- 188 + 39 --- 202 + 39 --- 218 + 39 --- 245 + 39 --- 296 + 39 ---- 341 + 40 --- 73 + 40 --- 95 + 40 --- 128 + 40 --- 148 + 40 --- 172 + 40 --- 178 + 40 --- 207 + 40 --- 234 + 40 --- 251 + 40 --- 297 + 40 ---- 335 + 41 --- 83 + 41 --- 106 + 41 --- 125 + 41 --- 151 + 41 --- 160 + 41 --- 176 + 41 --- 204 + 41 --- 235 + 41 --- 248 + 41 --- 298 + 41 ---- 329 + 42 --- 86 + 42 --- 102 + 42 --- 119 + 42 --- 150 + 42 --- 164 + 42 --- 174 + 42 --- 200 + 42 --- 226 + 42 --- 246 + 42 --- 300 + 42 ---- 338 + 43 --- 77 + 43 --- 109 + 43 --- 114 + 43 --- 142 + 43 --- 153 + 43 --- 182 + 43 --- 199 + 43 --- 230 + 43 --- 252 + 43 --- 301 + 43 ---- 336 + 44 --- 69 + 44 --- 91 + 44 --- 127 + 44 --- 144 + 44 --- 163 + 44 --- 185 + 44 --- 210 + 44 --- 233 + 44 --- 256 + 44 --- 305 + 44 ---- 332 + 45 --- 80 + 45 --- 93 + 45 --- 124 + 45 --- 139 + 45 --- 168 + 45 --- 184 + 45 --- 195 + 45 --- 222 + 45 --- 240 + 45 --- 306 + 45 ---- 344 + 46 --- 70 + 46 --- 103 + 46 --- 123 + 46 --- 143 + 46 --- 173 + 46 --- 179 + 46 --- 205 + 46 --- 220 + 46 --- 237 + 46 --- 307 + 46 ---- 333 + 47 --- 82 + 47 --- 97 + 47 --- 126 + 47 --- 137 + 47 --- 159 + 47 --- 180 + 47 --- 196 + 47 --- 225 + 47 --- 255 + 47 --- 308 + 47 ---- 346 + 48 --- 89 + 48 --- 100 + 48 --- 129 + 48 --- 135 + 48 --- 158 + 48 --- 183 + 48 --- 211 + 48 --- 221 + 48 --- 250 + 48 --- 309 + 48 ---- 330 + 49 --- 72 + 49 --- 92 + 49 --- 115 + 49 --- 138 + 49 --- 162 + 49 --- 193 + 49 --- 203 + 49 --- 229 + 49 --- 239 + 49 --- 310 + 49 ---- 328 + 50 --- 75 + 50 --- 99 + 50 --- 121 + 50 --- 140 + 50 --- 167 + 50 --- 181 + 50 --- 206 + 50 --- 223 + 50 --- 238 + 50 --- 313 + 50 ---- 334 + 51 --- 79 + 51 --- 104 + 51 --- 131 + 51 --- 149 + 51 --- 156 + 51 --- 175 + 51 --- 214 + 51 --- 227 + 51 --- 244 + 51 --- 315 + 51 ---- 337 + 52 --- 85 + 52 --- 105 + 52 --- 120 + 52 --- 132 + 52 --- 165 + 52 --- 187 + 52 --- 208 + 52 --- 231 + 52 --- 249 + 52 --- 318 + 52 ---- 342 + 53 --- 71 + 53 --- 94 + 53 --- 122 + 53 --- 146 + 53 --- 154 + 53 --- 192 + 53 --- 212 + 53 --- 232 + 53 --- 247 + 53 --- 319 + 53 ---- 339 + 54 --- 81 + 54 --- 90 + 54 --- 111 + 54 --- 136 + 54 --- 161 + 54 --- 194 + 54 --- 213 + 54 --- 236 + 54 --- 257 + 54 --- 320 + 54 ---- 345 + 55 --- 258 + 55 --- 259 + 55 --- 260 + 55 --- 261 + 55 --- 262 + 55 --- 263 + 55 --- 264 + 55 --- 265 + 55 --- 266 + 55 --- 267 + 55 --- 268 + 55 --- 269 + 55 --- 270 + 55 --- 271 + 55 --- 272 + 55 --- 273 + 55 --- 314 + 55 ---- 347 + 56 --- 274 + 56 --- 277 + 56 --- 279 + 56 --- 281 + 56 --- 299 + 56 ---- 348 + 57 --- 275 + 57 --- 276 + 57 --- 278 + 57 --- 280 + 57 --- 316 + 57 ---- 349 + 58 --- 282 + 58 --- 284 + 58 --- 286 + 58 --- 289 + 58 --- 292 + 58 ---- 350 + 59 --- 283 + 59 --- 285 + 59 --- 287 + 59 --- 288 + 59 --- 311 + 59 ---- 351 + 60 --- 411 + 60 x--> 567 + 60 --- 676 + 60 --- 883 + 60 --- 1036 + 61 --- 410 + 61 x--> 567 + 61 --- 678 + 61 --- 885 + 62 --- 409 + 62 x--> 567 + 62 --- 677 + 62 --- 884 + 62 --- 1037 + 63 --- 412 + 63 x--> 567 + 63 --- 675 + 63 --- 886 + 65 x--> 412 + 65 --- 519 + 65 --- 785 + 65 --- 993 + 66 x--> 412 + 66 --- 482 + 66 --- 748 + 66 --- 956 + 67 --- 408 + 67 x--> 412 + 67 --- 674 + 67 --- 882 + 68 x--> 412 + 68 --- 445 + 68 --- 711 + 68 --- 919 + 69 --- 400 + 69 x--> 566 + 69 --- 672 + 69 --- 876 + 70 --- 429 + 70 x--> 569 + 70 --- 701 + 70 --- 909 + 71 --- 484 + 71 x--> 576 + 71 --- 754 + 71 --- 959 + 72 --- 369 + 72 x--> 562 + 72 --- 641 + 72 --- 843 + 73 --- 451 + 73 x--> 572 + 73 --- 723 + 73 --- 930 + 74 --- 354 + 74 x--> 560 + 74 --- 625 + 74 --- 827 + 75 --- 438 + 75 x--> 570 + 75 --- 706 + 75 --- 917 + 76 --- 393 + 76 x--> 565 + 76 --- 660 + 76 --- 872 + 77 --- 462 + 77 x--> 573 + 77 --- 727 + 77 --- 932 + 78 --- 501 + 78 x--> 578 + 78 --- 770 + 78 --- 973 + 79 --- 469 + 79 x--> 574 + 79 --- 739 + 79 --- 942 + 80 --- 537 + 80 x--> 583 + 80 --- 804 + 80 --- 1012 + 81 --- 544 + 81 x--> 584 + 81 --- 813 + 81 --- 1016 + 82 --- 554 + 82 x--> 585 + 82 --- 815 + 82 --- 1029 + 83 --- 380 + 83 x--> 563 + 83 --- 644 + 83 --- 856 + 84 --- 527 + 84 x--> 581 + 84 --- 792 + 84 --- 1001 + 85 --- 518 + 85 x--> 580 + 85 --- 778 + 85 --- 986 + 86 --- 481 + 86 x--> 575 + 86 --- 743 + 86 --- 952 + 87 --- 367 + 87 x--> 561 + 87 --- 630 + 87 --- 841 + 88 --- 497 + 88 x--> 577 + 88 --- 757 + 88 --- 965 + 89 --- 391 + 89 x--> 564 + 89 --- 654 + 89 --- 858 + 90 --- 540 + 90 x--> 584 + 90 --- 811 + 90 --- 1020 + 91 --- 401 + 91 x--> 566 + 91 --- 670 + 91 --- 880 + 92 --- 368 + 92 x--> 562 + 92 --- 640 + 92 --- 845 + 93 --- 533 + 93 x--> 583 + 93 --- 805 + 93 --- 1009 + 94 --- 483 + 94 x--> 576 + 94 --- 756 + 94 --- 961 + 95 --- 452 + 95 x--> 572 + 95 --- 717 + 95 --- 929 + 96 --- 524 + 96 x--> 581 + 96 --- 788 + 96 --- 1000 + 97 --- 550 + 97 x--> 585 + 97 --- 817 + 97 --- 1022 + 98 --- 355 + 98 x--> 560 + 98 --- 622 + 98 --- 833 + 99 --- 442 + 99 x--> 570 + 99 --- 703 + 99 --- 911 + 100 --- 388 + 100 x--> 564 + 100 --- 655 + 100 --- 865 + 101 --- 494 + 101 x--> 577 + 101 --- 758 + 101 --- 970 + 102 --- 478 + 102 x--> 575 + 102 --- 747 + 102 --- 950 + 103 --- 434 + 103 x--> 569 + 103 --- 695 + 103 --- 905 + 104 --- 470 + 104 x--> 574 + 104 --- 733 + 104 --- 946 + 105 --- 516 + 105 x--> 580 + 105 --- 783 + 105 --- 990 + 106 --- 379 + 106 x--> 563 + 106 --- 643 + 106 --- 853 + 107 --- 366 + 107 x--> 561 + 107 --- 627 + 107 --- 837 + 108 --- 396 + 108 x--> 565 + 108 --- 664 + 108 --- 869 + 109 --- 465 + 109 x--> 573 + 109 --- 724 + 109 --- 935 + 110 --- 506 + 110 x--> 578 + 110 --- 769 + 110 --- 974 + 111 --- 541 + 111 x--> 584 + 111 --- 806 + 111 --- 1021 + 112 --- 521 + 112 x--> 581 + 112 --- 789 + 112 --- 994 + 113 --- 493 + 113 x--> 577 + 113 --- 764 + 113 --- 968 + 114 --- 460 + 114 x--> 573 + 114 --- 731 + 114 --- 937 + 115 --- 372 + 115 x--> 562 + 115 --- 639 + 115 --- 847 + 116 --- 364 + 116 x--> 561 + 116 --- 633 + 116 --- 840 + 117 --- 357 + 117 x--> 560 + 117 --- 618 + 117 --- 831 + 118 --- 502 + 118 x--> 578 + 118 --- 771 + 118 --- 980 + 119 --- 479 + 119 x--> 575 + 119 --- 742 + 119 --- 949 + 120 --- 515 + 120 x--> 580 + 120 --- 781 + 120 --- 991 + 121 --- 443 + 121 x--> 570 + 121 --- 708 + 121 --- 913 + 122 --- 488 + 122 x--> 576 + 122 --- 753 + 122 --- 958 + 123 --- 435 + 123 x--> 569 + 123 --- 699 + 123 --- 906 + 124 --- 538 + 124 x--> 583 + 124 --- 802 + 124 --- 1006 + 125 --- 381 + 125 x--> 563 + 125 --- 646 + 125 --- 850 + 126 --- 555 + 126 x--> 585 + 126 --- 818 + 126 --- 1023 + 127 --- 407 + 127 x--> 566 + 127 --- 667 + 127 --- 881 + 128 --- 455 + 128 x--> 572 + 128 --- 716 + 128 --- 924 + 129 --- 390 + 129 x--> 564 + 129 --- 652 + 129 --- 859 + 130 --- 399 + 130 x--> 565 + 130 --- 665 + 130 --- 866 + 131 --- 473 + 131 x--> 574 + 131 --- 737 + 131 --- 944 + 132 --- 511 + 132 x--> 580 + 132 --- 777 + 132 --- 992 + 133 --- 520 + 133 x--> 581 + 133 --- 791 + 133 --- 998 + 134 --- 361 + 134 x--> 561 + 134 --- 631 + 134 --- 835 + 135 --- 385 + 135 x--> 564 + 135 --- 657 + 135 --- 860 + 136 --- 542 + 136 x--> 584 + 136 --- 808 + 136 --- 1018 + 137 --- 549 + 137 x--> 585 + 137 --- 819 + 137 --- 1026 + 138 --- 371 + 138 x--> 562 + 138 --- 634 + 138 --- 844 + 139 --- 535 + 139 x--> 583 + 139 --- 800 + 139 --- 1010 + 140 --- 440 + 140 x--> 570 + 140 --- 709 + 140 --- 916 + 141 --- 356 + 141 x--> 560 + 141 --- 624 + 141 --- 830 + 142 --- 463 + 142 x--> 573 + 142 --- 730 + 142 --- 939 + 143 --- 433 + 143 x--> 569 + 143 --- 696 + 143 --- 910 + 144 --- 405 + 144 x--> 566 + 144 --- 673 + 144 --- 878 + 145 --- 504 + 145 x--> 578 + 145 --- 767 + 145 --- 975 + 146 --- 489 + 146 x--> 576 + 146 --- 749 + 146 --- 957 + 147 --- 397 + 147 x--> 565 + 147 --- 659 + 147 --- 867 + 148 --- 454 + 148 x--> 572 + 148 --- 721 + 148 --- 926 + 149 --- 471 + 149 x--> 574 + 149 --- 736 + 149 --- 943 + 150 --- 480 + 150 x--> 575 + 150 --- 746 + 150 --- 955 + 151 --- 383 + 151 x--> 563 + 151 --- 649 + 151 --- 857 + 152 --- 498 + 152 x--> 577 + 152 --- 761 + 152 --- 971 + 153 --- 458 + 153 x--> 573 + 153 --- 729 + 153 --- 934 + 154 --- 485 + 154 x--> 576 + 154 --- 750 + 154 --- 964 + 155 --- 363 + 155 x--> 561 + 155 --- 629 + 155 --- 836 + 156 --- 467 + 156 x--> 574 + 156 --- 732 + 156 --- 940 + 157 --- 522 + 157 x--> 581 + 157 --- 790 + 157 --- 996 + 158 --- 386 + 158 x--> 564 + 158 --- 656 + 158 --- 862 + 159 --- 553 + 159 x--> 585 + 159 --- 814 + 159 --- 1027 + 160 --- 378 + 160 x--> 563 + 160 --- 645 + 160 --- 854 + 161 --- 543 + 161 x--> 584 + 161 --- 810 + 161 --- 1017 + 162 --- 373 + 162 x--> 562 + 162 --- 636 + 162 --- 849 + 163 --- 402 + 163 x--> 566 + 163 --- 666 + 163 --- 875 + 164 --- 477 + 164 x--> 575 + 164 --- 740 + 164 --- 954 + 165 --- 517 + 165 x--> 580 + 165 --- 782 + 165 --- 988 + 166 --- 505 + 166 x--> 578 + 166 --- 772 + 166 --- 976 + 167 --- 444 + 167 x--> 570 + 167 --- 710 + 167 --- 915 + 168 --- 539 + 168 x--> 583 + 168 --- 799 + 168 --- 1013 + 169 --- 398 + 169 x--> 565 + 169 --- 662 + 169 --- 868 + 170 --- 358 + 170 x--> 560 + 170 --- 619 + 170 --- 826 + 171 --- 496 + 171 x--> 577 + 171 --- 763 + 171 --- 972 + 172 --- 457 + 172 x--> 572 + 172 --- 722 + 172 --- 925 + 173 --- 436 + 173 x--> 569 + 173 --- 702 + 173 --- 903 + 174 --- 474 + 174 x--> 575 + 174 --- 741 + 174 --- 951 + 175 --- 466 + 175 x--> 574 + 175 --- 738 + 175 --- 947 + 176 --- 376 + 176 x--> 563 + 176 --- 647 + 176 --- 851 + 177 --- 352 + 177 x--> 560 + 177 --- 623 + 177 --- 832 + 178 --- 450 + 178 x--> 572 + 178 --- 720 + 178 --- 928 + 179 --- 431 + 179 x--> 569 + 179 --- 697 + 179 --- 904 + 180 --- 551 + 180 x--> 585 + 180 --- 821 + 180 --- 1028 + 181 --- 439 + 181 x--> 570 + 181 --- 704 + 181 --- 914 + 182 --- 461 + 182 x--> 573 + 182 --- 728 + 182 --- 933 + 183 --- 387 + 183 x--> 564 + 183 --- 650 + 183 --- 861 + 184 --- 536 + 184 x--> 583 + 184 --- 803 + 184 --- 1011 + 185 --- 403 + 185 x--> 566 + 185 --- 668 + 185 --- 879 + 186 --- 525 + 186 x--> 581 + 186 --- 787 + 186 --- 999 + 187 --- 513 + 187 x--> 580 + 187 --- 779 + 187 --- 987 + 188 --- 503 + 188 x--> 578 + 188 --- 766 + 188 --- 979 + 189 --- 365 + 189 x--> 561 + 189 --- 628 + 189 --- 834 + 190 --- 395 + 190 x--> 565 + 190 --- 663 + 190 --- 870 + 191 --- 495 + 191 x--> 577 + 191 --- 760 + 191 --- 967 + 192 --- 490 + 192 x--> 576 + 192 --- 755 + 192 --- 962 + 193 --- 375 + 193 x--> 562 + 193 --- 638 + 193 --- 848 + 194 --- 547 + 194 x--> 584 + 194 --- 807 + 194 --- 1015 + 195 --- 532 + 195 x--> 583 + 195 --- 801 + 195 --- 1008 + 196 --- 548 + 196 x--> 585 + 196 --- 820 + 196 --- 1024 + 197 --- 492 + 197 x--> 577 + 197 --- 759 + 197 --- 969 + 198 --- 362 + 198 x--> 561 + 198 --- 626 + 198 --- 839 + 199 --- 459 + 199 x--> 573 + 199 --- 726 + 199 --- 936 + 200 --- 475 + 200 x--> 575 + 200 --- 745 + 200 --- 948 + 201 --- 392 + 201 x--> 565 + 201 --- 661 + 201 --- 873 + 202 --- 500 + 202 x--> 578 + 202 --- 768 + 202 --- 978 + 203 --- 370 + 203 x--> 562 + 203 --- 637 + 203 --- 846 + 204 --- 377 + 204 x--> 563 + 204 --- 642 + 204 --- 855 + 205 --- 432 + 205 x--> 569 + 205 --- 700 + 205 --- 907 + 206 --- 441 + 206 x--> 570 + 206 --- 705 + 206 --- 918 + 207 --- 453 + 207 x--> 572 + 207 --- 719 + 207 --- 931 + 208 --- 512 + 208 x--> 580 + 208 --- 784 + 208 --- 989 + 209 --- 526 + 209 x--> 581 + 209 --- 793 + 209 --- 995 + 210 --- 404 + 210 x--> 566 + 210 --- 669 + 210 --- 877 + 211 --- 389 + 211 x--> 564 + 211 --- 651 + 211 --- 864 + 212 --- 487 + 212 x--> 576 + 212 --- 752 + 212 --- 963 + 213 --- 545 + 213 x--> 584 + 213 --- 809 + 213 --- 1019 + 214 --- 472 + 214 x--> 574 + 214 --- 735 + 214 --- 941 + 215 --- 359 + 215 x--> 560 + 215 --- 621 + 215 --- 829 + 216 --- 360 + 216 x--> 561 + 216 --- 632 + 216 --- 838 + 217 --- 491 + 217 x--> 577 + 217 --- 762 + 217 --- 966 + 218 --- 499 + 218 x--> 578 + 218 --- 765 + 218 --- 977 + 219 --- 353 + 219 x--> 560 + 219 --- 620 + 219 --- 828 + 220 --- 430 + 220 x--> 569 + 220 --- 698 + 220 --- 908 + 221 --- 384 + 221 x--> 564 + 221 --- 653 + 221 --- 863 + 222 --- 534 + 222 x--> 583 + 222 --- 798 + 222 --- 1007 + 223 --- 437 + 223 x--> 570 + 223 --- 707 + 223 --- 912 + 224 --- 523 + 224 x--> 581 + 224 --- 786 + 224 --- 997 + 225 --- 552 + 225 x--> 585 + 225 --- 816 + 225 --- 1025 + 226 --- 476 + 226 x--> 575 + 226 --- 744 + 226 --- 953 + 227 --- 468 + 227 x--> 574 + 227 --- 734 + 227 --- 945 + 228 --- 394 + 228 x--> 565 + 228 --- 658 + 228 --- 871 + 229 --- 374 + 229 x--> 562 + 229 --- 635 + 229 --- 842 + 230 --- 464 + 230 x--> 573 + 230 --- 725 + 230 --- 938 + 231 --- 514 + 231 x--> 580 + 231 --- 780 + 231 --- 985 + 232 --- 486 + 232 x--> 576 + 232 --- 751 + 232 --- 960 + 233 --- 406 + 233 x--> 566 + 233 --- 671 + 233 --- 874 + 234 --- 456 + 234 x--> 572 + 234 --- 718 + 234 --- 927 + 235 --- 382 + 235 x--> 563 + 235 --- 648 + 235 --- 852 + 236 --- 546 + 236 x--> 584 + 236 --- 812 + 236 --- 1014 + 258 --- 417 + 258 x--> 596 + 258 --- 680 + 258 --- 887 + 259 --- 413 + 259 x--> 596 + 259 --- 689 + 259 --- 890 + 260 --- 424 + 260 x--> 596 + 260 --- 692 + 260 --- 894 + 261 --- 419 + 261 x--> 596 + 261 --- 686 + 261 --- 897 + 262 --- 420 + 262 x--> 596 + 262 --- 679 + 262 --- 902 + 263 --- 426 + 263 x--> 596 + 263 --- 693 + 263 --- 901 + 264 --- 415 + 264 x--> 596 + 264 --- 684 + 264 --- 896 + 265 --- 422 + 265 x--> 596 + 265 --- 687 + 265 --- 899 + 266 --- 414 + 266 x--> 596 + 266 --- 681 + 266 --- 895 + 267 --- 428 + 267 x--> 596 + 267 --- 685 + 267 --- 889 + 268 --- 427 + 268 x--> 596 + 268 --- 694 + 268 --- 900 + 269 --- 418 + 269 x--> 596 + 269 --- 682 + 269 --- 888 + 270 --- 416 + 270 x--> 596 + 270 --- 683 + 270 --- 893 + 271 --- 425 + 271 x--> 596 + 271 --- 690 + 271 --- 891 + 272 --- 423 + 272 x--> 596 + 272 --- 691 + 272 --- 898 + 273 --- 421 + 273 x--> 596 + 273 --- 688 + 273 --- 892 + 274 --- 446 + 274 x--> 600 + 274 --- 715 + 274 --- 920 + 275 --- 559 + 275 x--> 617 + 275 --- 823 + 275 --- 1032 + 276 --- 556 + 276 x--> 617 + 276 --- 822 + 276 --- 1031 + 277 --- 447 + 277 x--> 600 + 277 --- 714 + 277 --- 923 + 278 --- 558 + 278 x--> 617 + 278 --- 825 + 278 --- 1030 + 279 --- 449 + 279 x--> 600 + 279 --- 712 + 279 --- 921 + 280 --- 557 + 280 x--> 617 + 280 --- 824 + 280 --- 1033 + 281 --- 448 + 281 x--> 600 + 281 --- 713 + 281 --- 922 + 282 --- 509 + 282 x--> 609 + 282 --- 775 + 282 --- 981 + 283 --- 529 + 283 x--> 613 + 283 --- 796 + 283 --- 1005 + 284 --- 507 + 284 x--> 609 + 284 --- 774 + 284 --- 984 + 285 --- 530 + 285 x--> 613 + 285 --- 795 + 285 --- 1002 + 286 --- 510 + 286 x--> 609 + 286 --- 776 + 286 --- 982 + 287 --- 531 + 287 x--> 613 + 287 --- 797 + 287 --- 1003 + 288 --- 528 + 288 x--> 613 + 288 --- 794 + 288 --- 1004 + 289 --- 508 + 289 x--> 609 + 289 --- 773 + 289 --- 983 + 321 --- 409 + 321 --- 410 + 321 --- 411 + 321 --- 412 + 321 --- 567 + 321 --- 595 + 321 --- 675 + 321 --- 676 + 321 --- 677 + 321 --- 678 + 321 --- 883 + 321 --- 884 + 321 --- 885 + 321 --- 886 + 322 --- 408 + 322 --- 594 + 322 --- 674 + 322 --- 882 + 323 --- 445 + 323 --- 599 + 323 --- 711 + 323 --- 919 + 324 --- 482 + 324 --- 605 + 324 --- 748 + 324 --- 956 + 325 --- 519 + 325 --- 611 + 325 --- 785 + 325 --- 993 + 326 --- 352 + 326 --- 353 + 326 --- 354 + 326 --- 355 + 326 --- 356 + 326 --- 357 + 326 --- 358 + 326 --- 359 + 326 --- 560 + 326 --- 587 + 326 --- 618 + 326 --- 619 + 326 --- 620 + 326 --- 621 + 326 --- 622 + 326 --- 623 + 326 --- 624 + 326 --- 625 + 326 --- 826 + 326 --- 827 + 326 --- 828 + 326 --- 829 + 326 --- 830 + 326 --- 831 + 326 --- 832 + 326 --- 833 + 327 --- 360 + 327 --- 361 + 327 --- 362 + 327 --- 363 + 327 --- 364 + 327 --- 365 + 327 --- 366 + 327 --- 367 + 327 --- 561 + 327 --- 588 + 327 --- 626 + 327 --- 627 + 327 --- 628 + 327 --- 629 + 327 --- 630 + 327 --- 631 + 327 --- 632 + 327 --- 633 + 327 --- 834 + 327 --- 835 + 327 --- 836 + 327 --- 837 + 327 --- 838 + 327 --- 839 + 327 --- 840 + 327 --- 841 + 328 --- 368 + 328 --- 369 + 328 --- 370 + 328 --- 371 + 328 --- 372 + 328 --- 373 + 328 --- 374 + 328 --- 375 + 328 --- 562 + 328 --- 589 + 328 --- 634 + 328 --- 635 + 328 --- 636 + 328 --- 637 + 328 --- 638 + 328 --- 639 + 328 --- 640 + 328 --- 641 + 328 --- 842 + 328 --- 843 + 328 --- 844 + 328 --- 845 + 328 --- 846 + 328 --- 847 + 328 --- 848 + 328 --- 849 + 329 --- 376 + 329 --- 377 + 329 --- 378 + 329 --- 379 + 329 --- 380 + 329 --- 381 + 329 --- 382 + 329 --- 383 + 329 --- 563 + 329 --- 590 + 329 --- 642 + 329 --- 643 + 329 --- 644 + 329 --- 645 + 329 --- 646 + 329 --- 647 + 329 --- 648 + 329 --- 649 + 329 --- 850 + 329 --- 851 + 329 --- 852 + 329 --- 853 + 329 --- 854 + 329 --- 855 + 329 --- 856 + 329 --- 857 + 330 --- 384 + 330 --- 385 + 330 --- 386 + 330 --- 387 + 330 --- 388 + 330 --- 389 + 330 --- 390 + 330 --- 391 + 330 --- 564 + 330 --- 591 + 330 --- 650 + 330 --- 651 + 330 --- 652 + 330 --- 653 + 330 --- 654 + 330 --- 655 + 330 --- 656 + 330 --- 657 + 330 --- 858 + 330 --- 859 + 330 --- 860 + 330 --- 861 + 330 --- 862 + 330 --- 863 + 330 --- 864 + 330 --- 865 + 331 --- 392 + 331 --- 393 + 331 --- 394 + 331 --- 395 + 331 --- 396 + 331 --- 397 + 331 --- 398 + 331 --- 399 + 331 --- 565 + 331 --- 592 + 331 --- 658 + 331 --- 659 + 331 --- 660 + 331 --- 661 + 331 --- 662 + 331 --- 663 + 331 --- 664 + 331 --- 665 + 331 --- 866 + 331 --- 867 + 331 --- 868 + 331 --- 869 + 331 --- 870 + 331 --- 871 + 331 --- 872 + 331 --- 873 + 332 --- 400 + 332 --- 401 + 332 --- 402 + 332 --- 403 + 332 --- 404 + 332 --- 405 + 332 --- 406 + 332 --- 407 + 332 --- 566 + 332 --- 593 + 332 --- 666 + 332 --- 667 + 332 --- 668 + 332 --- 669 + 332 --- 670 + 332 --- 671 + 332 --- 672 + 332 --- 673 + 332 --- 874 + 332 --- 875 + 332 --- 876 + 332 --- 877 + 332 --- 878 + 332 --- 879 + 332 --- 880 + 332 --- 881 + 333 --- 429 + 333 --- 430 + 333 --- 431 + 333 --- 432 + 333 --- 433 + 333 --- 434 + 333 --- 435 + 333 --- 436 + 333 --- 569 + 333 --- 597 + 333 --- 695 + 333 --- 696 + 333 --- 697 + 333 --- 698 + 333 --- 699 + 333 --- 700 + 333 --- 701 + 333 --- 702 + 333 --- 903 + 333 --- 904 + 333 --- 905 + 333 --- 906 + 333 --- 907 + 333 --- 908 + 333 --- 909 + 333 --- 910 + 334 --- 437 + 334 --- 438 + 334 --- 439 + 334 --- 440 + 334 --- 441 + 334 --- 442 + 334 --- 443 + 334 --- 444 + 334 --- 570 + 334 --- 598 + 334 --- 703 + 334 --- 704 + 334 --- 705 + 334 --- 706 + 334 --- 707 + 334 --- 708 + 334 --- 709 + 334 --- 710 + 334 --- 911 + 334 --- 912 + 334 --- 913 + 334 --- 914 + 334 --- 915 + 334 --- 916 + 334 --- 917 + 334 --- 918 + 335 --- 450 + 335 --- 451 + 335 --- 452 + 335 --- 453 + 335 --- 454 + 335 --- 455 + 335 --- 456 + 335 --- 457 + 335 --- 572 + 335 --- 601 + 335 --- 716 + 335 --- 717 + 335 --- 718 + 335 --- 719 + 335 --- 720 + 335 --- 721 + 335 --- 722 + 335 --- 723 + 335 --- 924 + 335 --- 925 + 335 --- 926 + 335 --- 927 + 335 --- 928 + 335 --- 929 + 335 --- 930 + 335 --- 931 + 336 --- 458 + 336 --- 459 + 336 --- 460 + 336 --- 461 + 336 --- 462 + 336 --- 463 + 336 --- 464 + 336 --- 465 + 336 --- 573 + 336 --- 602 + 336 --- 724 + 336 --- 725 + 336 --- 726 + 336 --- 727 + 336 --- 728 + 336 --- 729 + 336 --- 730 + 336 --- 731 + 336 --- 932 + 336 --- 933 + 336 --- 934 + 336 --- 935 + 336 --- 936 + 336 --- 937 + 336 --- 938 + 336 --- 939 + 337 --- 466 + 337 --- 467 + 337 --- 468 + 337 --- 469 + 337 --- 470 + 337 --- 471 + 337 --- 472 + 337 --- 473 + 337 --- 574 + 337 --- 603 + 337 --- 732 + 337 --- 733 + 337 --- 734 + 337 --- 735 + 337 --- 736 + 337 --- 737 + 337 --- 738 + 337 --- 739 + 337 --- 940 + 337 --- 941 + 337 --- 942 + 337 --- 943 + 337 --- 944 + 337 --- 945 + 337 --- 946 + 337 --- 947 + 338 --- 474 + 338 --- 475 + 338 --- 476 + 338 --- 477 + 338 --- 478 + 338 --- 479 + 338 --- 480 + 338 --- 481 + 338 --- 575 + 338 --- 604 + 338 --- 740 + 338 --- 741 + 338 --- 742 + 338 --- 743 + 338 --- 744 + 338 --- 745 + 338 --- 746 + 338 --- 747 + 338 --- 948 + 338 --- 949 + 338 --- 950 + 338 --- 951 + 338 --- 952 + 338 --- 953 + 338 --- 954 + 338 --- 955 + 339 --- 483 + 339 --- 484 + 339 --- 485 + 339 --- 486 + 339 --- 487 + 339 --- 488 + 339 --- 489 + 339 --- 490 + 339 --- 576 + 339 --- 606 + 339 --- 749 + 339 --- 750 + 339 --- 751 + 339 --- 752 + 339 --- 753 + 339 --- 754 + 339 --- 755 + 339 --- 756 + 339 --- 957 + 339 --- 958 + 339 --- 959 + 339 --- 960 + 339 --- 961 + 339 --- 962 + 339 --- 963 + 339 --- 964 + 340 --- 491 + 340 --- 492 + 340 --- 493 + 340 --- 494 + 340 --- 495 + 340 --- 496 + 340 --- 497 + 340 --- 498 + 340 --- 577 + 340 --- 607 + 340 --- 757 + 340 --- 758 + 340 --- 759 + 340 --- 760 + 340 --- 761 + 340 --- 762 + 340 --- 763 + 340 --- 764 + 340 --- 965 + 340 --- 966 + 340 --- 967 + 340 --- 968 + 340 --- 969 + 340 --- 970 + 340 --- 971 + 340 --- 972 + 341 --- 499 + 341 --- 500 + 341 --- 501 + 341 --- 502 + 341 --- 503 + 341 --- 504 + 341 --- 505 + 341 --- 506 + 341 --- 578 + 341 --- 608 + 341 --- 765 + 341 --- 766 + 341 --- 767 + 341 --- 768 + 341 --- 769 + 341 --- 770 + 341 --- 771 + 341 --- 772 + 341 --- 973 + 341 --- 974 + 341 --- 975 + 341 --- 976 + 341 --- 977 + 341 --- 978 + 341 --- 979 + 341 --- 980 + 342 --- 511 + 342 --- 512 + 342 --- 513 + 342 --- 514 + 342 --- 515 + 342 --- 516 + 342 --- 517 + 342 --- 518 + 342 --- 580 + 342 --- 610 + 342 --- 777 + 342 --- 778 + 342 --- 779 + 342 --- 780 + 342 --- 781 + 342 --- 782 + 342 --- 783 + 342 --- 784 + 342 --- 985 + 342 --- 986 + 342 --- 987 + 342 --- 988 + 342 --- 989 + 342 --- 990 + 342 --- 991 + 342 --- 992 + 343 --- 520 + 343 --- 521 + 343 --- 522 + 343 --- 523 + 343 --- 524 + 343 --- 525 + 343 --- 526 + 343 --- 527 + 343 --- 581 + 343 --- 612 + 343 --- 786 + 343 --- 787 + 343 --- 788 + 343 --- 789 + 343 --- 790 + 343 --- 791 + 343 --- 792 + 343 --- 793 + 343 --- 994 + 343 --- 995 + 343 --- 996 + 343 --- 997 + 343 --- 998 + 343 --- 999 + 343 --- 1000 + 343 --- 1001 + 344 --- 532 + 344 --- 533 + 344 --- 534 + 344 --- 535 + 344 --- 536 + 344 --- 537 + 344 --- 538 + 344 --- 539 + 344 --- 583 + 344 --- 614 + 344 --- 798 + 344 --- 799 + 344 --- 800 + 344 --- 801 + 344 --- 802 + 344 --- 803 + 344 --- 804 + 344 --- 805 + 344 --- 1006 + 344 --- 1007 + 344 --- 1008 + 344 --- 1009 + 344 --- 1010 + 344 --- 1011 + 344 --- 1012 + 344 --- 1013 + 345 --- 540 + 345 --- 541 + 345 --- 542 + 345 --- 543 + 345 --- 544 + 345 --- 545 + 345 --- 546 + 345 --- 547 + 345 --- 584 + 345 --- 615 + 345 --- 806 + 345 --- 807 + 345 --- 808 + 345 --- 809 + 345 --- 810 + 345 --- 811 + 345 --- 812 + 345 --- 813 + 345 --- 1014 + 345 --- 1015 + 345 --- 1016 + 345 --- 1017 + 345 --- 1018 + 345 --- 1019 + 345 --- 1020 + 345 --- 1021 + 346 --- 548 + 346 --- 549 + 346 --- 550 + 346 --- 551 + 346 --- 552 + 346 --- 553 + 346 --- 554 + 346 --- 555 + 346 --- 585 + 346 --- 616 + 346 --- 814 + 346 --- 815 + 346 --- 816 + 346 --- 817 + 346 --- 818 + 346 --- 819 + 346 --- 820 + 346 --- 821 + 346 --- 1022 + 346 --- 1023 + 346 --- 1024 + 346 --- 1025 + 346 --- 1026 + 346 --- 1027 + 346 --- 1028 + 346 --- 1029 + 347 --- 413 + 347 --- 414 + 347 --- 415 + 347 --- 416 + 347 --- 417 + 347 --- 418 + 347 --- 419 + 347 --- 420 + 347 --- 421 + 347 --- 422 + 347 --- 423 + 347 --- 424 + 347 --- 425 + 347 --- 426 + 347 --- 427 + 347 --- 428 + 347 --- 568 + 347 --- 596 + 347 --- 679 + 347 --- 680 + 347 --- 681 + 347 --- 682 + 347 --- 683 + 347 --- 684 + 347 --- 685 + 347 --- 686 + 347 --- 687 + 347 --- 688 + 347 --- 689 + 347 --- 690 + 347 --- 691 + 347 --- 692 + 347 --- 693 + 347 --- 694 + 347 --- 887 + 347 --- 888 + 347 --- 889 + 347 --- 890 + 347 --- 891 + 347 --- 892 + 347 --- 893 + 347 --- 894 + 347 --- 895 + 347 --- 896 + 347 --- 897 + 347 --- 898 + 347 --- 899 + 347 --- 900 + 347 --- 901 + 347 --- 902 + 348 --- 446 + 348 --- 447 + 348 --- 448 + 348 --- 449 + 348 --- 571 + 348 --- 600 + 348 --- 712 + 348 --- 713 + 348 --- 714 + 348 --- 715 + 348 --- 920 + 348 --- 921 + 348 --- 922 + 348 --- 923 + 349 --- 556 + 349 --- 557 + 349 --- 558 + 349 --- 559 + 349 --- 586 + 349 --- 617 + 349 --- 822 + 349 --- 823 + 349 --- 824 + 349 --- 825 + 349 --- 1030 + 349 --- 1031 + 349 --- 1032 + 349 --- 1033 + 350 --- 507 + 350 --- 508 + 350 --- 509 + 350 --- 510 + 350 --- 579 + 350 --- 609 + 350 --- 773 + 350 --- 774 + 350 --- 775 + 350 --- 776 + 350 --- 981 + 350 --- 982 + 350 --- 983 + 350 --- 984 + 351 --- 528 + 351 --- 529 + 351 --- 530 + 351 --- 531 + 351 --- 582 + 351 --- 613 + 351 --- 794 + 351 --- 795 + 351 --- 796 + 351 --- 797 + 351 --- 1002 + 351 --- 1003 + 351 --- 1004 + 351 --- 1005 + 623 <--x 352 + 826 <--x 352 + 832 <--x 352 + 620 <--x 353 + 828 <--x 353 + 829 <--x 353 + 625 <--x 354 + 827 <--x 354 + 828 <--x 354 + 622 <--x 355 + 827 <--x 355 + 833 <--x 355 + 624 <--x 356 + 830 <--x 356 + 831 <--x 356 + 618 <--x 357 + 831 <--x 357 + 833 <--x 357 + 619 <--x 358 + 826 <--x 358 + 830 <--x 358 + 621 <--x 359 + 829 <--x 359 + 832 <--x 359 + 632 <--x 360 + 838 <--x 360 + 839 <--x 360 + 631 <--x 361 + 835 <--x 361 + 840 <--x 361 + 626 <--x 362 + 834 <--x 362 + 839 <--x 362 + 629 <--x 363 + 835 <--x 363 + 836 <--x 363 + 633 <--x 364 + 837 <--x 364 + 840 <--x 364 + 628 <--x 365 + 834 <--x 365 + 836 <--x 365 + 627 <--x 366 + 837 <--x 366 + 841 <--x 366 + 630 <--x 367 + 838 <--x 367 + 841 <--x 367 + 640 <--x 368 + 843 <--x 368 + 845 <--x 368 + 641 <--x 369 + 842 <--x 369 + 843 <--x 369 + 637 <--x 370 + 846 <--x 370 + 848 <--x 370 + 634 <--x 371 + 844 <--x 371 + 847 <--x 371 + 639 <--x 372 + 845 <--x 372 + 847 <--x 372 + 636 <--x 373 + 844 <--x 373 + 849 <--x 373 + 635 <--x 374 + 842 <--x 374 + 846 <--x 374 + 638 <--x 375 + 848 <--x 375 + 849 <--x 375 + 647 <--x 376 + 851 <--x 376 + 854 <--x 376 + 642 <--x 377 + 851 <--x 377 + 855 <--x 377 + 645 <--x 378 + 854 <--x 378 + 857 <--x 378 + 643 <--x 379 + 853 <--x 379 + 856 <--x 379 + 644 <--x 380 + 852 <--x 380 + 856 <--x 380 + 646 <--x 381 + 850 <--x 381 + 853 <--x 381 + 648 <--x 382 + 852 <--x 382 + 855 <--x 382 + 649 <--x 383 + 850 <--x 383 + 857 <--x 383 + 653 <--x 384 + 863 <--x 384 + 864 <--x 384 + 657 <--x 385 + 859 <--x 385 + 860 <--x 385 + 656 <--x 386 + 860 <--x 386 + 862 <--x 386 + 650 <--x 387 + 861 <--x 387 + 862 <--x 387 + 655 <--x 388 + 858 <--x 388 + 865 <--x 388 + 651 <--x 389 + 861 <--x 389 + 864 <--x 389 + 652 <--x 390 + 859 <--x 390 + 865 <--x 390 + 654 <--x 391 + 858 <--x 391 + 863 <--x 391 + 661 <--x 392 + 870 <--x 392 + 873 <--x 392 + 660 <--x 393 + 871 <--x 393 + 872 <--x 393 + 658 <--x 394 + 871 <--x 394 + 873 <--x 394 + 663 <--x 395 + 868 <--x 395 + 870 <--x 395 + 664 <--x 396 + 869 <--x 396 + 872 <--x 396 + 659 <--x 397 + 866 <--x 397 + 867 <--x 397 + 662 <--x 398 + 867 <--x 398 + 868 <--x 398 + 665 <--x 399 + 866 <--x 399 + 869 <--x 399 + 672 <--x 400 + 874 <--x 400 + 876 <--x 400 + 670 <--x 401 + 876 <--x 401 + 880 <--x 401 + 666 <--x 402 + 875 <--x 402 + 878 <--x 402 + 668 <--x 403 + 875 <--x 403 + 879 <--x 403 + 669 <--x 404 + 877 <--x 404 + 879 <--x 404 + 673 <--x 405 + 878 <--x 405 + 881 <--x 405 + 671 <--x 406 + 874 <--x 406 + 877 <--x 406 + 667 <--x 407 + 880 <--x 407 + 881 <--x 407 + 674 <--x 408 + 882 <--x 408 + 884 <--x 409 + 885 <--x 409 + 678 <--x 410 + 883 <--x 410 + 885 <--x 410 + 883 <--x 411 + 886 <--x 411 + 675 <--x 412 + 884 <--x 412 + 886 <--x 412 + 689 <--x 413 + 887 <--x 413 + 890 <--x 413 + 681 <--x 414 + 895 <--x 414 + 899 <--x 414 + 684 <--x 415 + 896 <--x 415 + 901 <--x 415 + 683 <--x 416 + 888 <--x 416 + 893 <--x 416 + 680 <--x 417 + 887 <--x 417 + 892 <--x 417 + 682 <--x 418 + 888 <--x 418 + 900 <--x 418 + 686 <--x 419 + 894 <--x 419 + 897 <--x 419 + 679 <--x 420 + 897 <--x 420 + 902 <--x 420 + 688 <--x 421 + 892 <--x 421 + 898 <--x 421 + 687 <--x 422 + 896 <--x 422 + 899 <--x 422 + 691 <--x 423 + 891 <--x 423 + 898 <--x 423 + 692 <--x 424 + 890 <--x 424 + 894 <--x 424 + 690 <--x 425 + 891 <--x 425 + 893 <--x 425 + 693 <--x 426 + 901 <--x 426 + 902 <--x 426 + 694 <--x 427 + 889 <--x 427 + 900 <--x 427 + 685 <--x 428 + 889 <--x 428 + 895 <--x 428 + 701 <--x 429 + 908 <--x 429 + 909 <--x 429 + 698 <--x 430 + 907 <--x 430 + 908 <--x 430 + 697 <--x 431 + 903 <--x 431 + 904 <--x 431 + 700 <--x 432 + 904 <--x 432 + 907 <--x 432 + 696 <--x 433 + 906 <--x 433 + 910 <--x 433 + 695 <--x 434 + 905 <--x 434 + 909 <--x 434 + 699 <--x 435 + 905 <--x 435 + 906 <--x 435 + 702 <--x 436 + 903 <--x 436 + 910 <--x 436 + 707 <--x 437 + 912 <--x 437 + 918 <--x 437 + 706 <--x 438 + 912 <--x 438 + 917 <--x 438 + 704 <--x 439 + 914 <--x 439 + 915 <--x 439 + 709 <--x 440 + 913 <--x 440 + 916 <--x 440 + 705 <--x 441 + 914 <--x 441 + 918 <--x 441 + 703 <--x 442 + 911 <--x 442 + 917 <--x 442 + 708 <--x 443 + 911 <--x 443 + 913 <--x 443 + 710 <--x 444 + 915 <--x 444 + 916 <--x 444 + 711 <--x 445 + 919 <--x 445 + 715 <--x 446 + 920 <--x 446 + 922 <--x 446 + 714 <--x 447 + 920 <--x 447 + 923 <--x 447 + 713 <--x 448 + 921 <--x 448 + 922 <--x 448 + 712 <--x 449 + 921 <--x 449 + 923 <--x 449 + 720 <--x 450 + 925 <--x 450 + 928 <--x 450 + 723 <--x 451 + 927 <--x 451 + 930 <--x 451 + 717 <--x 452 + 929 <--x 452 + 930 <--x 452 + 719 <--x 453 + 928 <--x 453 + 931 <--x 453 + 721 <--x 454 + 924 <--x 454 + 926 <--x 454 + 716 <--x 455 + 924 <--x 455 + 929 <--x 455 + 718 <--x 456 + 927 <--x 456 + 931 <--x 456 + 722 <--x 457 + 925 <--x 457 + 926 <--x 457 + 729 <--x 458 + 934 <--x 458 + 939 <--x 458 + 726 <--x 459 + 933 <--x 459 + 936 <--x 459 + 731 <--x 460 + 935 <--x 460 + 937 <--x 460 + 728 <--x 461 + 933 <--x 461 + 934 <--x 461 + 727 <--x 462 + 932 <--x 462 + 938 <--x 462 + 730 <--x 463 + 937 <--x 463 + 939 <--x 463 + 725 <--x 464 + 936 <--x 464 + 938 <--x 464 + 724 <--x 465 + 932 <--x 465 + 935 <--x 465 + 738 <--x 466 + 940 <--x 466 + 947 <--x 466 + 732 <--x 467 + 940 <--x 467 + 943 <--x 467 + 734 <--x 468 + 941 <--x 468 + 945 <--x 468 + 739 <--x 469 + 942 <--x 469 + 945 <--x 469 + 733 <--x 470 + 942 <--x 470 + 946 <--x 470 + 736 <--x 471 + 943 <--x 471 + 944 <--x 471 + 735 <--x 472 + 941 <--x 472 + 947 <--x 472 + 737 <--x 473 + 944 <--x 473 + 946 <--x 473 + 741 <--x 474 + 951 <--x 474 + 954 <--x 474 + 745 <--x 475 + 948 <--x 475 + 951 <--x 475 + 744 <--x 476 + 948 <--x 476 + 953 <--x 476 + 740 <--x 477 + 954 <--x 477 + 955 <--x 477 + 747 <--x 478 + 950 <--x 478 + 952 <--x 478 + 742 <--x 479 + 949 <--x 479 + 950 <--x 479 + 746 <--x 480 + 949 <--x 480 + 955 <--x 480 + 743 <--x 481 + 952 <--x 481 + 953 <--x 481 + 748 <--x 482 + 956 <--x 482 + 756 <--x 483 + 959 <--x 483 + 961 <--x 483 + 754 <--x 484 + 959 <--x 484 + 960 <--x 484 + 750 <--x 485 + 957 <--x 485 + 964 <--x 485 + 751 <--x 486 + 960 <--x 486 + 963 <--x 486 + 752 <--x 487 + 962 <--x 487 + 963 <--x 487 + 753 <--x 488 + 958 <--x 488 + 961 <--x 488 + 749 <--x 489 + 957 <--x 489 + 958 <--x 489 + 755 <--x 490 + 962 <--x 490 + 964 <--x 490 + 762 <--x 491 + 966 <--x 491 + 969 <--x 491 + 759 <--x 492 + 967 <--x 492 + 969 <--x 492 + 764 <--x 493 + 968 <--x 493 + 970 <--x 493 + 758 <--x 494 + 965 <--x 494 + 970 <--x 494 + 760 <--x 495 + 967 <--x 495 + 972 <--x 495 + 763 <--x 496 + 971 <--x 496 + 972 <--x 496 + 757 <--x 497 + 965 <--x 497 + 966 <--x 497 + 761 <--x 498 + 968 <--x 498 + 971 <--x 498 + 765 <--x 499 + 977 <--x 499 + 978 <--x 499 + 768 <--x 500 + 978 <--x 500 + 979 <--x 500 + 770 <--x 501 + 973 <--x 501 + 977 <--x 501 + 771 <--x 502 + 974 <--x 502 + 980 <--x 502 + 766 <--x 503 + 976 <--x 503 + 979 <--x 503 + 767 <--x 504 + 975 <--x 504 + 980 <--x 504 + 772 <--x 505 + 975 <--x 505 + 976 <--x 505 + 769 <--x 506 + 973 <--x 506 + 974 <--x 506 + 774 <--x 507 + 981 <--x 507 + 984 <--x 507 + 773 <--x 508 + 982 <--x 508 + 983 <--x 508 + 775 <--x 509 + 981 <--x 509 + 983 <--x 509 + 776 <--x 510 + 982 <--x 510 + 984 <--x 510 + 777 <--x 511 + 991 <--x 511 + 992 <--x 511 + 784 <--x 512 + 987 <--x 512 + 989 <--x 512 + 779 <--x 513 + 987 <--x 513 + 988 <--x 513 + 780 <--x 514 + 985 <--x 514 + 989 <--x 514 + 781 <--x 515 + 990 <--x 515 + 991 <--x 515 + 783 <--x 516 + 986 <--x 516 + 990 <--x 516 + 782 <--x 517 + 988 <--x 517 + 992 <--x 517 + 778 <--x 518 + 985 <--x 518 + 986 <--x 518 + 785 <--x 519 + 993 <--x 519 + 791 <--x 520 + 994 <--x 520 + 998 <--x 520 + 789 <--x 521 + 994 <--x 521 + 1000 <--x 521 + 790 <--x 522 + 996 <--x 522 + 998 <--x 522 + 786 <--x 523 + 995 <--x 523 + 997 <--x 523 + 788 <--x 524 + 1000 <--x 524 + 1001 <--x 524 + 787 <--x 525 + 996 <--x 525 + 999 <--x 525 + 793 <--x 526 + 995 <--x 526 + 999 <--x 526 + 792 <--x 527 + 997 <--x 527 + 1001 <--x 527 + 794 <--x 528 + 1003 <--x 528 + 1004 <--x 528 + 796 <--x 529 + 1004 <--x 529 + 1005 <--x 529 + 795 <--x 530 + 1002 <--x 530 + 1005 <--x 530 + 797 <--x 531 + 1002 <--x 531 + 1003 <--x 531 + 801 <--x 532 + 1008 <--x 532 + 1011 <--x 532 + 805 <--x 533 + 1009 <--x 533 + 1012 <--x 533 + 798 <--x 534 + 1007 <--x 534 + 1008 <--x 534 + 800 <--x 535 + 1006 <--x 535 + 1010 <--x 535 + 803 <--x 536 + 1011 <--x 536 + 1013 <--x 536 + 804 <--x 537 + 1007 <--x 537 + 1012 <--x 537 + 802 <--x 538 + 1006 <--x 538 + 1009 <--x 538 + 799 <--x 539 + 1010 <--x 539 + 1013 <--x 539 + 811 <--x 540 + 1016 <--x 540 + 1020 <--x 540 + 806 <--x 541 + 1020 <--x 541 + 1021 <--x 541 + 808 <--x 542 + 1018 <--x 542 + 1021 <--x 542 + 810 <--x 543 + 1017 <--x 543 + 1018 <--x 543 + 813 <--x 544 + 1014 <--x 544 + 1016 <--x 544 + 809 <--x 545 + 1015 <--x 545 + 1019 <--x 545 + 812 <--x 546 + 1014 <--x 546 + 1019 <--x 546 + 807 <--x 547 + 1015 <--x 547 + 1017 <--x 547 + 820 <--x 548 + 1024 <--x 548 + 1028 <--x 548 + 819 <--x 549 + 1023 <--x 549 + 1026 <--x 549 + 817 <--x 550 + 1022 <--x 550 + 1029 <--x 550 + 821 <--x 551 + 1027 <--x 551 + 1028 <--x 551 + 816 <--x 552 + 1024 <--x 552 + 1025 <--x 552 + 814 <--x 553 + 1026 <--x 553 + 1027 <--x 553 + 815 <--x 554 + 1025 <--x 554 + 1029 <--x 554 + 818 <--x 555 + 1022 <--x 555 + 1023 <--x 555 + 822 <--x 556 + 1031 <--x 556 + 1032 <--x 556 + 824 <--x 557 + 1030 <--x 557 + 1033 <--x 557 + 825 <--x 558 + 1030 <--x 558 + 1031 <--x 558 + 823 <--x 559 + 1032 <--x 559 + 1033 <--x 559 + 679 <--x 568 + 680 <--x 568 + 681 <--x 568 + 682 <--x 568 + 683 <--x 568 + 684 <--x 568 + 685 <--x 568 + 686 <--x 568 + 687 <--x 568 + 688 <--x 568 + 689 <--x 568 + 690 <--x 568 + 691 <--x 568 + 692 <--x 568 + 693 <--x 568 + 694 <--x 568 + 712 <--x 571 + 713 <--x 571 + 714 <--x 571 + 715 <--x 571 + 773 <--x 579 + 774 <--x 579 + 775 <--x 579 + 776 <--x 579 + 794 <--x 582 + 795 <--x 582 + 796 <--x 582 + 797 <--x 582 + 822 <--x 586 + 823 <--x 586 + 824 <--x 586 + 825 <--x 586 + 618 <--x 587 + 619 <--x 587 + 620 <--x 587 + 621 <--x 587 + 622 <--x 587 + 623 <--x 587 + 624 <--x 587 + 625 <--x 587 + 626 <--x 588 + 627 <--x 588 + 628 <--x 588 + 629 <--x 588 + 630 <--x 588 + 631 <--x 588 + 632 <--x 588 + 633 <--x 588 + 634 <--x 589 + 635 <--x 589 + 636 <--x 589 + 637 <--x 589 + 638 <--x 589 + 639 <--x 589 + 640 <--x 589 + 641 <--x 589 + 642 <--x 590 + 643 <--x 590 + 644 <--x 590 + 645 <--x 590 + 646 <--x 590 + 647 <--x 590 + 648 <--x 590 + 649 <--x 590 + 650 <--x 591 + 651 <--x 591 + 652 <--x 591 + 653 <--x 591 + 654 <--x 591 + 655 <--x 591 + 656 <--x 591 + 657 <--x 591 + 658 <--x 592 + 659 <--x 592 + 660 <--x 592 + 661 <--x 592 + 662 <--x 592 + 663 <--x 592 + 664 <--x 592 + 665 <--x 592 + 666 <--x 593 + 667 <--x 593 + 668 <--x 593 + 669 <--x 593 + 670 <--x 593 + 671 <--x 593 + 672 <--x 593 + 673 <--x 593 + 674 <--x 594 + 675 <--x 595 + 678 <--x 595 + 695 <--x 597 + 696 <--x 597 + 697 <--x 597 + 698 <--x 597 + 699 <--x 597 + 700 <--x 597 + 701 <--x 597 + 702 <--x 597 + 703 <--x 598 + 704 <--x 598 + 705 <--x 598 + 706 <--x 598 + 707 <--x 598 + 708 <--x 598 + 709 <--x 598 + 710 <--x 598 + 711 <--x 599 + 716 <--x 601 + 717 <--x 601 + 718 <--x 601 + 719 <--x 601 + 720 <--x 601 + 721 <--x 601 + 722 <--x 601 + 723 <--x 601 + 724 <--x 602 + 725 <--x 602 + 726 <--x 602 + 727 <--x 602 + 728 <--x 602 + 729 <--x 602 + 730 <--x 602 + 731 <--x 602 + 732 <--x 603 + 733 <--x 603 + 734 <--x 603 + 735 <--x 603 + 736 <--x 603 + 737 <--x 603 + 738 <--x 603 + 739 <--x 603 + 740 <--x 604 + 741 <--x 604 + 742 <--x 604 + 743 <--x 604 + 744 <--x 604 + 745 <--x 604 + 746 <--x 604 + 747 <--x 604 + 748 <--x 605 + 749 <--x 606 + 750 <--x 606 + 751 <--x 606 + 752 <--x 606 + 753 <--x 606 + 754 <--x 606 + 755 <--x 606 + 756 <--x 606 + 757 <--x 607 + 758 <--x 607 + 759 <--x 607 + 760 <--x 607 + 761 <--x 607 + 762 <--x 607 + 763 <--x 607 + 764 <--x 607 + 765 <--x 608 + 766 <--x 608 + 767 <--x 608 + 768 <--x 608 + 769 <--x 608 + 770 <--x 608 + 771 <--x 608 + 772 <--x 608 + 777 <--x 610 + 778 <--x 610 + 779 <--x 610 + 780 <--x 610 + 781 <--x 610 + 782 <--x 610 + 783 <--x 610 + 784 <--x 610 + 785 <--x 611 + 786 <--x 612 + 787 <--x 612 + 788 <--x 612 + 789 <--x 612 + 790 <--x 612 + 791 <--x 612 + 792 <--x 612 + 793 <--x 612 + 798 <--x 614 + 799 <--x 614 + 800 <--x 614 + 801 <--x 614 + 802 <--x 614 + 803 <--x 614 + 804 <--x 614 + 805 <--x 614 + 806 <--x 615 + 807 <--x 615 + 808 <--x 615 + 809 <--x 615 + 810 <--x 615 + 811 <--x 615 + 812 <--x 615 + 813 <--x 615 + 814 <--x 616 + 815 <--x 616 + 816 <--x 616 + 817 <--x 616 + 818 <--x 616 + 819 <--x 616 + 820 <--x 616 + 821 <--x 616 + 676 <--x 1034 + 677 <--x 1035 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/keyboard/ops.snap b/rust/kcl-lib/tests/kcl_samples/keyboard/ops.snap index ec88cb4af..7a5b8cadc 100644 --- a/rust/kcl-lib/tests/kcl_samples/keyboard/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/keyboard/ops.snap @@ -199,18 +199,191 @@ description: Operations executed keyboard.kcl "sourceRange": [] }, { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } }, - "sourceRange": [] + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { "labeledArgs": { @@ -399,6 +572,4199 @@ description: Operations executed keyboard.kcl "type": "StdLibCall", "unlabeledArg": null }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.7, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.1, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, { "labeledArgs": { "length": { @@ -526,239 +4892,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -854,239 +4987,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -1182,239 +5082,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -1510,239 +5177,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -1838,239 +5272,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -2166,239 +5367,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -2494,239 +5462,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -2822,239 +5557,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -3150,239 +5652,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -3478,239 +5747,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -3806,239 +5842,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -4134,239 +5937,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -4462,239 +6032,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -4790,239 +6127,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -5118,239 +6222,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -5446,239 +6317,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -5774,239 +6412,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -6102,239 +6507,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -6430,239 +6602,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -6758,239 +6697,6 @@ description: Operations executed keyboard.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "keyFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.7, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "axis": { @@ -7087,7 +6793,235 @@ description: Operations executed keyboard.kcl } }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "keyFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "type": "GroupBegin", @@ -7101,7 +7035,1099 @@ description: Operations executed keyboard.kcl "sourceRange": [] }, { - "type": "GroupEnd" + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.81, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -0.03, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.81, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.81, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -0.03, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -0.03, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.81, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Object", + "value": { + "origin": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.81, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "xAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "yAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.12186934340514748, + "ty": { + "type": "Known", + "type": "Count" + } + } + ] + }, + "zAxis": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + } + } + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -0.03, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -0.03, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } }, { "type": "GroupBegin", @@ -7115,226 +8141,15 @@ description: Operations executed keyboard.kcl "sourceRange": [] }, { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.81, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "o", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.03, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" + "sourceRange": [] }, { "type": "GroupBegin", @@ -7348,894 +8163,79 @@ description: Operations executed keyboard.kcl "sourceRange": [] }, { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.81, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.03, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.81, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.03, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "o", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.81, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" }, { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.03, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" }, { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.81, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.12186934340514748, - "ty": { - "type": "Known", - "type": "Count" - } - } - ] - }, - "zAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" }, { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.03, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" }, { "type": "GroupEnd" diff --git a/rust/kcl-lib/tests/kcl_samples/kitt/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/kitt/artifact_commands.snap index 1e5f6e836..c6da5f7df 100644 --- a/rust/kcl-lib/tests/kcl_samples/kitt/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/kitt/artifact_commands.snap @@ -29,6 +29,13306 @@ description: Artifact commands kitt.kcl "hidden": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -12.0, + "y": 14.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -7.0, + "y": 23.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -6.0, + "y": 24.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -3.0, + "y": 23.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 4.0, + "y": 22.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -4.0, + "y": 20.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -3.0, + "y": 19.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 4.0, + "y": 20.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 3.0, + "y": 19.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -12.0, + "y": 7.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -4.0, + "y": 8.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -11.0, + "y": 8.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -11.0, + "y": 10.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 11.0, + "y": 8.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -9.0, + "y": 13.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 11.0, + "y": 10.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 9.0, + "y": 10.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 7.0, + "y": 10.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 4.0, + "y": -10.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -9.0, + "y": -10.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -12.0, + "y": 14.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -11.0, + "y": 13.99, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -10.0, + "y": 13.98, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -9.0, + "y": 13.97, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 4.0, + "y": 14.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 5.0, + "y": 13.99, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 6.0, + "y": 13.98, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 7.0, + "y": 13.97, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 27.0, + "y": 13.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 27.0, + "y": 11.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 25.0, + "y": 14.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 25.0, + "y": 12.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 25.0, + "y": 10.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 23.0, + "y": 13.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 23.0, + "y": 11.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 7.0, + "y": 1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 7.0, + "y": 3.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 7.0, + "y": 5.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 16.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 4.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 6.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 2.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 2.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 2.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 2.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 5.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 5.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -8.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -6.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -4.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -2.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -8.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -6.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -4.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -2.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 24.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 3.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 2.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 24.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 8.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 5.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 5.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -5.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 2.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 5.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 5.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 8.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 2.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 8.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 2.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -16.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -4.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -6.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -2.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -2.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -2.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -2.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -5.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -5.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 8.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 6.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 4.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 2.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 8.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 6.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 4.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 2.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -12.0, + "y": 14.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -7.0, + "y": 23.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -6.0, + "y": 24.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -3.0, + "y": 23.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 4.0, + "y": 22.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -4.0, + "y": 20.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -3.0, + "y": 19.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 4.0, + "y": 20.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 3.0, + "y": 19.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -12.0, + "y": 7.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -4.0, + "y": 8.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -11.0, + "y": 8.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -11.0, + "y": 10.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 11.0, + "y": 8.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -9.0, + "y": 13.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 11.0, + "y": 10.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 9.0, + "y": 10.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.0, + "y": 10.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 4.0, + "y": -10.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -9.0, + "y": -10.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -12.0, + "y": 14.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -11.0, + "y": 13.99, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -10.0, + "y": 13.98, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -9.0, + "y": 13.97, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 4.0, + "y": 14.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 5.0, + "y": 13.99, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.0, + "y": 13.98, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.0, + "y": 13.97, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 27.0, + "y": 13.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 27.0, + "y": 11.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 25.0, + "y": 14.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 25.0, + "y": 12.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 25.0, + "y": 10.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 23.0, + "y": 13.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 23.0, + "y": 11.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.0, + "y": 1.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.0, + "y": 3.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.0, + "y": 5.0, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 3.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 0.5, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 0.5, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 0.5, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 0.5, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 0.5, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 0.5, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 0.5, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 0.5, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 3.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 4.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 3.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 3.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": -2.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -70,13 +13370,6 @@ description: Artifact commands kitt.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +13390,13 @@ description: Artifact commands kitt.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -200,6 +13500,14 @@ description: Artifact commands kitt.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -211,8 +13519,108 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -228,30 +13636,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -266,39 +13656,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -313,18 +13676,10 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -337,43 +13692,6 @@ description: Artifact commands kitt.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -388,30 +13706,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -424,363 +13724,6 @@ description: Artifact commands kitt.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -12.0, - "y": 14.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 16.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 24.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -16.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -12.0, - "y": 14.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 3.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -801,6 +13744,13 @@ description: Artifact commands kitt.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1036,6 +13986,14 @@ description: Artifact commands kitt.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1047,8 +14005,324 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1064,30 +14338,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1102,39 +14358,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1149,39 +14378,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1196,39 +14398,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1243,39 +14418,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1290,39 +14438,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1337,18 +14458,10 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1365,39 +14478,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1412,39 +14498,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1459,39 +14518,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1506,39 +14538,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1549,43 +14554,6 @@ description: Artifact commands kitt.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1600,30 +14568,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1636,1413 +14586,6 @@ description: Artifact commands kitt.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -7.0, - "y": 23.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -7.0, - "y": 23.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 0.5, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -6.0, - "y": 24.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 3.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -6.0, - "y": 24.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 0.5, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -3.0, - "y": 23.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -3.0, - "y": 23.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 0.5, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 4.0, - "y": 22.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 4.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 2.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -4.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 4.0, - "y": 22.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 0.5, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3063,6 +14606,13 @@ description: Artifact commands kitt.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3298,6 +14848,14 @@ description: Artifact commands kitt.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3309,8 +14867,324 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -3326,30 +15200,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3364,39 +15220,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3411,39 +15240,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3458,39 +15260,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3505,39 +15280,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3552,39 +15300,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3599,18 +15320,10 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3627,39 +15340,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3674,39 +15360,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3721,39 +15380,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3768,39 +15400,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3815,39 +15420,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3862,4578 +15440,25 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -4.0, - "y": 20.0, + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -4.0, - "y": 20.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 0.5, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -3.0, - "y": 19.0, + }, + "x_axis": { + "x": 1.0, + "y": 0.0, "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -3.0, - "y": 19.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 0.5, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 4.0, - "y": 20.0, + }, + "y_axis": { + "x": 0.0, + "y": 1.0, "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 4.0, - "y": 20.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 0.5, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 3.0, - "y": 19.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 3.0, - "y": 19.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 0.5, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -12.0, - "y": 7.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 6.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 24.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -6.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -12.0, - "y": 7.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 3.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -4.0, - "y": 8.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 2.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 8.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -2.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -4.0, - "y": 8.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -11.0, - "y": 8.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 5.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -11.0, - "y": 8.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -11.0, - "y": 10.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 5.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -11.0, - "y": 10.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 11.0, - "y": 8.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -5.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 11.0, - "y": 8.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -9.0, - "y": 13.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 2.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -9.0, - "y": 13.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 4.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 11.0, - "y": 10.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 2.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -2.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 11.0, - "y": 10.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 9.0, - "y": 10.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 2.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -2.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 9.0, - "y": 10.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 7.0, - "y": 10.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 2.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -2.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.0, - "y": 10.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + }, + "size": 60.0, + "clobber": false, + "hide": true } }, { @@ -8481,7 +15506,16 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { @@ -8497,6 +15531,19 @@ description: Artifact commands kitt.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -10.0, + "y": -4.0, + "z": 0.0 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -8504,6 +15551,27 @@ description: Artifact commands kitt.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -8521,6 +15589,40 @@ description: Artifact commands kitt.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -10.0, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -8555,722 +15657,6 @@ description: Artifact commands kitt.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 3.0, - "y": -4.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 3.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 4.0, - "y": -10.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 5.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 5.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -5.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 4.0, - "y": -10.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 3.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -10.0, - "y": -4.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -10.0, - "z": 0.0 - }, - "relative": true - } - } - }, { "cmdId": "[uuid]", "range": [], @@ -9288,6 +15674,23 @@ description: Artifact commands kitt.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 3.0, + "y": -4.0, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -9313,6 +15716,30 @@ description: Artifact commands kitt.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -9340,345 +15767,6 @@ description: Artifact commands kitt.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -9.0, - "y": -10.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 5.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 5.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -5.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -9.0, - "y": -10.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -9694,7 +15782,8 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -9705,6 +15794,236 @@ description: Artifact commands kitt.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -9714,347 +16033,6 @@ description: Artifact commands kitt.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -12.0, - "y": 14.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -8.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 8.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 8.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -12.0, - "y": 14.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -10064,5634 +16042,6 @@ description: Artifact commands kitt.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -11.0, - "y": 13.99, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -6.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 6.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 6.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -11.0, - "y": 13.99, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -10.0, - "y": 13.98, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -4.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 4.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -10.0, - "y": 13.98, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -9.0, - "y": 13.97, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -2.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 2.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 2.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -9.0, - "y": 13.97, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 4.0, - "y": 14.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -8.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 8.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 8.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 4.0, - "y": 14.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 5.0, - "y": 13.99, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -6.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 6.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 6.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 5.0, - "y": 13.99, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 6.0, - "y": 13.98, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -4.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 4.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 6.0, - "y": 13.98, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 7.0, - "y": 13.97, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -2.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 2.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 2.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.0, - "y": 13.97, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 27.0, - "y": 13.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 27.0, - "y": 13.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 27.0, - "y": 11.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 27.0, - "y": 11.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 25.0, - "y": 14.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 25.0, - "y": 14.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 25.0, - "y": 12.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 25.0, - "y": 12.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 25.0, - "y": 10.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 25.0, - "y": 10.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 23.0, - "y": 13.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 23.0, - "y": 13.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 23.0, - "y": 11.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 23.0, - "y": 11.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 7.0, - "y": 1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.0, - "y": 1.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 7.0, - "y": 3.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.0, - "y": 3.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -15706,39 +16056,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -15753,39 +16076,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -15800,39 +16096,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -15847,180 +16116,10 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 7.0, - "y": 5.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.0, - "y": 5.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -2.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16037,39 +16136,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -16084,39 +16156,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -16131,39 +16176,12 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -16178,28 +16196,10 @@ description: Artifact commands kitt.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/kitt/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/kitt/artifact_graph_flowchart.snap.md index d61bfad0c..5ac02450f 100644 --- a/rust/kcl-lib/tests/kcl_samples/kitt/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/kitt/artifact_graph_flowchart.snap.md @@ -1,3616 +1,3616 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[632, 688, 0]"] - 3["Segment
[694, 724, 0]"] - 4["Segment
[730, 773, 0]"] - 5["Segment
[779, 824, 0]"] - 6["Segment
[830, 886, 0]"] - 7["Segment
[892, 899, 0]"] - 8[Solid2d] - end - subgraph path24 [Path] - 24["Path
[235, 276, 0]"] - 25["Segment
[284, 307, 0]"] - 26["Segment
[315, 337, 0]"] - 27["Segment
[345, 369, 0]"] - 28["Segment
[377, 433, 0]"] - 29["Segment
[441, 448, 0]"] - 30[Solid2d] + subgraph path44 [Path] + 44["Path
[235, 276, 0]"] + 93["Segment
[284, 307, 0]"] + 153["Segment
[315, 337, 0]"] + 187["Segment
[345, 369, 0]"] + 228["Segment
[377, 433, 0]"] + 248["Segment
[441, 448, 0]"] + 319[Solid2d] end subgraph path45 [Path] - 45["Path
[1506, 1562, 0]"] - 46["Segment
[1568, 1586, 0]"] - 47["Segment
[1616, 1635, 0]"] - 48["Segment
[1667, 1697, 0]"] - 49["Segment
[1719, 1737, 0]"] - 50["Segment
[1770, 1788, 0]"] - 51["Segment
[1818, 1847, 0]"] - 52["Segment
[1873, 1892, 0]"] - 53["Segment
[1925, 1943, 0]"] - 54["Segment
[1977, 2008, 0]"] - 55["Segment
[2033, 2052, 0]"] - 56["Segment
[2085, 2104, 0]"] - 57["Segment
[2137, 2193, 0]"] - 58["Segment
[2199, 2206, 0]"] - 59[Solid2d] + 45["Path
[235, 276, 0]"] + 91["Segment
[284, 307, 0]"] + 161["Segment
[315, 337, 0]"] + 188["Segment
[345, 369, 0]"] + 229["Segment
[377, 433, 0]"] + 244["Segment
[441, 448, 0]"] + 320[Solid2d] end - subgraph path98 [Path] - 98["Path
[235, 276, 0]"] - 99["Segment
[284, 307, 0]"] - 100["Segment
[315, 337, 0]"] - 101["Segment
[345, 369, 0]"] - 102["Segment
[377, 433, 0]"] - 103["Segment
[441, 448, 0]"] - 104[Solid2d] - end - subgraph path119 [Path] - 119["Path
[235, 276, 0]"] - 120["Segment
[284, 307, 0]"] - 121["Segment
[315, 337, 0]"] - 122["Segment
[345, 369, 0]"] - 123["Segment
[377, 433, 0]"] - 124["Segment
[441, 448, 0]"] - 125[Solid2d] - end - subgraph path140 [Path] - 140["Path
[235, 276, 0]"] - 141["Segment
[284, 307, 0]"] - 142["Segment
[315, 337, 0]"] - 143["Segment
[345, 369, 0]"] - 144["Segment
[377, 433, 0]"] - 145["Segment
[441, 448, 0]"] - 146[Solid2d] - end - subgraph path161 [Path] - 161["Path
[235, 276, 0]"] - 162["Segment
[284, 307, 0]"] - 163["Segment
[315, 337, 0]"] + subgraph path46 [Path] + 46["Path
[235, 276, 0]"] + 110["Segment
[284, 307, 0]"] + 159["Segment
[315, 337, 0]"] 164["Segment
[345, 369, 0]"] - 165["Segment
[377, 433, 0]"] - 166["Segment
[441, 448, 0]"] - 167[Solid2d] + 232["Segment
[377, 433, 0]"] + 265["Segment
[441, 448, 0]"] + 321[Solid2d] end - subgraph path182 [Path] - 182["Path
[2887, 2928, 0]"] - 183["Segment
[2941, 2959, 0]"] - 184["Segment
[2982, 3000, 0]"] - 185["Segment
[3026, 3044, 0]"] - 186["Segment
[3065, 3084, 0]"] - 187["Segment
[3109, 3127, 0]"] - 188["Segment
[3150, 3168, 0]"] - 189["Segment
[3193, 3212, 0]"] - 190["Segment
[3238, 3257, 0]"] - 191["Segment
[3283, 3302, 0]"] - 192["Segment
[3325, 3343, 0]"] - 193["Segment
[3370, 3389, 0]"] - 194["Segment
[3415, 3471, 0]"] - 195["Segment
[3477, 3484, 0]"] - 196[Solid2d] + subgraph path47 [Path] + 47["Path
[235, 276, 0]"] + 106["Segment
[284, 307, 0]"] + 158["Segment
[315, 337, 0]"] + 170["Segment
[345, 369, 0]"] + 223["Segment
[377, 433, 0]"] + 268["Segment
[441, 448, 0]"] + 322[Solid2d] end - subgraph path235 [Path] - 235["Path
[235, 276, 0]"] - 236["Segment
[284, 307, 0]"] - 237["Segment
[315, 337, 0]"] - 238["Segment
[345, 369, 0]"] - 239["Segment
[377, 433, 0]"] - 240["Segment
[441, 448, 0]"] - 241[Solid2d] + subgraph path48 [Path] + 48["Path
[235, 276, 0]"] + 114["Segment
[284, 307, 0]"] + 131["Segment
[315, 337, 0]"] + 171["Segment
[345, 369, 0]"] + 237["Segment
[377, 433, 0]"] + 256["Segment
[441, 448, 0]"] + 323[Solid2d] end - subgraph path256 [Path] - 256["Path
[235, 276, 0]"] - 257["Segment
[284, 307, 0]"] - 258["Segment
[315, 337, 0]"] - 259["Segment
[345, 369, 0]"] - 260["Segment
[377, 433, 0]"] - 261["Segment
[441, 448, 0]"] - 262[Solid2d] + subgraph path49 [Path] + 49["Path
[235, 276, 0]"] + 102["Segment
[284, 307, 0]"] + 150["Segment
[315, 337, 0]"] + 196["Segment
[345, 369, 0]"] + 225["Segment
[377, 433, 0]"] + 272["Segment
[441, 448, 0]"] + 324[Solid2d] end - subgraph path277 [Path] - 277["Path
[235, 276, 0]"] - 278["Segment
[284, 307, 0]"] - 279["Segment
[315, 337, 0]"] - 280["Segment
[345, 369, 0]"] - 281["Segment
[377, 433, 0]"] - 282["Segment
[441, 448, 0]"] - 283[Solid2d] - end - subgraph path298 [Path] - 298["Path
[235, 276, 0]"] - 299["Segment
[284, 307, 0]"] - 300["Segment
[315, 337, 0]"] - 301["Segment
[345, 369, 0]"] - 302["Segment
[377, 433, 0]"] - 303["Segment
[441, 448, 0]"] - 304[Solid2d] - end - subgraph path319 [Path] - 319["Path
[235, 276, 0]"] - 320["Segment
[284, 307, 0]"] - 321["Segment
[315, 337, 0]"] - 322["Segment
[345, 369, 0]"] - 323["Segment
[377, 433, 0]"] - 324["Segment
[441, 448, 0]"] + subgraph path50 [Path] + 50["Path
[235, 276, 0]"] + 89["Segment
[284, 307, 0]"] + 145["Segment
[315, 337, 0]"] + 178["Segment
[345, 369, 0]"] + 201["Segment
[377, 433, 0]"] + 271["Segment
[441, 448, 0]"] 325[Solid2d] end - subgraph path340 [Path] - 340["Path
[235, 276, 0]"] - 341["Segment
[284, 307, 0]"] - 342["Segment
[315, 337, 0]"] - 343["Segment
[345, 369, 0]"] - 344["Segment
[377, 433, 0]"] - 345["Segment
[441, 448, 0]"] + subgraph path51 [Path] + 51["Path
[235, 276, 0]"] + 96["Segment
[284, 307, 0]"] + 160["Segment
[315, 337, 0]"] + 180["Segment
[345, 369, 0]"] + 222["Segment
[377, 433, 0]"] + 253["Segment
[441, 448, 0]"] + 326[Solid2d] + end + subgraph path52 [Path] + 52["Path
[235, 276, 0]"] + 117["Segment
[284, 307, 0]"] + 126["Segment
[315, 337, 0]"] + 184["Segment
[345, 369, 0]"] + 230["Segment
[377, 433, 0]"] + 261["Segment
[441, 448, 0]"] + 327[Solid2d] + end + subgraph path53 [Path] + 53["Path
[235, 276, 0]"] + 116["Segment
[284, 307, 0]"] + 155["Segment
[315, 337, 0]"] + 194["Segment
[345, 369, 0]"] + 218["Segment
[377, 433, 0]"] + 262["Segment
[441, 448, 0]"] + 328[Solid2d] + end + subgraph path54 [Path] + 54["Path
[235, 276, 0]"] + 119["Segment
[284, 307, 0]"] + 157["Segment
[315, 337, 0]"] + 177["Segment
[345, 369, 0]"] + 209["Segment
[377, 433, 0]"] + 243["Segment
[441, 448, 0]"] + 329[Solid2d] + end + subgraph path55 [Path] + 55["Path
[235, 276, 0]"] + 99["Segment
[284, 307, 0]"] + 125["Segment
[315, 337, 0]"] + 172["Segment
[345, 369, 0]"] + 204["Segment
[377, 433, 0]"] + 266["Segment
[441, 448, 0]"] + 330[Solid2d] + end + subgraph path56 [Path] + 56["Path
[235, 276, 0]"] + 104["Segment
[284, 307, 0]"] + 140["Segment
[315, 337, 0]"] + 190["Segment
[345, 369, 0]"] + 231["Segment
[377, 433, 0]"] + 264["Segment
[441, 448, 0]"] + 331[Solid2d] + end + subgraph path57 [Path] + 57["Path
[235, 276, 0]"] + 100["Segment
[284, 307, 0]"] + 127["Segment
[315, 337, 0]"] + 165["Segment
[345, 369, 0]"] + 212["Segment
[377, 433, 0]"] + 269["Segment
[441, 448, 0]"] + 332[Solid2d] + end + subgraph path58 [Path] + 58["Path
[235, 276, 0]"] + 122["Segment
[284, 307, 0]"] + 128["Segment
[315, 337, 0]"] + 197["Segment
[345, 369, 0]"] + 206["Segment
[377, 433, 0]"] + 267["Segment
[441, 448, 0]"] + 333[Solid2d] + end + subgraph path59 [Path] + 59["Path
[235, 276, 0]"] + 109["Segment
[284, 307, 0]"] + 132["Segment
[315, 337, 0]"] + 163["Segment
[345, 369, 0]"] + 233["Segment
[377, 433, 0]"] + 259["Segment
[441, 448, 0]"] + 334[Solid2d] + end + subgraph path60 [Path] + 60["Path
[235, 276, 0]"] + 94["Segment
[284, 307, 0]"] + 162["Segment
[315, 337, 0]"] + 174["Segment
[345, 369, 0]"] + 215["Segment
[377, 433, 0]"] + 275["Segment
[441, 448, 0]"] + 335[Solid2d] + end + subgraph path61 [Path] + 61["Path
[235, 276, 0]"] + 98["Segment
[284, 307, 0]"] + 137["Segment
[315, 337, 0]"] + 189["Segment
[345, 369, 0]"] + 208["Segment
[377, 433, 0]"] + 250["Segment
[441, 448, 0]"] + 336[Solid2d] + end + subgraph path62 [Path] + 62["Path
[235, 276, 0]"] + 88["Segment
[284, 307, 0]"] + 143["Segment
[315, 337, 0]"] + 186["Segment
[345, 369, 0]"] + 226["Segment
[377, 433, 0]"] + 257["Segment
[441, 448, 0]"] + 337[Solid2d] + end + subgraph path63 [Path] + 63["Path
[235, 276, 0]"] + 112["Segment
[284, 307, 0]"] + 151["Segment
[315, 337, 0]"] + 183["Segment
[345, 369, 0]"] + 216["Segment
[377, 433, 0]"] + 240["Segment
[441, 448, 0]"] + 339[Solid2d] + end + subgraph path64 [Path] + 64["Path
[235, 276, 0]"] + 115["Segment
[284, 307, 0]"] + 146["Segment
[315, 337, 0]"] + 167["Segment
[345, 369, 0]"] + 238["Segment
[377, 433, 0]"] + 255["Segment
[441, 448, 0]"] + 340[Solid2d] + end + subgraph path65 [Path] + 65["Path
[235, 276, 0]"] + 124["Segment
[284, 307, 0]"] + 147["Segment
[315, 337, 0]"] + 182["Segment
[345, 369, 0]"] + 227["Segment
[377, 433, 0]"] + 273["Segment
[441, 448, 0]"] + 341[Solid2d] + end + subgraph path66 [Path] + 66["Path
[235, 276, 0]"] + 87["Segment
[284, 307, 0]"] + 138["Segment
[315, 337, 0]"] + 175["Segment
[345, 369, 0]"] + 219["Segment
[377, 433, 0]"] + 251["Segment
[441, 448, 0]"] + 342[Solid2d] + end + subgraph path67 [Path] + 67["Path
[235, 276, 0]"] + 103["Segment
[284, 307, 0]"] + 136["Segment
[315, 337, 0]"] + 176["Segment
[345, 369, 0]"] + 217["Segment
[377, 433, 0]"] + 260["Segment
[441, 448, 0]"] + 344[Solid2d] + end + subgraph path68 [Path] + 68["Path
[235, 276, 0]"] + 97["Segment
[284, 307, 0]"] + 142["Segment
[315, 337, 0]"] + 193["Segment
[345, 369, 0]"] + 221["Segment
[377, 433, 0]"] + 242["Segment
[441, 448, 0]"] + 345[Solid2d] + end + subgraph path69 [Path] + 69["Path
[235, 276, 0]"] + 121["Segment
[284, 307, 0]"] + 129["Segment
[315, 337, 0]"] + 179["Segment
[345, 369, 0]"] + 214["Segment
[377, 433, 0]"] + 252["Segment
[441, 448, 0]"] 346[Solid2d] end - subgraph path361 [Path] - 361["Path
[235, 276, 0]"] - 362["Segment
[284, 307, 0]"] - 363["Segment
[315, 337, 0]"] - 364["Segment
[345, 369, 0]"] - 365["Segment
[377, 433, 0]"] - 366["Segment
[441, 448, 0]"] - 367[Solid2d] + subgraph path70 [Path] + 70["Path
[235, 276, 0]"] + 123["Segment
[284, 307, 0]"] + 156["Segment
[315, 337, 0]"] + 199["Segment
[345, 369, 0]"] + 210["Segment
[377, 433, 0]"] + 239["Segment
[441, 448, 0]"] + 347[Solid2d] end - subgraph path382 [Path] - 382["Path
[235, 276, 0]"] - 383["Segment
[284, 307, 0]"] - 384["Segment
[315, 337, 0]"] - 385["Segment
[345, 369, 0]"] - 386["Segment
[377, 433, 0]"] - 387["Segment
[441, 448, 0]"] - 388[Solid2d] + subgraph path71 [Path] + 71["Path
[235, 276, 0]"] + 120["Segment
[284, 307, 0]"] + 144["Segment
[315, 337, 0]"] + 173["Segment
[345, 369, 0]"] + 224["Segment
[377, 433, 0]"] + 270["Segment
[441, 448, 0]"] + 349[Solid2d] end - subgraph path403 [Path] - 403["Path
[235, 276, 0]"] - 404["Segment
[284, 307, 0]"] - 405["Segment
[315, 337, 0]"] - 406["Segment
[345, 369, 0]"] - 407["Segment
[377, 433, 0]"] - 408["Segment
[441, 448, 0]"] - 409[Solid2d] + subgraph path72 [Path] + 72["Path
[235, 276, 0]"] + 108["Segment
[284, 307, 0]"] + 133["Segment
[315, 337, 0]"] + 192["Segment
[345, 369, 0]"] + 207["Segment
[377, 433, 0]"] + 247["Segment
[441, 448, 0]"] + 350[Solid2d] end - subgraph path424 [Path] - 424["Path
[235, 276, 0]"] - 425["Segment
[284, 307, 0]"] - 426["Segment
[315, 337, 0]"] - 427["Segment
[345, 369, 0]"] - 428["Segment
[377, 433, 0]"] - 429["Segment
[441, 448, 0]"] - 430[Solid2d] + subgraph path73 [Path] + 73["Path
[235, 276, 0]"] + 101["Segment
[284, 307, 0]"] + 139["Segment
[315, 337, 0]"] + 198["Segment
[345, 369, 0]"] + 234["Segment
[377, 433, 0]"] + 274["Segment
[441, 448, 0]"] + 352[Solid2d] end - subgraph path445 [Path] - 445["Path
[235, 276, 0]"] - 446["Segment
[284, 307, 0]"] - 447["Segment
[315, 337, 0]"] - 448["Segment
[345, 369, 0]"] - 449["Segment
[377, 433, 0]"] - 450["Segment
[441, 448, 0]"] - 451[Solid2d] + subgraph path74 [Path] + 74["Path
[235, 276, 0]"] + 107["Segment
[284, 307, 0]"] + 141["Segment
[315, 337, 0]"] + 195["Segment
[345, 369, 0]"] + 205["Segment
[377, 433, 0]"] + 263["Segment
[441, 448, 0]"] + 353[Solid2d] end - subgraph path466 [Path] - 466["Path
[235, 276, 0]"] - 467["Segment
[284, 307, 0]"] - 468["Segment
[315, 337, 0]"] - 469["Segment
[345, 369, 0]"] - 470["Segment
[377, 433, 0]"] - 471["Segment
[441, 448, 0]"] - 472[Solid2d] + subgraph path75 [Path] + 75["Path
[235, 276, 0]"] + 92["Segment
[284, 307, 0]"] + 135["Segment
[315, 337, 0]"] + 168["Segment
[345, 369, 0]"] + 211["Segment
[377, 433, 0]"] + 258["Segment
[441, 448, 0]"] + 354[Solid2d] end - subgraph path487 [Path] - 487["Path
[235, 276, 0]"] - 488["Segment
[284, 307, 0]"] - 489["Segment
[315, 337, 0]"] - 490["Segment
[345, 369, 0]"] - 491["Segment
[377, 433, 0]"] - 492["Segment
[441, 448, 0]"] - 493[Solid2d] + subgraph path76 [Path] + 76["Path
[235, 276, 0]"] + 118["Segment
[284, 307, 0]"] + 130["Segment
[315, 337, 0]"] + 185["Segment
[345, 369, 0]"] + 202["Segment
[377, 433, 0]"] + 254["Segment
[441, 448, 0]"] + 355[Solid2d] end - subgraph path509 [Path] - 509["Path
[6208, 6259, 0]"] - 510["Segment
[6267, 6296, 0]"] - 511["Segment
[6304, 6335, 0]"] - 512["Segment
[6343, 6373, 0]"] - 513["Segment
[6381, 6437, 0]"] - 514["Segment
[6445, 6452, 0]"] - 515[Solid2d] + subgraph path77 [Path] + 77["Path
[235, 276, 0]"] + 90["Segment
[284, 307, 0]"] + 154["Segment
[315, 337, 0]"] + 169["Segment
[345, 369, 0]"] + 213["Segment
[377, 433, 0]"] + 246["Segment
[441, 448, 0]"] + 356[Solid2d] end - subgraph path531 [Path] - 531["Path
[235, 276, 0]"] - 532["Segment
[284, 307, 0]"] - 533["Segment
[315, 337, 0]"] - 534["Segment
[345, 369, 0]"] - 535["Segment
[377, 433, 0]"] - 536["Segment
[441, 448, 0]"] - 537[Solid2d] + subgraph path78 [Path] + 78["Path
[235, 276, 0]"] + 113["Segment
[284, 307, 0]"] + 152["Segment
[315, 337, 0]"] + 191["Segment
[345, 369, 0]"] + 203["Segment
[377, 433, 0]"] + 276["Segment
[441, 448, 0]"] + 357[Solid2d] end - subgraph path553 [Path] - 553["Path
[6208, 6259, 0]"] - 554["Segment
[6267, 6296, 0]"] - 555["Segment
[6304, 6335, 0]"] - 556["Segment
[6343, 6373, 0]"] - 557["Segment
[6381, 6437, 0]"] - 558["Segment
[6445, 6452, 0]"] - 559[Solid2d] + subgraph path79 [Path] + 79["Path
[235, 276, 0]"] + 111["Segment
[284, 307, 0]"] + 149["Segment
[315, 337, 0]"] + 200["Segment
[345, 369, 0]"] + 236["Segment
[377, 433, 0]"] + 249["Segment
[441, 448, 0]"] + 358[Solid2d] end - subgraph path575 [Path] - 575["Path
[235, 276, 0]"] - 576["Segment
[284, 307, 0]"] - 577["Segment
[315, 337, 0]"] - 578["Segment
[345, 369, 0]"] - 579["Segment
[377, 433, 0]"] - 580["Segment
[441, 448, 0]"] - 581[Solid2d] + subgraph path80 [Path] + 80["Path
[235, 276, 0]"] + 95["Segment
[284, 307, 0]"] + 134["Segment
[315, 337, 0]"] + 181["Segment
[345, 369, 0]"] + 235["Segment
[377, 433, 0]"] + 241["Segment
[441, 448, 0]"] + 359[Solid2d] end - subgraph path596 [Path] - 596["Path
[235, 276, 0]"] - 597["Segment
[284, 307, 0]"] - 598["Segment
[315, 337, 0]"] - 599["Segment
[345, 369, 0]"] - 600["Segment
[377, 433, 0]"] - 601["Segment
[441, 448, 0]"] - 602[Solid2d] + subgraph path81 [Path] + 81["Path
[235, 276, 0]"] + 105["Segment
[284, 307, 0]"] + 148["Segment
[315, 337, 0]"] + 166["Segment
[345, 369, 0]"] + 220["Segment
[377, 433, 0]"] + 245["Segment
[441, 448, 0]"] + 360[Solid2d] end - subgraph path617 [Path] - 617["Path
[235, 276, 0]"] - 618["Segment
[284, 307, 0]"] - 619["Segment
[315, 337, 0]"] - 620["Segment
[345, 369, 0]"] - 621["Segment
[377, 433, 0]"] - 622["Segment
[441, 448, 0]"] - 623[Solid2d] + subgraph path82 [Path] + 82["Path
[632, 688, 0]"] + 277["Segment
[694, 724, 0]"] + 278["Segment
[730, 773, 0]"] + 279["Segment
[779, 824, 0]"] + 280["Segment
[830, 886, 0]"] + 281["Segment
[892, 899, 0]"] + 338[Solid2d] end - subgraph path638 [Path] - 638["Path
[235, 276, 0]"] - 639["Segment
[284, 307, 0]"] - 640["Segment
[315, 337, 0]"] - 641["Segment
[345, 369, 0]"] - 642["Segment
[377, 433, 0]"] - 643["Segment
[441, 448, 0]"] - 644[Solid2d] + subgraph path83 [Path] + 83["Path
[1506, 1562, 0]"] + 282["Segment
[1568, 1586, 0]"] + 283["Segment
[1616, 1635, 0]"] + 284["Segment
[1667, 1697, 0]"] + 285["Segment
[1719, 1737, 0]"] + 286["Segment
[1770, 1788, 0]"] + 287["Segment
[1818, 1847, 0]"] + 288["Segment
[1873, 1892, 0]"] + 289["Segment
[1925, 1943, 0]"] + 290["Segment
[1977, 2008, 0]"] + 291["Segment
[2033, 2052, 0]"] + 292["Segment
[2085, 2104, 0]"] + 293["Segment
[2137, 2193, 0]"] + 294["Segment
[2199, 2206, 0]"] + 318[Solid2d] end - subgraph path659 [Path] - 659["Path
[235, 276, 0]"] - 660["Segment
[284, 307, 0]"] - 661["Segment
[315, 337, 0]"] - 662["Segment
[345, 369, 0]"] - 663["Segment
[377, 433, 0]"] - 664["Segment
[441, 448, 0]"] - 665[Solid2d] + subgraph path84 [Path] + 84["Path
[2887, 2928, 0]"] + 295["Segment
[2941, 2959, 0]"] + 296["Segment
[2982, 3000, 0]"] + 297["Segment
[3026, 3044, 0]"] + 298["Segment
[3065, 3084, 0]"] + 299["Segment
[3109, 3127, 0]"] + 300["Segment
[3150, 3168, 0]"] + 301["Segment
[3193, 3212, 0]"] + 302["Segment
[3238, 3257, 0]"] + 303["Segment
[3283, 3302, 0]"] + 304["Segment
[3325, 3343, 0]"] + 305["Segment
[3370, 3389, 0]"] + 306["Segment
[3415, 3471, 0]"] + 307["Segment
[3477, 3484, 0]"] + 351[Solid2d] end - subgraph path680 [Path] - 680["Path
[235, 276, 0]"] - 681["Segment
[284, 307, 0]"] - 682["Segment
[315, 337, 0]"] - 683["Segment
[345, 369, 0]"] - 684["Segment
[377, 433, 0]"] - 685["Segment
[441, 448, 0]"] - 686[Solid2d] + subgraph path85 [Path] + 85["Path
[6208, 6259, 0]"] + 309["Segment
[6267, 6296, 0]"] + 310["Segment
[6304, 6335, 0]"] + 312["Segment
[6343, 6373, 0]"] + 315["Segment
[6381, 6437, 0]"] + 316["Segment
[6445, 6452, 0]"] + 343[Solid2d] end - subgraph path701 [Path] - 701["Path
[235, 276, 0]"] - 702["Segment
[284, 307, 0]"] - 703["Segment
[315, 337, 0]"] - 704["Segment
[345, 369, 0]"] - 705["Segment
[377, 433, 0]"] - 706["Segment
[441, 448, 0]"] - 707[Solid2d] - end - subgraph path722 [Path] - 722["Path
[235, 276, 0]"] - 723["Segment
[284, 307, 0]"] - 724["Segment
[315, 337, 0]"] - 725["Segment
[345, 369, 0]"] - 726["Segment
[377, 433, 0]"] - 727["Segment
[441, 448, 0]"] - 728[Solid2d] - end - subgraph path743 [Path] - 743["Path
[235, 276, 0]"] - 744["Segment
[284, 307, 0]"] - 745["Segment
[315, 337, 0]"] - 746["Segment
[345, 369, 0]"] - 747["Segment
[377, 433, 0]"] - 748["Segment
[441, 448, 0]"] - 749[Solid2d] - end - subgraph path764 [Path] - 764["Path
[235, 276, 0]"] - 765["Segment
[284, 307, 0]"] - 766["Segment
[315, 337, 0]"] - 767["Segment
[345, 369, 0]"] - 768["Segment
[377, 433, 0]"] - 769["Segment
[441, 448, 0]"] - 770[Solid2d] - end - subgraph path785 [Path] - 785["Path
[235, 276, 0]"] - 786["Segment
[284, 307, 0]"] - 787["Segment
[315, 337, 0]"] - 788["Segment
[345, 369, 0]"] - 789["Segment
[377, 433, 0]"] - 790["Segment
[441, 448, 0]"] - 791[Solid2d] - end - subgraph path806 [Path] - 806["Path
[235, 276, 0]"] - 807["Segment
[284, 307, 0]"] - 808["Segment
[315, 337, 0]"] - 809["Segment
[345, 369, 0]"] - 810["Segment
[377, 433, 0]"] - 811["Segment
[441, 448, 0]"] - 812[Solid2d] - end - subgraph path827 [Path] - 827["Path
[235, 276, 0]"] - 828["Segment
[284, 307, 0]"] - 829["Segment
[315, 337, 0]"] - 830["Segment
[345, 369, 0]"] - 831["Segment
[377, 433, 0]"] - 832["Segment
[441, 448, 0]"] - 833[Solid2d] - end - subgraph path848 [Path] - 848["Path
[235, 276, 0]"] - 849["Segment
[284, 307, 0]"] - 850["Segment
[315, 337, 0]"] - 851["Segment
[345, 369, 0]"] - 852["Segment
[377, 433, 0]"] - 853["Segment
[441, 448, 0]"] - 854[Solid2d] - end - subgraph path869 [Path] - 869["Path
[235, 276, 0]"] - 870["Segment
[284, 307, 0]"] - 871["Segment
[315, 337, 0]"] - 872["Segment
[345, 369, 0]"] - 873["Segment
[377, 433, 0]"] - 874["Segment
[441, 448, 0]"] - 875[Solid2d] - end - subgraph path890 [Path] - 890["Path
[235, 276, 0]"] - 891["Segment
[284, 307, 0]"] - 892["Segment
[315, 337, 0]"] - 893["Segment
[345, 369, 0]"] - 894["Segment
[377, 433, 0]"] - 895["Segment
[441, 448, 0]"] - 896[Solid2d] - end - subgraph path911 [Path] - 911["Path
[235, 276, 0]"] - 912["Segment
[284, 307, 0]"] - 913["Segment
[315, 337, 0]"] - 914["Segment
[345, 369, 0]"] - 915["Segment
[377, 433, 0]"] - 916["Segment
[441, 448, 0]"] - 917[Solid2d] - end - subgraph path932 [Path] - 932["Path
[235, 276, 0]"] - 933["Segment
[284, 307, 0]"] - 934["Segment
[315, 337, 0]"] - 935["Segment
[345, 369, 0]"] - 936["Segment
[377, 433, 0]"] - 937["Segment
[441, 448, 0]"] - 938[Solid2d] - end - subgraph path953 [Path] - 953["Path
[235, 276, 0]"] - 954["Segment
[284, 307, 0]"] - 955["Segment
[315, 337, 0]"] - 956["Segment
[345, 369, 0]"] - 957["Segment
[377, 433, 0]"] - 958["Segment
[441, 448, 0]"] - 959[Solid2d] + subgraph path86 [Path] + 86["Path
[6208, 6259, 0]"] + 308["Segment
[6267, 6296, 0]"] + 311["Segment
[6304, 6335, 0]"] + 313["Segment
[6343, 6373, 0]"] + 314["Segment
[6381, 6437, 0]"] + 317["Segment
[6445, 6452, 0]"] + 348[Solid2d] end 1["Plane
[609, 626, 0]"] - 9["Sweep Extrusion
[905, 935, 0]"] - 10[Wall] - 11[Wall] - 12[Wall] - 13[Wall] - 14["Cap Start"] - 15["Cap End"] - 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] - 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 20["SweepEdge Opposite"] - 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] - 23["SweepEdge Adjacent"] - 31["Sweep Extrusion
[456, 479, 0]"] - 32[Wall] - 33[Wall] - 34[Wall] - 35[Wall] - 36["Cap End"] - 37["SweepEdge Opposite"] - 38["SweepEdge Adjacent"] - 39["SweepEdge Opposite"] - 40["SweepEdge Adjacent"] - 41["SweepEdge Opposite"] - 42["SweepEdge Adjacent"] - 43["SweepEdge Opposite"] - 44["SweepEdge Adjacent"] - 60["Sweep Extrusion
[2212, 2243, 0]"] - 61[Wall] - 62[Wall] - 63[Wall] - 64[Wall] - 65[Wall] - 66[Wall] - 67[Wall] - 68[Wall] - 69[Wall] - 70[Wall] - 71[Wall] - 72[Wall] - 73["Cap Start"] - 74["SweepEdge Opposite"] - 75["SweepEdge Adjacent"] - 76["SweepEdge Opposite"] - 77["SweepEdge Adjacent"] - 78["SweepEdge Opposite"] - 79["SweepEdge Adjacent"] - 80["SweepEdge Opposite"] - 81["SweepEdge Adjacent"] - 82["SweepEdge Opposite"] - 83["SweepEdge Adjacent"] - 84["SweepEdge Opposite"] - 85["SweepEdge Adjacent"] - 86["SweepEdge Opposite"] - 87["SweepEdge Adjacent"] - 88["SweepEdge Opposite"] - 89["SweepEdge Adjacent"] - 90["SweepEdge Opposite"] - 91["SweepEdge Adjacent"] - 92["SweepEdge Opposite"] - 93["SweepEdge Adjacent"] - 94["SweepEdge Opposite"] - 95["SweepEdge Adjacent"] - 96["SweepEdge Opposite"] - 97["SweepEdge Adjacent"] - 105["Sweep Extrusion
[456, 479, 0]"] - 106[Wall] - 107[Wall] - 108[Wall] - 109[Wall] - 110["Cap End"] - 111["SweepEdge Opposite"] - 112["SweepEdge Adjacent"] - 113["SweepEdge Opposite"] - 114["SweepEdge Adjacent"] - 115["SweepEdge Opposite"] - 116["SweepEdge Adjacent"] - 117["SweepEdge Opposite"] - 118["SweepEdge Adjacent"] - 126["Sweep Extrusion
[456, 479, 0]"] - 127[Wall] - 128[Wall] - 129[Wall] - 130[Wall] - 131["Cap End"] - 132["SweepEdge Opposite"] - 133["SweepEdge Adjacent"] - 134["SweepEdge Opposite"] - 135["SweepEdge Adjacent"] - 136["SweepEdge Opposite"] - 137["SweepEdge Adjacent"] - 138["SweepEdge Opposite"] - 139["SweepEdge Adjacent"] - 147["Sweep Extrusion
[456, 479, 0]"] - 148[Wall] - 149[Wall] - 150[Wall] - 151[Wall] - 152["Cap End"] - 153["SweepEdge Opposite"] - 154["SweepEdge Adjacent"] - 155["SweepEdge Opposite"] - 156["SweepEdge Adjacent"] - 157["SweepEdge Opposite"] - 158["SweepEdge Adjacent"] - 159["SweepEdge Opposite"] - 160["SweepEdge Adjacent"] - 168["Sweep Extrusion
[456, 479, 0]"] - 169[Wall] - 170[Wall] - 171[Wall] - 172[Wall] - 173["Cap End"] - 174["SweepEdge Opposite"] - 175["SweepEdge Adjacent"] - 176["SweepEdge Opposite"] - 177["SweepEdge Adjacent"] - 178["SweepEdge Opposite"] - 179["SweepEdge Adjacent"] - 180["SweepEdge Opposite"] - 181["SweepEdge Adjacent"] - 197["Sweep Extrusion
[3490, 3519, 0]"] - 198[Wall] - 199[Wall] - 200[Wall] - 201[Wall] - 202[Wall] - 203[Wall] - 204[Wall] - 205[Wall] - 206[Wall] - 207[Wall] - 208[Wall] - 209[Wall] - 210["Cap End"] - 211["SweepEdge Opposite"] - 212["SweepEdge Adjacent"] - 213["SweepEdge Opposite"] - 214["SweepEdge Adjacent"] - 215["SweepEdge Opposite"] - 216["SweepEdge Adjacent"] - 217["SweepEdge Opposite"] - 218["SweepEdge Adjacent"] - 219["SweepEdge Opposite"] - 220["SweepEdge Adjacent"] - 221["SweepEdge Opposite"] - 222["SweepEdge Adjacent"] - 223["SweepEdge Opposite"] - 224["SweepEdge Adjacent"] - 225["SweepEdge Opposite"] - 226["SweepEdge Adjacent"] - 227["SweepEdge Opposite"] - 228["SweepEdge Adjacent"] - 229["SweepEdge Opposite"] - 230["SweepEdge Adjacent"] - 231["SweepEdge Opposite"] - 232["SweepEdge Adjacent"] - 233["SweepEdge Opposite"] - 234["SweepEdge Adjacent"] - 242["Sweep Extrusion
[456, 479, 0]"] - 243[Wall] - 244[Wall] - 245[Wall] - 246[Wall] - 247["Cap End"] - 248["SweepEdge Opposite"] - 249["SweepEdge Adjacent"] - 250["SweepEdge Opposite"] - 251["SweepEdge Adjacent"] - 252["SweepEdge Opposite"] - 253["SweepEdge Adjacent"] - 254["SweepEdge Opposite"] - 255["SweepEdge Adjacent"] - 263["Sweep Extrusion
[456, 479, 0]"] - 264[Wall] - 265[Wall] - 266[Wall] - 267[Wall] - 268["Cap End"] - 269["SweepEdge Opposite"] - 270["SweepEdge Adjacent"] - 271["SweepEdge Opposite"] - 272["SweepEdge Adjacent"] - 273["SweepEdge Opposite"] - 274["SweepEdge Adjacent"] - 275["SweepEdge Opposite"] - 276["SweepEdge Adjacent"] - 284["Sweep Extrusion
[456, 479, 0]"] - 285[Wall] - 286[Wall] - 287[Wall] - 288[Wall] - 289["Cap End"] - 290["SweepEdge Opposite"] - 291["SweepEdge Adjacent"] - 292["SweepEdge Opposite"] - 293["SweepEdge Adjacent"] - 294["SweepEdge Opposite"] - 295["SweepEdge Adjacent"] - 296["SweepEdge Opposite"] - 297["SweepEdge Adjacent"] - 305["Sweep Extrusion
[456, 479, 0]"] - 306[Wall] - 307[Wall] - 308[Wall] - 309[Wall] - 310["Cap End"] - 311["SweepEdge Opposite"] - 312["SweepEdge Adjacent"] - 313["SweepEdge Opposite"] - 314["SweepEdge Adjacent"] - 315["SweepEdge Opposite"] - 316["SweepEdge Adjacent"] - 317["SweepEdge Opposite"] - 318["SweepEdge Adjacent"] - 326["Sweep Extrusion
[456, 479, 0]"] - 327[Wall] - 328[Wall] - 329[Wall] - 330[Wall] - 331["Cap End"] - 332["SweepEdge Opposite"] - 333["SweepEdge Adjacent"] - 334["SweepEdge Opposite"] - 335["SweepEdge Adjacent"] - 336["SweepEdge Opposite"] - 337["SweepEdge Adjacent"] - 338["SweepEdge Opposite"] - 339["SweepEdge Adjacent"] - 347["Sweep Extrusion
[456, 479, 0]"] - 348[Wall] - 349[Wall] - 350[Wall] - 351[Wall] - 352["Cap End"] - 353["SweepEdge Opposite"] - 354["SweepEdge Adjacent"] - 355["SweepEdge Opposite"] - 356["SweepEdge Adjacent"] - 357["SweepEdge Opposite"] - 358["SweepEdge Adjacent"] - 359["SweepEdge Opposite"] - 360["SweepEdge Adjacent"] + 2["Plane
[6183, 6200, 0]"] + 3["Plane
[6183, 6200, 0]"] + 4["StartSketchOnFace
[183, 227, 0]"] + 5["StartSketchOnFace
[183, 227, 0]"] + 6["StartSketchOnFace
[183, 227, 0]"] + 7["StartSketchOnFace
[183, 227, 0]"] + 8["StartSketchOnFace
[183, 227, 0]"] + 9["StartSketchOnFace
[183, 227, 0]"] + 10["StartSketchOnFace
[183, 227, 0]"] + 11["StartSketchOnFace
[183, 227, 0]"] + 12["StartSketchOnFace
[183, 227, 0]"] + 13["StartSketchOnFace
[183, 227, 0]"] + 14["StartSketchOnFace
[183, 227, 0]"] + 15["StartSketchOnFace
[183, 227, 0]"] + 16["StartSketchOnFace
[183, 227, 0]"] + 17["StartSketchOnFace
[183, 227, 0]"] + 18["StartSketchOnFace
[183, 227, 0]"] + 19["StartSketchOnFace
[183, 227, 0]"] + 20["StartSketchOnFace
[183, 227, 0]"] + 21["StartSketchOnFace
[183, 227, 0]"] + 22["StartSketchOnFace
[183, 227, 0]"] + 23["StartSketchOnFace
[183, 227, 0]"] + 24["StartSketchOnFace
[183, 227, 0]"] + 25["StartSketchOnFace
[183, 227, 0]"] + 26["StartSketchOnFace
[183, 227, 0]"] + 27["StartSketchOnFace
[1466, 1500, 0]"] + 28["StartSketchOnFace
[2845, 2881, 0]"] + 29["StartSketchOnFace
[183, 227, 0]"] + 30["StartSketchOnFace
[183, 227, 0]"] + 31["StartSketchOnFace
[183, 227, 0]"] + 32["StartSketchOnFace
[183, 227, 0]"] + 33["StartSketchOnFace
[183, 227, 0]"] + 34["StartSketchOnFace
[183, 227, 0]"] + 35["StartSketchOnFace
[183, 227, 0]"] + 36["StartSketchOnFace
[183, 227, 0]"] + 37["StartSketchOnFace
[183, 227, 0]"] + 38["StartSketchOnFace
[183, 227, 0]"] + 39["StartSketchOnFace
[183, 227, 0]"] + 40["StartSketchOnFace
[183, 227, 0]"] + 41["StartSketchOnFace
[183, 227, 0]"] + 42["StartSketchOnFace
[183, 227, 0]"] + 43["StartSketchOnFace
[183, 227, 0]"] + 361["Sweep Extrusion
[456, 479, 0]"] + 362["Sweep Extrusion
[456, 479, 0]"] + 363["Sweep Extrusion
[456, 479, 0]"] + 364["Sweep Extrusion
[456, 479, 0]"] + 365["Sweep Extrusion
[456, 479, 0]"] + 366["Sweep Extrusion
[456, 479, 0]"] + 367["Sweep Extrusion
[456, 479, 0]"] 368["Sweep Extrusion
[456, 479, 0]"] - 369[Wall] - 370[Wall] - 371[Wall] - 372[Wall] - 373["Cap Start"] - 374["SweepEdge Opposite"] - 375["SweepEdge Adjacent"] - 376["SweepEdge Opposite"] - 377["SweepEdge Adjacent"] - 378["SweepEdge Opposite"] - 379["SweepEdge Adjacent"] - 380["SweepEdge Opposite"] - 381["SweepEdge Adjacent"] + 369["Sweep Extrusion
[456, 479, 0]"] + 370["Sweep Extrusion
[456, 479, 0]"] + 371["Sweep Extrusion
[456, 479, 0]"] + 372["Sweep Extrusion
[456, 479, 0]"] + 373["Sweep Extrusion
[456, 479, 0]"] + 374["Sweep Extrusion
[456, 479, 0]"] + 375["Sweep Extrusion
[456, 479, 0]"] + 376["Sweep Extrusion
[456, 479, 0]"] + 377["Sweep Extrusion
[456, 479, 0]"] + 378["Sweep Extrusion
[456, 479, 0]"] + 379["Sweep Extrusion
[456, 479, 0]"] + 380["Sweep Extrusion
[456, 479, 0]"] + 381["Sweep Extrusion
[456, 479, 0]"] + 382["Sweep Extrusion
[456, 479, 0]"] + 383["Sweep Extrusion
[456, 479, 0]"] + 384["Sweep Extrusion
[456, 479, 0]"] + 385["Sweep Extrusion
[456, 479, 0]"] + 386["Sweep Extrusion
[456, 479, 0]"] + 387["Sweep Extrusion
[456, 479, 0]"] + 388["Sweep Extrusion
[456, 479, 0]"] 389["Sweep Extrusion
[456, 479, 0]"] - 390[Wall] - 391[Wall] - 392[Wall] - 393[Wall] - 394["Cap Start"] - 395["SweepEdge Opposite"] - 396["SweepEdge Adjacent"] - 397["SweepEdge Opposite"] - 398["SweepEdge Adjacent"] - 399["SweepEdge Opposite"] - 400["SweepEdge Adjacent"] - 401["SweepEdge Opposite"] - 402["SweepEdge Adjacent"] - 410["Sweep Extrusion
[456, 479, 0]"] + 390["Sweep Extrusion
[456, 479, 0]"] + 391["Sweep Extrusion
[456, 479, 0]"] + 392["Sweep Extrusion
[456, 479, 0]"] + 393["Sweep Extrusion
[456, 479, 0]"] + 394["Sweep Extrusion
[456, 479, 0]"] + 395["Sweep Extrusion
[456, 479, 0]"] + 396["Sweep Extrusion
[456, 479, 0]"] + 397["Sweep Extrusion
[456, 479, 0]"] + 398["Sweep Extrusion
[456, 479, 0]"] + 399["Sweep Extrusion
[905, 935, 0]"] + 400["Sweep Extrusion
[2212, 2243, 0]"] + 401["Sweep Extrusion
[3490, 3519, 0]"] + 402["Sweep Extrusion
[6466, 6511, 0]"] + 403["Sweep Extrusion
[6466, 6511, 0]"] + 404[Wall] + 405[Wall] + 406[Wall] + 407[Wall] + 408[Wall] + 409[Wall] + 410[Wall] 411[Wall] 412[Wall] 413[Wall] 414[Wall] - 415["Cap Start"] - 416["SweepEdge Opposite"] - 417["SweepEdge Adjacent"] - 418["SweepEdge Opposite"] - 419["SweepEdge Adjacent"] - 420["SweepEdge Opposite"] - 421["SweepEdge Adjacent"] - 422["SweepEdge Opposite"] - 423["SweepEdge Adjacent"] - 431["Sweep Extrusion
[456, 479, 0]"] + 415[Wall] + 416[Wall] + 417[Wall] + 418[Wall] + 419[Wall] + 420[Wall] + 421[Wall] + 422[Wall] + 423[Wall] + 424[Wall] + 425[Wall] + 426[Wall] + 427[Wall] + 428[Wall] + 429[Wall] + 430[Wall] + 431[Wall] 432[Wall] 433[Wall] 434[Wall] 435[Wall] - 436["Cap End"] - 437["SweepEdge Opposite"] - 438["SweepEdge Adjacent"] - 439["SweepEdge Opposite"] - 440["SweepEdge Adjacent"] - 441["SweepEdge Opposite"] - 442["SweepEdge Adjacent"] - 443["SweepEdge Opposite"] - 444["SweepEdge Adjacent"] - 452["Sweep Extrusion
[456, 479, 0]"] + 436[Wall] + 437[Wall] + 438[Wall] + 439[Wall] + 440[Wall] + 441[Wall] + 442[Wall] + 443[Wall] + 444[Wall] + 445[Wall] + 446[Wall] + 447[Wall] + 448[Wall] + 449[Wall] + 450[Wall] + 451[Wall] + 452[Wall] 453[Wall] 454[Wall] 455[Wall] 456[Wall] - 457["Cap Start"] - 458["SweepEdge Opposite"] - 459["SweepEdge Adjacent"] - 460["SweepEdge Opposite"] - 461["SweepEdge Adjacent"] - 462["SweepEdge Opposite"] - 463["SweepEdge Adjacent"] - 464["SweepEdge Opposite"] - 465["SweepEdge Adjacent"] - 473["Sweep Extrusion
[456, 479, 0]"] + 457[Wall] + 458[Wall] + 459[Wall] + 460[Wall] + 461[Wall] + 462[Wall] + 463[Wall] + 464[Wall] + 465[Wall] + 466[Wall] + 467[Wall] + 468[Wall] + 469[Wall] + 470[Wall] + 471[Wall] + 472[Wall] + 473[Wall] 474[Wall] 475[Wall] 476[Wall] 477[Wall] - 478["Cap Start"] - 479["SweepEdge Opposite"] - 480["SweepEdge Adjacent"] - 481["SweepEdge Opposite"] - 482["SweepEdge Adjacent"] - 483["SweepEdge Opposite"] - 484["SweepEdge Adjacent"] - 485["SweepEdge Opposite"] - 486["SweepEdge Adjacent"] - 494["Sweep Extrusion
[456, 479, 0]"] + 478[Wall] + 479[Wall] + 480[Wall] + 481[Wall] + 482[Wall] + 483[Wall] + 484[Wall] + 485[Wall] + 486[Wall] + 487[Wall] + 488[Wall] + 489[Wall] + 490[Wall] + 491[Wall] + 492[Wall] + 493[Wall] + 494[Wall] 495[Wall] 496[Wall] 497[Wall] 498[Wall] - 499["Cap Start"] - 500["SweepEdge Opposite"] - 501["SweepEdge Adjacent"] - 502["SweepEdge Opposite"] - 503["SweepEdge Adjacent"] - 504["SweepEdge Opposite"] - 505["SweepEdge Adjacent"] - 506["SweepEdge Opposite"] - 507["SweepEdge Adjacent"] - 508["Plane
[6183, 6200, 0]"] - 516["Sweep Extrusion
[6466, 6511, 0]"] + 499[Wall] + 500[Wall] + 501[Wall] + 502[Wall] + 503[Wall] + 504[Wall] + 505[Wall] + 506[Wall] + 507[Wall] + 508[Wall] + 509[Wall] + 510[Wall] + 511[Wall] + 512[Wall] + 513[Wall] + 514[Wall] + 515[Wall] + 516[Wall] 517[Wall] 518[Wall] 519[Wall] 520[Wall] - 521["Cap Start"] - 522["Cap End"] - 523["SweepEdge Opposite"] - 524["SweepEdge Adjacent"] - 525["SweepEdge Opposite"] - 526["SweepEdge Adjacent"] - 527["SweepEdge Opposite"] - 528["SweepEdge Adjacent"] - 529["SweepEdge Opposite"] - 530["SweepEdge Adjacent"] - 538["Sweep Extrusion
[456, 479, 0]"] + 521[Wall] + 522[Wall] + 523[Wall] + 524[Wall] + 525[Wall] + 526[Wall] + 527[Wall] + 528[Wall] + 529[Wall] + 530[Wall] + 531[Wall] + 532[Wall] + 533[Wall] + 534[Wall] + 535[Wall] + 536[Wall] + 537[Wall] + 538[Wall] 539[Wall] 540[Wall] 541[Wall] 542[Wall] - 543["Cap End"] - 544["SweepEdge Opposite"] - 545["SweepEdge Adjacent"] - 546["SweepEdge Opposite"] - 547["SweepEdge Adjacent"] - 548["SweepEdge Opposite"] - 549["SweepEdge Adjacent"] - 550["SweepEdge Opposite"] - 551["SweepEdge Adjacent"] - 552["Plane
[6183, 6200, 0]"] - 560["Sweep Extrusion
[6466, 6511, 0]"] + 543[Wall] + 544[Wall] + 545[Wall] + 546[Wall] + 547[Wall] + 548[Wall] + 549[Wall] + 550[Wall] + 551[Wall] + 552[Wall] + 553[Wall] + 554[Wall] + 555[Wall] + 556[Wall] + 557[Wall] + 558[Wall] + 559[Wall] + 560[Wall] 561[Wall] 562[Wall] 563[Wall] 564[Wall] - 565["Cap Start"] - 566["Cap End"] - 567["SweepEdge Opposite"] - 568["SweepEdge Adjacent"] - 569["SweepEdge Opposite"] - 570["SweepEdge Adjacent"] - 571["SweepEdge Opposite"] - 572["SweepEdge Adjacent"] - 573["SweepEdge Opposite"] - 574["SweepEdge Adjacent"] - 582["Sweep Extrusion
[456, 479, 0]"] + 565[Wall] + 566[Wall] + 567[Wall] + 568[Wall] + 569[Wall] + 570[Wall] + 571[Wall] + 572[Wall] + 573[Wall] + 574[Wall] + 575[Wall] + 576[Wall] + 577[Wall] + 578[Wall] + 579[Wall] + 580[Wall] + 581[Wall] + 582[Wall] 583[Wall] 584[Wall] 585[Wall] 586[Wall] - 587["Cap End"] - 588["SweepEdge Opposite"] - 589["SweepEdge Adjacent"] - 590["SweepEdge Opposite"] - 591["SweepEdge Adjacent"] - 592["SweepEdge Opposite"] - 593["SweepEdge Adjacent"] - 594["SweepEdge Opposite"] - 595["SweepEdge Adjacent"] - 603["Sweep Extrusion
[456, 479, 0]"] - 604[Wall] - 605[Wall] - 606[Wall] - 607[Wall] - 608["Cap End"] - 609["SweepEdge Opposite"] - 610["SweepEdge Adjacent"] - 611["SweepEdge Opposite"] - 612["SweepEdge Adjacent"] - 613["SweepEdge Opposite"] - 614["SweepEdge Adjacent"] - 615["SweepEdge Opposite"] - 616["SweepEdge Adjacent"] - 624["Sweep Extrusion
[456, 479, 0]"] - 625[Wall] - 626[Wall] - 627[Wall] - 628[Wall] + 587[Wall] + 588[Wall] + 589[Wall] + 590[Wall] + 591[Wall] + 592["Cap Start"] + 593["Cap Start"] + 594["Cap Start"] + 595["Cap Start"] + 596["Cap Start"] + 597["Cap Start"] + 598["Cap Start"] + 599["Cap Start"] + 600["Cap Start"] + 601["Cap Start"] + 602["Cap Start"] + 603["Cap Start"] + 604["Cap Start"] + 605["Cap Start"] + 606["Cap Start"] + 607["Cap Start"] + 608["Cap Start"] + 609["Cap Start"] + 610["Cap Start"] + 611["Cap Start"] + 612["Cap End"] + 613["Cap End"] + 614["Cap End"] + 615["Cap End"] + 616["Cap End"] + 617["Cap End"] + 618["Cap End"] + 619["Cap End"] + 620["Cap End"] + 621["Cap End"] + 622["Cap End"] + 623["Cap End"] + 624["Cap End"] + 625["Cap End"] + 626["Cap End"] + 627["Cap End"] + 628["Cap End"] 629["Cap End"] - 630["SweepEdge Opposite"] - 631["SweepEdge Adjacent"] - 632["SweepEdge Opposite"] - 633["SweepEdge Adjacent"] - 634["SweepEdge Opposite"] - 635["SweepEdge Adjacent"] - 636["SweepEdge Opposite"] - 637["SweepEdge Adjacent"] - 645["Sweep Extrusion
[456, 479, 0]"] - 646[Wall] - 647[Wall] - 648[Wall] - 649[Wall] - 650["Cap End"] + 630["Cap End"] + 631["Cap End"] + 632["Cap End"] + 633["Cap End"] + 634["Cap End"] + 635["Cap End"] + 636["Cap End"] + 637["Cap End"] + 638["SweepEdge Opposite"] + 639["SweepEdge Opposite"] + 640["SweepEdge Opposite"] + 641["SweepEdge Opposite"] + 642["SweepEdge Opposite"] + 643["SweepEdge Opposite"] + 644["SweepEdge Opposite"] + 645["SweepEdge Opposite"] + 646["SweepEdge Opposite"] + 647["SweepEdge Opposite"] + 648["SweepEdge Opposite"] + 649["SweepEdge Opposite"] + 650["SweepEdge Opposite"] 651["SweepEdge Opposite"] - 652["SweepEdge Adjacent"] + 652["SweepEdge Opposite"] 653["SweepEdge Opposite"] - 654["SweepEdge Adjacent"] + 654["SweepEdge Opposite"] 655["SweepEdge Opposite"] - 656["SweepEdge Adjacent"] + 656["SweepEdge Opposite"] 657["SweepEdge Opposite"] - 658["SweepEdge Adjacent"] - 666["Sweep Extrusion
[456, 479, 0]"] - 667[Wall] - 668[Wall] - 669[Wall] - 670[Wall] - 671["Cap End"] + 658["SweepEdge Opposite"] + 659["SweepEdge Opposite"] + 660["SweepEdge Opposite"] + 661["SweepEdge Opposite"] + 662["SweepEdge Opposite"] + 663["SweepEdge Opposite"] + 664["SweepEdge Opposite"] + 665["SweepEdge Opposite"] + 666["SweepEdge Opposite"] + 667["SweepEdge Opposite"] + 668["SweepEdge Opposite"] + 669["SweepEdge Opposite"] + 670["SweepEdge Opposite"] + 671["SweepEdge Opposite"] 672["SweepEdge Opposite"] - 673["SweepEdge Adjacent"] + 673["SweepEdge Opposite"] 674["SweepEdge Opposite"] - 675["SweepEdge Adjacent"] + 675["SweepEdge Opposite"] 676["SweepEdge Opposite"] - 677["SweepEdge Adjacent"] + 677["SweepEdge Opposite"] 678["SweepEdge Opposite"] - 679["SweepEdge Adjacent"] - 687["Sweep Extrusion
[456, 479, 0]"] - 688[Wall] - 689[Wall] - 690[Wall] - 691[Wall] - 692["Cap End"] + 679["SweepEdge Opposite"] + 680["SweepEdge Opposite"] + 681["SweepEdge Opposite"] + 682["SweepEdge Opposite"] + 683["SweepEdge Opposite"] + 684["SweepEdge Opposite"] + 685["SweepEdge Opposite"] + 686["SweepEdge Opposite"] + 687["SweepEdge Opposite"] + 688["SweepEdge Opposite"] + 689["SweepEdge Opposite"] + 690["SweepEdge Opposite"] + 691["SweepEdge Opposite"] + 692["SweepEdge Opposite"] 693["SweepEdge Opposite"] - 694["SweepEdge Adjacent"] + 694["SweepEdge Opposite"] 695["SweepEdge Opposite"] - 696["SweepEdge Adjacent"] + 696["SweepEdge Opposite"] 697["SweepEdge Opposite"] - 698["SweepEdge Adjacent"] + 698["SweepEdge Opposite"] 699["SweepEdge Opposite"] - 700["SweepEdge Adjacent"] - 708["Sweep Extrusion
[456, 479, 0]"] - 709[Wall] - 710[Wall] - 711[Wall] - 712[Wall] - 713["Cap End"] + 700["SweepEdge Opposite"] + 701["SweepEdge Opposite"] + 702["SweepEdge Opposite"] + 703["SweepEdge Opposite"] + 704["SweepEdge Opposite"] + 705["SweepEdge Opposite"] + 706["SweepEdge Opposite"] + 707["SweepEdge Opposite"] + 708["SweepEdge Opposite"] + 709["SweepEdge Opposite"] + 710["SweepEdge Opposite"] + 711["SweepEdge Opposite"] + 712["SweepEdge Opposite"] + 713["SweepEdge Opposite"] 714["SweepEdge Opposite"] - 715["SweepEdge Adjacent"] + 715["SweepEdge Opposite"] 716["SweepEdge Opposite"] - 717["SweepEdge Adjacent"] + 717["SweepEdge Opposite"] 718["SweepEdge Opposite"] - 719["SweepEdge Adjacent"] + 719["SweepEdge Opposite"] 720["SweepEdge Opposite"] - 721["SweepEdge Adjacent"] - 729["Sweep Extrusion
[456, 479, 0]"] - 730[Wall] - 731[Wall] - 732[Wall] - 733[Wall] - 734["Cap End"] + 721["SweepEdge Opposite"] + 722["SweepEdge Opposite"] + 723["SweepEdge Opposite"] + 724["SweepEdge Opposite"] + 725["SweepEdge Opposite"] + 726["SweepEdge Opposite"] + 727["SweepEdge Opposite"] + 728["SweepEdge Opposite"] + 729["SweepEdge Opposite"] + 730["SweepEdge Opposite"] + 731["SweepEdge Opposite"] + 732["SweepEdge Opposite"] + 733["SweepEdge Opposite"] + 734["SweepEdge Opposite"] 735["SweepEdge Opposite"] - 736["SweepEdge Adjacent"] + 736["SweepEdge Opposite"] 737["SweepEdge Opposite"] - 738["SweepEdge Adjacent"] + 738["SweepEdge Opposite"] 739["SweepEdge Opposite"] - 740["SweepEdge Adjacent"] + 740["SweepEdge Opposite"] 741["SweepEdge Opposite"] - 742["SweepEdge Adjacent"] - 750["Sweep Extrusion
[456, 479, 0]"] - 751[Wall] - 752[Wall] - 753[Wall] - 754[Wall] - 755["Cap End"] + 742["SweepEdge Opposite"] + 743["SweepEdge Opposite"] + 744["SweepEdge Opposite"] + 745["SweepEdge Opposite"] + 746["SweepEdge Opposite"] + 747["SweepEdge Opposite"] + 748["SweepEdge Opposite"] + 749["SweepEdge Opposite"] + 750["SweepEdge Opposite"] + 751["SweepEdge Opposite"] + 752["SweepEdge Opposite"] + 753["SweepEdge Opposite"] + 754["SweepEdge Opposite"] + 755["SweepEdge Opposite"] 756["SweepEdge Opposite"] - 757["SweepEdge Adjacent"] + 757["SweepEdge Opposite"] 758["SweepEdge Opposite"] - 759["SweepEdge Adjacent"] + 759["SweepEdge Opposite"] 760["SweepEdge Opposite"] - 761["SweepEdge Adjacent"] + 761["SweepEdge Opposite"] 762["SweepEdge Opposite"] - 763["SweepEdge Adjacent"] - 771["Sweep Extrusion
[456, 479, 0]"] - 772[Wall] - 773[Wall] - 774[Wall] - 775[Wall] - 776["Cap Start"] + 763["SweepEdge Opposite"] + 764["SweepEdge Opposite"] + 765["SweepEdge Opposite"] + 766["SweepEdge Opposite"] + 767["SweepEdge Opposite"] + 768["SweepEdge Opposite"] + 769["SweepEdge Opposite"] + 770["SweepEdge Opposite"] + 771["SweepEdge Opposite"] + 772["SweepEdge Opposite"] + 773["SweepEdge Opposite"] + 774["SweepEdge Opposite"] + 775["SweepEdge Opposite"] + 776["SweepEdge Opposite"] 777["SweepEdge Opposite"] - 778["SweepEdge Adjacent"] + 778["SweepEdge Opposite"] 779["SweepEdge Opposite"] - 780["SweepEdge Adjacent"] + 780["SweepEdge Opposite"] 781["SweepEdge Opposite"] - 782["SweepEdge Adjacent"] + 782["SweepEdge Opposite"] 783["SweepEdge Opposite"] - 784["SweepEdge Adjacent"] - 792["Sweep Extrusion
[456, 479, 0]"] - 793[Wall] - 794[Wall] - 795[Wall] - 796[Wall] - 797["Cap Start"] + 784["SweepEdge Opposite"] + 785["SweepEdge Opposite"] + 786["SweepEdge Opposite"] + 787["SweepEdge Opposite"] + 788["SweepEdge Opposite"] + 789["SweepEdge Opposite"] + 790["SweepEdge Opposite"] + 791["SweepEdge Opposite"] + 792["SweepEdge Opposite"] + 793["SweepEdge Opposite"] + 794["SweepEdge Opposite"] + 795["SweepEdge Opposite"] + 796["SweepEdge Opposite"] + 797["SweepEdge Opposite"] 798["SweepEdge Opposite"] - 799["SweepEdge Adjacent"] + 799["SweepEdge Opposite"] 800["SweepEdge Opposite"] - 801["SweepEdge Adjacent"] + 801["SweepEdge Opposite"] 802["SweepEdge Opposite"] - 803["SweepEdge Adjacent"] + 803["SweepEdge Opposite"] 804["SweepEdge Opposite"] - 805["SweepEdge Adjacent"] - 813["Sweep Extrusion
[456, 479, 0]"] - 814[Wall] - 815[Wall] - 816[Wall] - 817[Wall] - 818["Cap Start"] + 805["SweepEdge Opposite"] + 806["SweepEdge Opposite"] + 807["SweepEdge Opposite"] + 808["SweepEdge Opposite"] + 809["SweepEdge Opposite"] + 810["SweepEdge Opposite"] + 811["SweepEdge Opposite"] + 812["SweepEdge Opposite"] + 813["SweepEdge Opposite"] + 814["SweepEdge Opposite"] + 815["SweepEdge Opposite"] + 816["SweepEdge Opposite"] + 817["SweepEdge Opposite"] + 818["SweepEdge Opposite"] 819["SweepEdge Opposite"] - 820["SweepEdge Adjacent"] + 820["SweepEdge Opposite"] 821["SweepEdge Opposite"] - 822["SweepEdge Adjacent"] + 822["SweepEdge Opposite"] 823["SweepEdge Opposite"] - 824["SweepEdge Adjacent"] + 824["SweepEdge Opposite"] 825["SweepEdge Opposite"] 826["SweepEdge Adjacent"] - 834["Sweep Extrusion
[456, 479, 0]"] - 835[Wall] - 836[Wall] - 837[Wall] - 838[Wall] - 839["Cap Start"] - 840["SweepEdge Opposite"] + 827["SweepEdge Adjacent"] + 828["SweepEdge Adjacent"] + 829["SweepEdge Adjacent"] + 830["SweepEdge Adjacent"] + 831["SweepEdge Adjacent"] + 832["SweepEdge Adjacent"] + 833["SweepEdge Adjacent"] + 834["SweepEdge Adjacent"] + 835["SweepEdge Adjacent"] + 836["SweepEdge Adjacent"] + 837["SweepEdge Adjacent"] + 838["SweepEdge Adjacent"] + 839["SweepEdge Adjacent"] + 840["SweepEdge Adjacent"] 841["SweepEdge Adjacent"] - 842["SweepEdge Opposite"] + 842["SweepEdge Adjacent"] 843["SweepEdge Adjacent"] - 844["SweepEdge Opposite"] + 844["SweepEdge Adjacent"] 845["SweepEdge Adjacent"] - 846["SweepEdge Opposite"] + 846["SweepEdge Adjacent"] 847["SweepEdge Adjacent"] - 855["Sweep Extrusion
[456, 479, 0]"] - 856[Wall] - 857[Wall] - 858[Wall] - 859[Wall] - 860["Cap Start"] - 861["SweepEdge Opposite"] + 848["SweepEdge Adjacent"] + 849["SweepEdge Adjacent"] + 850["SweepEdge Adjacent"] + 851["SweepEdge Adjacent"] + 852["SweepEdge Adjacent"] + 853["SweepEdge Adjacent"] + 854["SweepEdge Adjacent"] + 855["SweepEdge Adjacent"] + 856["SweepEdge Adjacent"] + 857["SweepEdge Adjacent"] + 858["SweepEdge Adjacent"] + 859["SweepEdge Adjacent"] + 860["SweepEdge Adjacent"] + 861["SweepEdge Adjacent"] 862["SweepEdge Adjacent"] - 863["SweepEdge Opposite"] + 863["SweepEdge Adjacent"] 864["SweepEdge Adjacent"] - 865["SweepEdge Opposite"] + 865["SweepEdge Adjacent"] 866["SweepEdge Adjacent"] - 867["SweepEdge Opposite"] + 867["SweepEdge Adjacent"] 868["SweepEdge Adjacent"] - 876["Sweep Extrusion
[456, 479, 0]"] - 877[Wall] - 878[Wall] - 879[Wall] - 880[Wall] - 881["Cap Start"] - 882["SweepEdge Opposite"] + 869["SweepEdge Adjacent"] + 870["SweepEdge Adjacent"] + 871["SweepEdge Adjacent"] + 872["SweepEdge Adjacent"] + 873["SweepEdge Adjacent"] + 874["SweepEdge Adjacent"] + 875["SweepEdge Adjacent"] + 876["SweepEdge Adjacent"] + 877["SweepEdge Adjacent"] + 878["SweepEdge Adjacent"] + 879["SweepEdge Adjacent"] + 880["SweepEdge Adjacent"] + 881["SweepEdge Adjacent"] + 882["SweepEdge Adjacent"] 883["SweepEdge Adjacent"] - 884["SweepEdge Opposite"] + 884["SweepEdge Adjacent"] 885["SweepEdge Adjacent"] - 886["SweepEdge Opposite"] + 886["SweepEdge Adjacent"] 887["SweepEdge Adjacent"] - 888["SweepEdge Opposite"] + 888["SweepEdge Adjacent"] 889["SweepEdge Adjacent"] - 897["Sweep Extrusion
[456, 479, 0]"] - 898[Wall] - 899[Wall] - 900[Wall] - 901[Wall] - 902["Cap Start"] - 903["SweepEdge Opposite"] + 890["SweepEdge Adjacent"] + 891["SweepEdge Adjacent"] + 892["SweepEdge Adjacent"] + 893["SweepEdge Adjacent"] + 894["SweepEdge Adjacent"] + 895["SweepEdge Adjacent"] + 896["SweepEdge Adjacent"] + 897["SweepEdge Adjacent"] + 898["SweepEdge Adjacent"] + 899["SweepEdge Adjacent"] + 900["SweepEdge Adjacent"] + 901["SweepEdge Adjacent"] + 902["SweepEdge Adjacent"] + 903["SweepEdge Adjacent"] 904["SweepEdge Adjacent"] - 905["SweepEdge Opposite"] + 905["SweepEdge Adjacent"] 906["SweepEdge Adjacent"] - 907["SweepEdge Opposite"] + 907["SweepEdge Adjacent"] 908["SweepEdge Adjacent"] - 909["SweepEdge Opposite"] + 909["SweepEdge Adjacent"] 910["SweepEdge Adjacent"] - 918["Sweep Extrusion
[456, 479, 0]"] - 919[Wall] - 920[Wall] - 921[Wall] - 922[Wall] - 923["Cap Start"] - 924["SweepEdge Opposite"] + 911["SweepEdge Adjacent"] + 912["SweepEdge Adjacent"] + 913["SweepEdge Adjacent"] + 914["SweepEdge Adjacent"] + 915["SweepEdge Adjacent"] + 916["SweepEdge Adjacent"] + 917["SweepEdge Adjacent"] + 918["SweepEdge Adjacent"] + 919["SweepEdge Adjacent"] + 920["SweepEdge Adjacent"] + 921["SweepEdge Adjacent"] + 922["SweepEdge Adjacent"] + 923["SweepEdge Adjacent"] + 924["SweepEdge Adjacent"] 925["SweepEdge Adjacent"] - 926["SweepEdge Opposite"] + 926["SweepEdge Adjacent"] 927["SweepEdge Adjacent"] - 928["SweepEdge Opposite"] + 928["SweepEdge Adjacent"] 929["SweepEdge Adjacent"] - 930["SweepEdge Opposite"] + 930["SweepEdge Adjacent"] 931["SweepEdge Adjacent"] - 939["Sweep Extrusion
[456, 479, 0]"] - 940[Wall] - 941[Wall] - 942[Wall] - 943[Wall] - 944["Cap Start"] - 945["SweepEdge Opposite"] + 932["SweepEdge Adjacent"] + 933["SweepEdge Adjacent"] + 934["SweepEdge Adjacent"] + 935["SweepEdge Adjacent"] + 936["SweepEdge Adjacent"] + 937["SweepEdge Adjacent"] + 938["SweepEdge Adjacent"] + 939["SweepEdge Adjacent"] + 940["SweepEdge Adjacent"] + 941["SweepEdge Adjacent"] + 942["SweepEdge Adjacent"] + 943["SweepEdge Adjacent"] + 944["SweepEdge Adjacent"] + 945["SweepEdge Adjacent"] 946["SweepEdge Adjacent"] - 947["SweepEdge Opposite"] + 947["SweepEdge Adjacent"] 948["SweepEdge Adjacent"] - 949["SweepEdge Opposite"] + 949["SweepEdge Adjacent"] 950["SweepEdge Adjacent"] - 951["SweepEdge Opposite"] + 951["SweepEdge Adjacent"] 952["SweepEdge Adjacent"] - 960["Sweep Extrusion
[456, 479, 0]"] - 961[Wall] - 962[Wall] - 963[Wall] - 964[Wall] - 965["Cap Start"] - 966["SweepEdge Opposite"] + 953["SweepEdge Adjacent"] + 954["SweepEdge Adjacent"] + 955["SweepEdge Adjacent"] + 956["SweepEdge Adjacent"] + 957["SweepEdge Adjacent"] + 958["SweepEdge Adjacent"] + 959["SweepEdge Adjacent"] + 960["SweepEdge Adjacent"] + 961["SweepEdge Adjacent"] + 962["SweepEdge Adjacent"] + 963["SweepEdge Adjacent"] + 964["SweepEdge Adjacent"] + 965["SweepEdge Adjacent"] + 966["SweepEdge Adjacent"] 967["SweepEdge Adjacent"] - 968["SweepEdge Opposite"] + 968["SweepEdge Adjacent"] 969["SweepEdge Adjacent"] - 970["SweepEdge Opposite"] + 970["SweepEdge Adjacent"] 971["SweepEdge Adjacent"] - 972["SweepEdge Opposite"] + 972["SweepEdge Adjacent"] 973["SweepEdge Adjacent"] - 974["StartSketchOnFace
[183, 227, 0]"] - 975["StartSketchOnFace
[1466, 1500, 0]"] - 976["StartSketchOnFace
[183, 227, 0]"] - 977["StartSketchOnFace
[183, 227, 0]"] - 978["StartSketchOnFace
[183, 227, 0]"] - 979["StartSketchOnFace
[183, 227, 0]"] - 980["StartSketchOnFace
[2845, 2881, 0]"] - 981["StartSketchOnFace
[183, 227, 0]"] - 982["StartSketchOnFace
[183, 227, 0]"] - 983["StartSketchOnFace
[183, 227, 0]"] - 984["StartSketchOnFace
[183, 227, 0]"] - 985["StartSketchOnFace
[183, 227, 0]"] - 986["StartSketchOnFace
[183, 227, 0]"] - 987["StartSketchOnFace
[183, 227, 0]"] - 988["StartSketchOnFace
[183, 227, 0]"] - 989["StartSketchOnFace
[183, 227, 0]"] - 990["StartSketchOnFace
[183, 227, 0]"] - 991["StartSketchOnFace
[183, 227, 0]"] - 992["StartSketchOnFace
[183, 227, 0]"] - 993["StartSketchOnFace
[183, 227, 0]"] - 994["StartSketchOnFace
[183, 227, 0]"] - 995["StartSketchOnFace
[183, 227, 0]"] - 996["StartSketchOnFace
[183, 227, 0]"] - 997["StartSketchOnFace
[183, 227, 0]"] - 998["StartSketchOnFace
[183, 227, 0]"] - 999["StartSketchOnFace
[183, 227, 0]"] - 1000["StartSketchOnFace
[183, 227, 0]"] - 1001["StartSketchOnFace
[183, 227, 0]"] - 1002["StartSketchOnFace
[183, 227, 0]"] - 1003["StartSketchOnFace
[183, 227, 0]"] - 1004["StartSketchOnFace
[183, 227, 0]"] - 1005["StartSketchOnFace
[183, 227, 0]"] - 1006["StartSketchOnFace
[183, 227, 0]"] - 1007["StartSketchOnFace
[183, 227, 0]"] - 1008["StartSketchOnFace
[183, 227, 0]"] - 1009["StartSketchOnFace
[183, 227, 0]"] - 1010["StartSketchOnFace
[183, 227, 0]"] - 1011["StartSketchOnFace
[183, 227, 0]"] - 1012["StartSketchOnFace
[183, 227, 0]"] - 1013["StartSketchOnFace
[183, 227, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 ---- 9 - 2 --- 8 - 3 --- 13 - 3 --- 22 - 3 --- 23 - 3 x--> 14 - 4 --- 12 - 4 --- 20 - 4 --- 21 - 4 x--> 14 - 5 --- 11 - 5 --- 18 - 5 --- 19 - 5 x--> 14 - 6 --- 10 - 6 --- 16 - 6 --- 17 - 6 x--> 14 - 9 --- 10 - 9 --- 11 - 9 --- 12 - 9 --- 13 - 9 --- 14 - 9 --- 15 - 9 --- 16 - 9 --- 17 - 9 --- 18 - 9 --- 19 - 9 --- 20 - 9 --- 21 - 9 --- 22 - 9 --- 23 - 11 --- 764 - 11 --- 785 - 11 --- 806 - 11 --- 827 - 11 --- 848 - 11 --- 869 - 11 --- 890 - 11 --- 911 - 11 --- 932 - 11 --- 953 - 12 --- 596 - 12 --- 680 - 15 --- 24 - 15 --- 319 - 15 --- 424 - 16 <--x 10 - 16 <--x 15 - 17 <--x 10 - 17 <--x 13 - 18 <--x 11 - 18 <--x 15 - 19 <--x 10 - 19 <--x 11 - 20 <--x 12 - 20 <--x 15 - 21 <--x 11 - 21 <--x 12 - 22 <--x 13 - 22 <--x 15 - 23 <--x 12 - 23 <--x 13 - 24 --- 25 - 24 --- 26 - 24 --- 27 - 24 --- 28 - 24 --- 29 - 24 ---- 31 - 24 --- 30 - 25 --- 35 - 25 --- 43 - 25 --- 44 - 25 <--x 15 - 26 --- 34 - 26 --- 41 - 26 --- 42 - 26 <--x 15 - 27 --- 33 - 27 --- 39 - 27 --- 40 - 27 <--x 15 - 28 --- 32 - 28 --- 37 - 28 --- 38 - 28 <--x 15 - 31 --- 32 - 31 --- 33 - 31 --- 34 - 31 --- 35 - 31 --- 36 - 31 --- 37 - 31 --- 38 - 31 --- 39 - 31 --- 40 - 31 --- 41 - 31 --- 42 - 31 --- 43 - 31 --- 44 - 36 --- 45 - 37 <--x 32 - 37 <--x 36 - 38 <--x 32 - 38 <--x 35 - 39 <--x 33 - 39 <--x 36 - 40 <--x 32 - 40 <--x 33 - 41 <--x 34 - 41 <--x 36 - 42 <--x 33 - 42 <--x 34 - 43 <--x 35 - 43 <--x 36 - 44 <--x 34 - 44 <--x 35 - 45 --- 46 - 45 --- 47 - 45 --- 48 - 45 --- 49 - 45 --- 50 - 45 --- 51 - 45 --- 52 - 45 --- 53 - 45 --- 54 - 45 --- 55 - 45 --- 56 - 45 --- 57 - 45 --- 58 - 45 ---- 60 - 45 --- 59 - 46 --- 72 - 46 --- 96 - 46 --- 97 - 46 <--x 36 - 47 --- 71 - 47 --- 94 - 47 --- 95 - 47 <--x 36 - 48 --- 70 - 48 --- 92 - 48 --- 93 - 48 <--x 36 - 49 --- 69 - 49 --- 90 - 49 --- 91 - 49 <--x 36 - 50 --- 68 - 50 --- 88 + 974["SweepEdge Adjacent"] + 975["SweepEdge Adjacent"] + 976["SweepEdge Adjacent"] + 977["SweepEdge Adjacent"] + 978["SweepEdge Adjacent"] + 979["SweepEdge Adjacent"] + 980["SweepEdge Adjacent"] + 981["SweepEdge Adjacent"] + 982["SweepEdge Adjacent"] + 983["SweepEdge Adjacent"] + 984["SweepEdge Adjacent"] + 985["SweepEdge Adjacent"] + 986["SweepEdge Adjacent"] + 987["SweepEdge Adjacent"] + 988["SweepEdge Adjacent"] + 989["SweepEdge Adjacent"] + 990["SweepEdge Adjacent"] + 991["SweepEdge Adjacent"] + 992["SweepEdge Adjacent"] + 993["SweepEdge Adjacent"] + 994["SweepEdge Adjacent"] + 995["SweepEdge Adjacent"] + 996["SweepEdge Adjacent"] + 997["SweepEdge Adjacent"] + 998["SweepEdge Adjacent"] + 999["SweepEdge Adjacent"] + 1000["SweepEdge Adjacent"] + 1001["SweepEdge Adjacent"] + 1002["SweepEdge Adjacent"] + 1003["SweepEdge Adjacent"] + 1004["SweepEdge Adjacent"] + 1005["SweepEdge Adjacent"] + 1006["SweepEdge Adjacent"] + 1007["SweepEdge Adjacent"] + 1008["SweepEdge Adjacent"] + 1009["SweepEdge Adjacent"] + 1010["SweepEdge Adjacent"] + 1011["SweepEdge Adjacent"] + 1012["SweepEdge Adjacent"] + 1013["SweepEdge Adjacent"] + 1 --- 82 + 2 --- 86 + 3 --- 85 + 438 x--> 4 + 635 x--> 5 + 438 x--> 6 + 616 x--> 7 + 438 x--> 8 + 635 x--> 9 + 438 x--> 10 + 614 x--> 11 + 439 x--> 12 + 438 x--> 13 + 438 x--> 14 + 616 x--> 15 + 438 x--> 16 + 601 x--> 17 + 601 x--> 18 + 635 x--> 19 + 601 x--> 20 + 612 x--> 21 + 601 x--> 22 + 626 x--> 23 + 621 x--> 24 + 635 x--> 25 + 438 x--> 26 + 637 x--> 27 + 601 x--> 28 + 439 x--> 29 + 601 x--> 30 + 622 x--> 31 + 630 x--> 32 + 438 x--> 33 + 635 x--> 34 + 601 x--> 35 + 632 x--> 36 + 635 x--> 37 + 619 x--> 38 + 616 x--> 39 + 601 x--> 40 + 601 x--> 41 + 438 x--> 42 + 635 x--> 43 + 44 --- 93 + 44 --- 153 + 44 --- 187 + 44 --- 228 + 44 --- 248 + 44 --- 319 + 44 ---- 367 + 635 --- 44 + 45 --- 91 + 45 --- 161 + 45 --- 188 + 45 --- 229 + 45 --- 244 + 45 --- 320 + 45 ---- 364 + 614 --- 45 + 46 --- 110 + 46 --- 159 + 46 --- 164 + 46 --- 232 + 46 --- 265 + 46 --- 321 + 46 ---- 379 + 612 --- 46 + 47 --- 106 + 47 --- 158 + 47 --- 170 + 47 --- 223 + 47 --- 268 + 47 --- 322 + 47 ---- 383 + 601 --- 47 + 48 --- 114 + 48 --- 131 + 48 --- 171 + 48 --- 237 + 48 --- 256 + 48 --- 323 + 48 ---- 365 + 438 --- 48 + 49 --- 102 + 49 --- 150 + 49 --- 196 + 49 --- 225 + 49 --- 272 + 49 --- 324 + 49 ---- 371 + 616 --- 49 50 --- 89 - 50 <--x 36 - 51 --- 67 - 51 --- 86 - 51 --- 87 - 51 <--x 36 - 52 --- 66 - 52 --- 84 - 52 --- 85 - 52 <--x 36 - 53 --- 65 - 53 --- 82 - 53 --- 83 - 53 <--x 36 - 54 --- 64 - 54 --- 80 - 54 --- 81 - 54 <--x 36 - 55 --- 63 - 55 --- 78 - 55 --- 79 - 55 <--x 36 - 56 --- 62 - 56 --- 76 - 56 --- 77 - 56 <--x 36 - 57 --- 61 - 57 --- 74 - 57 --- 75 - 57 <--x 36 - 60 --- 61 - 60 --- 62 - 60 --- 63 - 60 --- 64 - 60 --- 65 - 60 --- 66 - 60 --- 67 - 60 --- 68 - 60 --- 69 - 60 --- 70 - 60 --- 71 - 60 --- 72 - 60 --- 73 - 60 --- 74 - 60 --- 75 - 60 --- 76 - 60 --- 77 - 60 --- 78 - 60 --- 79 - 60 --- 80 - 60 --- 81 - 60 --- 82 - 60 --- 83 - 60 --- 84 - 60 --- 85 - 60 --- 86 - 60 --- 87 - 60 --- 88 - 60 --- 89 - 60 --- 90 - 60 --- 91 - 60 --- 92 - 60 --- 93 + 50 --- 145 + 50 --- 178 + 50 --- 201 + 50 --- 271 + 50 --- 325 + 50 ---- 374 + 635 --- 50 + 51 --- 96 + 51 --- 160 + 51 --- 180 + 51 --- 222 + 51 --- 253 + 51 --- 326 + 51 ---- 380 + 601 --- 51 + 52 --- 117 + 52 --- 126 + 52 --- 184 + 52 --- 230 + 52 --- 261 + 52 --- 327 + 52 ---- 398 + 438 --- 52 + 53 --- 116 + 53 --- 155 + 53 --- 194 + 53 --- 218 + 53 --- 262 + 53 --- 328 + 53 ---- 387 + 619 --- 53 + 54 --- 119 + 54 --- 157 + 54 --- 177 + 54 --- 209 + 54 --- 243 + 54 --- 329 + 54 ---- 377 + 438 --- 54 + 55 --- 99 + 55 --- 125 + 55 --- 172 + 55 --- 204 + 55 --- 266 + 55 --- 330 + 55 ---- 376 + 438 --- 55 + 56 --- 104 + 56 --- 140 + 56 --- 190 + 56 --- 231 + 56 --- 264 + 56 --- 331 + 56 ---- 370 + 438 --- 56 + 57 --- 100 + 57 --- 127 + 57 --- 165 + 57 --- 212 + 57 --- 269 + 57 --- 332 + 57 ---- 378 + 439 --- 57 + 58 --- 122 + 58 --- 128 + 58 --- 197 + 58 --- 206 + 58 --- 267 + 58 --- 333 + 58 ---- 361 + 621 --- 58 + 59 --- 109 + 59 --- 132 + 59 --- 163 + 59 --- 233 + 59 --- 259 + 59 --- 334 + 59 ---- 395 + 616 --- 59 60 --- 94 - 60 --- 95 - 60 --- 96 - 60 --- 97 - 73 --- 98 - 73 --- 119 - 73 --- 140 - 73 --- 161 - 73 --- 182 - 73 --- 235 - 73 --- 256 - 73 --- 277 - 73 --- 298 - 74 <--x 61 - 74 <--x 73 - 75 <--x 61 - 75 <--x 72 - 76 <--x 62 - 76 <--x 73 - 77 <--x 61 - 77 <--x 62 - 78 <--x 63 - 78 <--x 73 - 79 <--x 62 - 79 <--x 63 - 80 <--x 64 - 80 <--x 73 - 81 <--x 63 - 81 <--x 64 - 82 <--x 65 - 82 <--x 73 - 83 <--x 64 - 83 <--x 65 - 84 <--x 66 - 84 <--x 73 - 85 <--x 65 - 85 <--x 66 - 86 <--x 67 - 86 <--x 73 - 87 <--x 66 - 87 <--x 67 - 88 <--x 68 - 88 <--x 73 - 89 <--x 67 - 89 <--x 68 - 90 <--x 69 - 90 <--x 73 - 91 <--x 68 - 91 <--x 69 - 92 <--x 70 - 92 <--x 73 - 93 <--x 69 - 93 <--x 70 - 94 <--x 71 - 94 <--x 73 - 95 <--x 70 - 95 <--x 71 - 96 <--x 72 - 96 <--x 73 - 97 <--x 71 - 97 <--x 72 - 98 --- 99 - 98 --- 100 - 98 --- 101 - 98 --- 102 - 98 --- 103 - 98 ---- 105 - 98 --- 104 - 99 --- 109 - 99 --- 117 - 99 --- 118 - 99 <--x 73 - 100 --- 108 - 100 --- 115 - 100 --- 116 - 100 <--x 73 - 101 --- 107 - 101 --- 113 - 101 --- 114 - 101 <--x 73 - 102 --- 106 - 102 --- 111 - 102 --- 112 - 102 <--x 73 - 105 --- 106 - 105 --- 107 - 105 --- 108 - 105 --- 109 - 105 --- 110 - 105 --- 111 - 105 --- 112 - 105 --- 113 - 105 --- 114 - 105 --- 115 - 105 --- 116 - 105 --- 117 - 105 --- 118 - 111 <--x 106 - 111 <--x 110 - 112 <--x 106 - 112 <--x 109 - 113 <--x 107 - 113 <--x 110 - 114 <--x 106 - 114 <--x 107 - 115 <--x 108 - 115 <--x 110 - 116 <--x 107 - 116 <--x 108 - 117 <--x 109 - 117 <--x 110 - 118 <--x 108 - 118 <--x 109 - 119 --- 120 - 119 --- 121 - 119 --- 122 - 119 --- 123 - 119 --- 124 - 119 ---- 126 - 119 --- 125 - 120 --- 130 - 120 --- 138 - 120 --- 139 - 120 <--x 73 - 121 --- 129 - 121 --- 136 - 121 --- 137 - 121 <--x 73 - 122 --- 128 - 122 --- 134 - 122 --- 135 - 122 <--x 73 - 123 --- 127 - 123 --- 132 - 123 --- 133 - 123 <--x 73 - 126 --- 127 - 126 --- 128 - 126 --- 129 - 126 --- 130 - 126 --- 131 - 126 --- 132 - 126 --- 133 - 126 --- 134 - 126 --- 135 - 126 --- 136 - 126 --- 137 - 126 --- 138 - 126 --- 139 - 132 <--x 127 - 132 <--x 131 - 133 <--x 127 - 133 <--x 130 - 134 <--x 128 - 134 <--x 131 - 135 <--x 127 - 135 <--x 128 - 136 <--x 129 - 136 <--x 131 - 137 <--x 128 - 137 <--x 129 - 138 <--x 130 - 138 <--x 131 - 139 <--x 129 - 139 <--x 130 - 140 --- 141 - 140 --- 142 - 140 --- 143 - 140 --- 144 - 140 --- 145 - 140 ---- 147 - 140 --- 146 - 141 --- 151 - 141 --- 159 - 141 --- 160 - 141 <--x 73 - 142 --- 150 - 142 --- 157 - 142 --- 158 - 142 <--x 73 - 143 --- 149 - 143 --- 155 - 143 --- 156 - 143 <--x 73 - 144 --- 148 - 144 --- 153 - 144 --- 154 - 144 <--x 73 - 147 --- 148 - 147 --- 149 - 147 --- 150 - 147 --- 151 - 147 --- 152 - 147 --- 153 - 147 --- 154 - 147 --- 155 - 147 --- 156 - 147 --- 157 - 147 --- 158 - 147 --- 159 - 147 --- 160 - 153 <--x 148 - 153 <--x 152 - 154 <--x 148 - 154 <--x 151 - 155 <--x 149 - 155 <--x 152 - 156 <--x 148 - 156 <--x 149 - 157 <--x 150 - 157 <--x 152 - 158 <--x 149 - 158 <--x 150 - 159 <--x 151 - 159 <--x 152 - 160 <--x 150 - 160 <--x 151 - 161 --- 162 - 161 --- 163 - 161 --- 164 - 161 --- 165 - 161 --- 166 - 161 ---- 168 - 161 --- 167 - 162 --- 172 - 162 --- 180 - 162 --- 181 - 162 <--x 73 - 163 --- 171 - 163 --- 178 - 163 --- 179 - 163 <--x 73 - 164 --- 170 - 164 --- 176 - 164 --- 177 - 164 <--x 73 - 165 --- 169 - 165 --- 174 - 165 --- 175 - 165 <--x 73 - 168 --- 169 - 168 --- 170 - 168 --- 171 - 168 --- 172 - 168 --- 173 - 168 --- 174 - 168 --- 175 - 168 --- 176 - 168 --- 177 - 168 --- 178 - 168 --- 179 - 168 --- 180 - 168 --- 181 - 174 <--x 169 - 174 <--x 173 - 175 <--x 169 - 175 <--x 172 - 176 <--x 170 - 176 <--x 173 - 177 <--x 169 - 177 <--x 170 - 178 <--x 171 - 178 <--x 173 - 179 <--x 170 - 179 <--x 171 - 180 <--x 172 - 180 <--x 173 - 181 <--x 171 - 181 <--x 172 - 182 --- 183 - 182 --- 184 - 182 --- 185 - 182 --- 186 - 182 --- 187 - 182 --- 188 - 182 --- 189 - 182 --- 190 - 182 --- 191 - 182 --- 192 - 182 --- 193 - 182 --- 194 - 182 --- 195 - 182 ---- 197 - 182 --- 196 - 183 --- 209 - 183 --- 233 - 183 --- 234 - 183 <--x 73 - 184 --- 208 - 184 --- 231 - 184 --- 232 - 184 <--x 73 - 185 --- 207 - 185 --- 229 - 185 --- 230 - 185 <--x 73 - 186 --- 206 - 186 --- 227 - 186 --- 228 - 186 <--x 73 - 187 --- 205 - 187 --- 225 - 187 --- 226 - 187 <--x 73 - 188 --- 204 - 188 --- 223 - 188 --- 224 - 188 <--x 73 - 189 --- 203 - 189 --- 221 - 189 --- 222 - 189 <--x 73 - 190 --- 202 - 190 --- 219 - 190 --- 220 - 190 <--x 73 - 191 --- 201 - 191 --- 217 - 191 --- 218 - 191 <--x 73 - 192 --- 200 - 192 --- 215 - 192 --- 216 - 192 <--x 73 - 193 --- 199 - 193 --- 213 - 193 --- 214 - 193 <--x 73 - 194 --- 198 - 194 --- 211 - 194 --- 212 - 194 <--x 73 - 197 --- 198 - 197 --- 199 - 197 --- 200 - 197 --- 201 - 197 --- 202 - 197 --- 203 - 197 --- 204 - 197 --- 205 - 197 --- 206 - 197 --- 207 - 197 --- 208 - 197 --- 209 - 197 --- 210 - 197 --- 211 - 197 --- 212 - 197 --- 213 - 197 --- 214 - 197 --- 215 - 197 --- 216 - 197 --- 217 - 197 --- 218 - 197 --- 219 - 197 --- 220 - 197 --- 221 - 197 --- 222 - 197 --- 223 - 197 --- 224 - 197 --- 225 - 197 --- 226 - 197 --- 227 - 197 --- 228 - 197 --- 229 - 197 --- 230 - 197 --- 231 - 197 --- 232 - 197 --- 233 - 197 --- 234 - 211 <--x 198 - 211 <--x 210 - 212 <--x 198 - 212 <--x 209 - 213 <--x 199 - 213 <--x 210 - 214 <--x 198 - 214 <--x 199 - 215 <--x 200 - 215 <--x 210 - 216 <--x 199 - 216 <--x 200 - 217 <--x 201 - 217 <--x 210 - 218 <--x 200 - 218 <--x 201 - 219 <--x 202 - 219 <--x 210 - 220 <--x 201 - 220 <--x 202 - 221 <--x 203 - 221 <--x 210 - 222 <--x 202 - 222 <--x 203 - 223 <--x 204 - 223 <--x 210 - 224 <--x 203 - 224 <--x 204 - 225 <--x 205 - 225 <--x 210 - 226 <--x 204 - 226 <--x 205 - 227 <--x 206 - 227 <--x 210 - 228 <--x 205 - 228 <--x 206 - 229 <--x 207 - 229 <--x 210 - 230 <--x 206 - 230 <--x 207 - 231 <--x 208 - 231 <--x 210 - 232 <--x 207 - 232 <--x 208 - 233 <--x 209 - 233 <--x 210 - 234 <--x 208 - 234 <--x 209 - 235 --- 236 - 235 --- 237 - 235 --- 238 - 235 --- 239 - 235 --- 240 - 235 ---- 242 - 235 --- 241 - 236 --- 246 - 236 --- 254 - 236 --- 255 - 236 <--x 73 - 237 --- 245 - 237 --- 252 - 237 --- 253 - 237 <--x 73 - 238 --- 244 - 238 --- 250 - 238 --- 251 - 238 <--x 73 - 239 --- 243 - 239 --- 248 - 239 --- 249 - 239 <--x 73 - 242 --- 243 - 242 --- 244 - 242 --- 245 - 242 --- 246 - 242 --- 247 - 242 --- 248 - 242 --- 249 - 242 --- 250 - 242 --- 251 - 242 --- 252 - 242 --- 253 - 242 --- 254 - 242 --- 255 - 248 <--x 243 - 248 <--x 247 - 249 <--x 243 - 249 <--x 246 - 250 <--x 244 - 250 <--x 247 - 251 <--x 243 - 251 <--x 244 - 252 <--x 245 - 252 <--x 247 - 253 <--x 244 - 253 <--x 245 - 254 <--x 246 - 254 <--x 247 - 255 <--x 245 - 255 <--x 246 - 256 --- 257 - 256 --- 258 - 256 --- 259 - 256 --- 260 - 256 --- 261 - 256 ---- 263 - 256 --- 262 - 257 --- 267 - 257 --- 275 - 257 --- 276 - 257 <--x 73 - 258 --- 266 - 258 --- 273 - 258 --- 274 - 258 <--x 73 - 259 --- 265 - 259 --- 271 - 259 --- 272 - 259 <--x 73 - 260 --- 264 - 260 --- 269 - 260 --- 270 - 260 <--x 73 - 263 --- 264 - 263 --- 265 - 263 --- 266 - 263 --- 267 - 263 --- 268 - 263 --- 269 - 263 --- 270 - 263 --- 271 - 263 --- 272 - 263 --- 273 - 263 --- 274 - 263 --- 275 - 263 --- 276 - 269 <--x 264 - 269 <--x 268 - 270 <--x 264 - 270 <--x 267 - 271 <--x 265 - 271 <--x 268 - 272 <--x 264 - 272 <--x 265 - 273 <--x 266 - 273 <--x 268 - 274 <--x 265 - 274 <--x 266 - 275 <--x 267 - 275 <--x 268 - 276 <--x 266 - 276 <--x 267 - 277 --- 278 - 277 --- 279 - 277 --- 280 - 277 --- 281 - 277 --- 282 - 277 ---- 284 - 277 --- 283 - 278 --- 288 - 278 --- 296 - 278 --- 297 - 278 <--x 73 - 279 --- 287 - 279 --- 294 - 279 --- 295 - 279 <--x 73 - 280 --- 286 - 280 --- 292 - 280 --- 293 - 280 <--x 73 - 281 --- 285 - 281 --- 290 - 281 --- 291 - 281 <--x 73 - 284 --- 285 - 284 --- 286 - 284 --- 287 - 284 --- 288 - 284 --- 289 - 284 --- 290 - 284 --- 291 - 284 --- 292 - 284 --- 293 - 284 --- 294 - 284 --- 295 - 284 --- 296 - 284 --- 297 - 290 <--x 285 - 290 <--x 289 - 291 <--x 285 - 291 <--x 288 - 292 <--x 286 - 292 <--x 289 - 293 <--x 285 - 293 <--x 286 - 294 <--x 287 - 294 <--x 289 - 295 <--x 286 - 295 <--x 287 - 296 <--x 288 - 296 <--x 289 - 297 <--x 287 - 297 <--x 288 - 298 --- 299 - 298 --- 300 - 298 --- 301 - 298 --- 302 - 298 --- 303 - 298 ---- 305 - 298 --- 304 - 299 --- 309 - 299 --- 317 - 299 --- 318 - 299 <--x 73 - 300 --- 308 - 300 --- 315 - 300 --- 316 - 300 <--x 73 - 301 --- 307 - 301 --- 313 - 301 --- 314 - 301 <--x 73 - 302 --- 306 - 302 --- 311 - 302 --- 312 - 302 <--x 73 - 305 --- 306 - 305 --- 307 - 305 --- 308 - 305 --- 309 - 305 --- 310 - 305 --- 311 - 305 --- 312 - 305 --- 313 - 305 --- 314 - 305 --- 315 - 305 --- 316 - 305 --- 317 - 305 --- 318 - 311 <--x 306 - 311 <--x 310 - 312 <--x 306 - 312 <--x 309 - 313 <--x 307 - 313 <--x 310 - 314 <--x 306 - 314 <--x 307 - 315 <--x 308 - 315 <--x 310 - 316 <--x 307 - 316 <--x 308 - 317 <--x 309 - 317 <--x 310 - 318 <--x 308 - 318 <--x 309 - 319 --- 320 - 319 --- 321 - 319 --- 322 - 319 --- 323 - 319 --- 324 - 319 ---- 326 - 319 --- 325 - 320 --- 330 - 320 --- 338 - 320 --- 339 - 320 <--x 15 - 321 --- 329 - 321 --- 336 - 321 --- 337 - 321 <--x 15 - 322 --- 328 - 322 --- 334 - 322 --- 335 - 322 <--x 15 - 323 --- 327 - 323 --- 332 - 323 --- 333 - 323 <--x 15 - 326 --- 327 - 326 --- 328 - 326 --- 329 - 326 --- 330 - 326 --- 331 - 326 --- 332 - 326 --- 333 - 326 --- 334 - 326 --- 335 - 326 --- 336 - 326 --- 337 - 326 --- 338 - 326 --- 339 - 331 --- 340 - 331 --- 361 - 331 --- 382 - 331 --- 403 - 331 --- 445 - 331 --- 466 - 331 --- 487 - 332 <--x 327 - 332 <--x 331 - 333 <--x 327 - 333 <--x 330 - 334 <--x 328 - 334 <--x 331 - 335 <--x 327 - 335 <--x 328 - 336 <--x 329 - 336 <--x 331 - 337 <--x 328 - 337 <--x 329 - 338 <--x 330 - 338 <--x 331 - 339 <--x 329 - 339 <--x 330 - 340 --- 341 - 340 --- 342 - 340 --- 343 - 340 --- 344 - 340 --- 345 - 340 ---- 347 - 340 --- 346 - 341 --- 351 - 341 --- 359 - 341 --- 360 - 341 <--x 331 - 342 --- 350 - 342 --- 357 - 342 --- 358 - 342 <--x 331 - 343 --- 349 - 343 --- 355 - 343 --- 356 - 343 <--x 331 - 344 --- 348 - 344 --- 353 - 344 --- 354 - 344 <--x 331 - 347 --- 348 - 347 --- 349 - 347 --- 350 - 347 --- 351 - 347 --- 352 - 347 --- 353 - 347 --- 354 - 347 --- 355 - 347 --- 356 - 347 --- 357 - 347 --- 358 - 347 --- 359 - 347 --- 360 - 353 <--x 348 - 353 <--x 352 - 354 <--x 348 - 354 <--x 351 - 355 <--x 349 - 355 <--x 352 - 356 <--x 348 - 356 <--x 349 - 357 <--x 350 - 357 <--x 352 - 358 <--x 349 - 358 <--x 350 - 359 <--x 351 - 359 <--x 352 - 360 <--x 350 - 360 <--x 351 - 361 --- 362 - 361 --- 363 - 361 --- 364 - 361 --- 365 - 361 --- 366 - 361 ---- 368 - 361 --- 367 - 362 --- 372 - 362 --- 380 - 362 --- 381 - 362 <--x 331 - 363 --- 371 - 363 --- 378 - 363 --- 379 - 363 <--x 331 - 364 --- 370 - 364 --- 376 - 364 --- 377 - 364 <--x 331 - 365 --- 369 - 365 --- 374 - 365 --- 375 - 365 <--x 331 - 368 --- 369 - 368 --- 370 - 368 --- 371 - 368 --- 372 - 368 --- 373 - 368 --- 374 - 368 --- 375 - 368 --- 376 - 368 --- 377 - 368 --- 378 - 368 --- 379 - 368 --- 380 - 368 --- 381 - 374 <--x 369 - 374 <--x 373 - 375 <--x 369 - 375 <--x 372 - 376 <--x 370 - 376 <--x 373 - 377 <--x 369 - 377 <--x 370 - 378 <--x 371 - 378 <--x 373 - 379 <--x 370 - 379 <--x 371 - 380 <--x 372 - 380 <--x 373 - 381 <--x 371 - 381 <--x 372 - 382 --- 383 - 382 --- 384 - 382 --- 385 - 382 --- 386 - 382 --- 387 - 382 ---- 389 - 382 --- 388 - 383 --- 393 - 383 --- 401 - 383 --- 402 - 383 <--x 331 - 384 --- 392 - 384 --- 399 - 384 --- 400 - 384 <--x 331 - 385 --- 391 - 385 --- 397 - 385 --- 398 - 385 <--x 331 - 386 --- 390 - 386 --- 395 - 386 --- 396 - 386 <--x 331 - 389 --- 390 - 389 --- 391 - 389 --- 392 - 389 --- 393 - 389 --- 394 - 389 --- 395 - 389 --- 396 - 389 --- 397 - 389 --- 398 - 389 --- 399 - 389 --- 400 - 389 --- 401 - 389 --- 402 - 395 <--x 390 - 395 <--x 394 - 396 <--x 390 - 396 <--x 393 - 397 <--x 391 - 397 <--x 394 - 398 <--x 390 - 398 <--x 391 - 399 <--x 392 - 399 <--x 394 - 400 <--x 391 - 400 <--x 392 - 401 <--x 393 - 401 <--x 394 - 402 <--x 392 - 402 <--x 393 - 403 --- 404 - 403 --- 405 - 403 --- 406 - 403 --- 407 - 403 --- 408 - 403 ---- 410 - 403 --- 409 - 404 --- 411 - 404 --- 416 - 404 --- 417 - 404 <--x 331 - 405 --- 412 - 405 --- 418 - 405 --- 419 - 405 <--x 331 - 406 --- 413 - 406 --- 420 - 406 --- 421 - 406 <--x 331 - 407 --- 414 - 407 --- 422 - 407 --- 423 - 407 <--x 331 - 410 --- 411 - 410 --- 412 - 410 --- 413 - 410 --- 414 - 410 --- 415 - 410 --- 416 - 410 --- 417 - 410 --- 418 - 410 --- 419 - 410 --- 420 - 410 --- 421 - 410 --- 422 - 410 --- 423 - 416 <--x 411 - 416 <--x 415 - 417 <--x 411 - 417 <--x 412 - 418 <--x 412 - 418 <--x 415 - 419 <--x 412 - 419 <--x 413 - 420 <--x 413 - 420 <--x 415 - 421 <--x 413 - 421 <--x 414 - 422 <--x 414 - 422 <--x 415 - 423 <--x 411 - 423 <--x 414 - 424 --- 425 - 424 --- 426 - 424 --- 427 - 424 --- 428 - 424 --- 429 - 424 ---- 431 - 424 --- 430 - 425 --- 435 - 425 --- 443 - 425 --- 444 - 425 <--x 15 - 426 --- 434 - 426 --- 441 - 426 --- 442 - 426 <--x 15 - 427 --- 433 - 427 --- 439 - 427 --- 440 - 427 <--x 15 - 428 --- 432 - 428 --- 437 - 428 --- 438 - 428 <--x 15 - 431 --- 432 - 431 --- 433 - 431 --- 434 - 431 --- 435 - 431 --- 436 - 431 --- 437 - 431 --- 438 - 431 --- 439 - 431 --- 440 - 431 --- 441 - 431 --- 442 - 431 --- 443 - 431 --- 444 - 437 <--x 432 - 437 <--x 436 - 438 <--x 432 - 438 <--x 435 - 439 <--x 433 - 439 <--x 436 - 440 <--x 432 - 440 <--x 433 - 441 <--x 434 - 441 <--x 436 - 442 <--x 433 - 442 <--x 434 - 443 <--x 435 - 443 <--x 436 - 444 <--x 434 - 444 <--x 435 - 445 --- 446 - 445 --- 447 - 445 --- 448 - 445 --- 449 - 445 --- 450 - 445 ---- 452 - 445 --- 451 - 446 --- 453 - 446 --- 458 - 446 --- 459 - 446 <--x 331 - 447 --- 454 - 447 --- 460 - 447 --- 461 - 447 <--x 331 - 448 --- 455 - 448 --- 462 - 448 --- 463 - 448 <--x 331 - 449 --- 456 - 449 --- 464 - 449 --- 465 - 449 <--x 331 - 452 --- 453 - 452 --- 454 - 452 --- 455 - 452 --- 456 - 452 --- 457 - 452 --- 458 - 452 --- 459 - 452 --- 460 - 452 --- 461 - 452 --- 462 - 452 --- 463 - 452 --- 464 - 452 --- 465 - 458 <--x 453 - 458 <--x 457 - 459 <--x 453 - 459 <--x 454 - 460 <--x 454 - 460 <--x 457 - 461 <--x 454 - 461 <--x 455 - 462 <--x 455 - 462 <--x 457 - 463 <--x 455 - 463 <--x 456 - 464 <--x 456 - 464 <--x 457 - 465 <--x 453 - 465 <--x 456 - 466 --- 467 - 466 --- 468 - 466 --- 469 - 466 --- 470 - 466 --- 471 - 466 ---- 473 - 466 --- 472 - 467 --- 474 - 467 --- 479 - 467 --- 480 - 467 <--x 331 - 468 --- 475 - 468 --- 481 - 468 --- 482 - 468 <--x 331 - 469 --- 476 - 469 --- 483 - 469 --- 484 - 469 <--x 331 - 470 --- 477 - 470 --- 485 - 470 --- 486 - 470 <--x 331 - 473 --- 474 - 473 --- 475 - 473 --- 476 - 473 --- 477 - 473 --- 478 - 473 --- 479 - 473 --- 480 - 473 --- 481 - 473 --- 482 - 473 --- 483 - 473 --- 484 - 473 --- 485 - 473 --- 486 - 479 <--x 474 - 479 <--x 478 - 480 <--x 474 - 480 <--x 475 - 481 <--x 475 - 481 <--x 478 - 482 <--x 475 - 482 <--x 476 - 483 <--x 476 - 483 <--x 478 - 484 <--x 476 - 484 <--x 477 - 485 <--x 477 - 485 <--x 478 - 486 <--x 474 - 486 <--x 477 - 487 --- 488 - 487 --- 489 - 487 --- 490 - 487 --- 491 - 487 --- 492 - 487 ---- 494 - 487 --- 493 - 488 --- 495 - 488 --- 500 - 488 --- 501 - 488 <--x 331 - 489 --- 496 - 489 --- 502 - 489 --- 503 - 489 <--x 331 - 490 --- 497 - 490 --- 504 - 490 --- 505 - 490 <--x 331 - 491 --- 498 - 491 --- 506 - 491 --- 507 - 491 <--x 331 - 494 --- 495 - 494 --- 496 - 494 --- 497 - 494 --- 498 - 494 --- 499 - 494 --- 500 - 494 --- 501 - 494 --- 502 - 494 --- 503 - 494 --- 504 - 494 --- 505 - 494 --- 506 - 494 --- 507 - 500 <--x 495 - 500 <--x 499 - 501 <--x 495 - 501 <--x 496 - 502 <--x 496 - 502 <--x 499 - 503 <--x 496 - 503 <--x 497 - 504 <--x 497 - 504 <--x 499 - 505 <--x 497 - 505 <--x 498 - 506 <--x 498 - 506 <--x 499 - 507 <--x 495 - 507 <--x 498 - 508 --- 509 - 509 --- 510 - 509 --- 511 - 509 --- 512 - 509 --- 513 - 509 --- 514 - 509 ---- 516 - 509 --- 515 - 510 --- 520 - 510 --- 529 - 510 --- 530 - 510 x--> 521 - 511 --- 519 - 511 --- 527 - 511 --- 528 - 511 x--> 521 - 512 --- 518 - 512 --- 525 - 512 --- 526 - 512 x--> 521 - 513 --- 517 - 513 --- 523 - 513 --- 524 - 513 x--> 521 - 516 --- 517 - 516 --- 518 - 516 --- 519 - 516 --- 520 - 516 --- 521 - 516 --- 522 - 516 --- 523 - 516 --- 524 - 516 --- 525 - 516 --- 526 - 516 --- 527 - 516 --- 528 - 516 --- 529 - 516 --- 530 - 522 --- 531 - 523 <--x 517 - 523 <--x 522 - 524 <--x 517 - 524 <--x 520 - 525 <--x 518 - 525 <--x 522 - 526 <--x 517 - 526 <--x 518 - 527 <--x 519 - 527 <--x 522 - 528 <--x 518 - 528 <--x 519 - 529 <--x 520 - 529 <--x 522 - 530 <--x 519 - 530 <--x 520 - 531 --- 532 - 531 --- 533 - 531 --- 534 - 531 --- 535 - 531 --- 536 - 531 ---- 538 - 531 --- 537 - 532 --- 542 - 532 --- 550 - 532 --- 551 - 532 <--x 522 - 533 --- 541 - 533 --- 548 - 533 --- 549 - 533 <--x 522 - 534 --- 540 - 534 --- 546 - 534 --- 547 - 534 <--x 522 - 535 --- 539 - 535 --- 544 - 535 --- 545 - 535 <--x 522 - 538 --- 539 - 538 --- 540 - 538 --- 541 - 538 --- 542 - 538 --- 543 - 538 --- 544 - 538 --- 545 - 538 --- 546 - 538 --- 547 - 538 --- 548 - 538 --- 549 - 538 --- 550 - 538 --- 551 - 544 <--x 539 - 544 <--x 543 - 545 <--x 539 - 545 <--x 542 - 546 <--x 540 - 546 <--x 543 - 547 <--x 539 - 547 <--x 540 - 548 <--x 541 - 548 <--x 543 - 549 <--x 540 - 549 <--x 541 - 550 <--x 542 - 550 <--x 543 - 551 <--x 541 - 551 <--x 542 - 552 --- 553 - 553 --- 554 - 553 --- 555 - 553 --- 556 - 553 --- 557 - 553 --- 558 - 553 ---- 560 - 553 --- 559 - 554 --- 564 - 554 --- 573 - 554 --- 574 - 554 x--> 565 - 555 --- 563 - 555 --- 571 - 555 --- 572 - 555 x--> 565 - 556 --- 562 - 556 --- 569 - 556 --- 570 - 556 x--> 565 - 557 --- 561 - 557 --- 567 - 557 --- 568 - 557 x--> 565 - 560 --- 561 - 560 --- 562 - 560 --- 563 - 560 --- 564 - 560 --- 565 - 560 --- 566 - 560 --- 567 - 560 --- 568 - 560 --- 569 - 560 --- 570 - 560 --- 571 - 560 --- 572 - 560 --- 573 - 560 --- 574 - 566 --- 575 - 567 <--x 561 - 567 <--x 566 - 568 <--x 561 - 568 <--x 564 - 569 <--x 562 - 569 <--x 566 - 570 <--x 561 - 570 <--x 562 - 571 <--x 563 - 571 <--x 566 - 572 <--x 562 - 572 <--x 563 - 573 <--x 564 - 573 <--x 566 - 574 <--x 563 - 574 <--x 564 - 575 --- 576 - 575 --- 577 - 575 --- 578 - 575 --- 579 - 575 --- 580 - 575 ---- 582 - 575 --- 581 - 576 --- 586 - 576 --- 594 - 576 --- 595 - 576 <--x 566 - 577 --- 585 - 577 --- 592 - 577 --- 593 - 577 <--x 566 - 578 --- 584 - 578 --- 590 - 578 --- 591 - 578 <--x 566 - 579 --- 583 - 579 --- 588 - 579 --- 589 - 579 <--x 566 - 582 --- 583 - 582 --- 584 - 582 --- 585 - 582 --- 586 - 582 --- 587 - 582 --- 588 - 582 --- 589 - 582 --- 590 - 582 --- 591 - 582 --- 592 - 582 --- 593 - 582 --- 594 - 582 --- 595 - 588 <--x 583 - 588 <--x 587 - 589 <--x 583 - 589 <--x 586 - 590 <--x 584 - 590 <--x 587 - 591 <--x 583 - 591 <--x 584 - 592 <--x 585 - 592 <--x 587 - 593 <--x 584 - 593 <--x 585 - 594 <--x 586 - 594 <--x 587 - 595 <--x 585 - 595 <--x 586 - 596 --- 597 - 596 --- 598 - 596 --- 599 - 596 --- 600 - 596 --- 601 - 596 ---- 603 - 596 --- 602 - 597 --- 604 - 597 --- 609 - 597 --- 610 - 597 <--x 12 - 598 --- 605 - 598 --- 611 - 598 --- 612 - 598 <--x 12 - 599 --- 606 - 599 --- 613 - 599 --- 614 - 599 <--x 12 - 600 --- 607 - 600 --- 615 - 600 --- 616 - 600 <--x 12 - 603 --- 604 - 603 --- 605 - 603 --- 606 - 603 --- 607 - 603 --- 608 - 603 --- 609 - 603 --- 610 - 603 --- 611 - 603 --- 612 - 603 --- 613 - 603 --- 614 - 603 --- 615 - 603 --- 616 - 608 --- 617 - 609 <--x 604 - 609 <--x 608 - 610 <--x 604 - 610 <--x 605 - 611 <--x 605 - 611 <--x 608 - 612 <--x 605 - 612 <--x 606 - 613 <--x 606 - 613 <--x 608 - 614 <--x 606 - 614 <--x 607 - 615 <--x 607 - 615 <--x 608 - 616 <--x 604 - 616 <--x 607 - 617 --- 618 - 617 --- 619 - 617 --- 620 - 617 --- 621 - 617 --- 622 - 617 ---- 624 - 617 --- 623 - 618 --- 625 - 618 --- 630 - 618 --- 631 - 618 <--x 608 - 619 --- 626 - 619 --- 632 - 619 --- 633 - 619 <--x 608 - 620 --- 627 - 620 --- 634 - 620 --- 635 - 620 <--x 608 - 621 --- 628 - 621 --- 636 - 621 --- 637 - 621 <--x 608 - 624 --- 625 - 624 --- 626 - 624 --- 627 - 624 --- 628 - 624 --- 629 - 624 --- 630 - 624 --- 631 - 624 --- 632 - 624 --- 633 - 624 --- 634 - 624 --- 635 - 624 --- 636 - 624 --- 637 - 629 --- 638 - 630 <--x 625 - 630 <--x 629 - 631 <--x 625 - 631 <--x 626 - 632 <--x 626 - 632 <--x 629 - 633 <--x 626 - 633 <--x 627 - 634 <--x 627 - 634 <--x 629 - 635 <--x 627 - 635 <--x 628 - 636 <--x 628 - 636 <--x 629 - 637 <--x 625 - 637 <--x 628 - 638 --- 639 - 638 --- 640 - 638 --- 641 - 638 --- 642 - 638 --- 643 - 638 ---- 645 - 638 --- 644 - 639 --- 646 - 639 --- 651 - 639 --- 652 - 639 <--x 629 - 640 --- 647 - 640 --- 653 - 640 --- 654 - 640 <--x 629 - 641 --- 648 - 641 --- 655 - 641 --- 656 - 641 <--x 629 - 642 --- 649 - 642 --- 657 - 642 --- 658 - 642 <--x 629 - 645 --- 646 - 645 --- 647 - 645 --- 648 - 645 --- 649 - 645 --- 650 - 645 --- 651 - 645 --- 652 - 645 --- 653 - 645 --- 654 - 645 --- 655 - 645 --- 656 - 645 --- 657 - 645 --- 658 - 650 --- 659 - 651 <--x 646 - 651 <--x 650 - 652 <--x 646 - 652 <--x 647 - 653 <--x 647 - 653 <--x 650 - 654 <--x 647 - 654 <--x 648 - 655 <--x 648 - 655 <--x 650 - 656 <--x 648 - 656 <--x 649 - 657 <--x 649 - 657 <--x 650 - 658 <--x 646 - 658 <--x 649 - 659 --- 660 - 659 --- 661 - 659 --- 662 - 659 --- 663 - 659 --- 664 - 659 ---- 666 - 659 --- 665 - 660 --- 667 - 660 --- 672 - 660 --- 673 - 660 <--x 650 - 661 --- 668 - 661 --- 674 - 661 --- 675 - 661 <--x 650 - 662 --- 669 - 662 --- 676 - 662 --- 677 - 662 <--x 650 - 663 --- 670 - 663 --- 678 - 663 --- 679 - 663 <--x 650 - 666 --- 667 - 666 --- 668 - 666 --- 669 - 666 --- 670 - 666 --- 671 - 666 --- 672 - 666 --- 673 - 666 --- 674 - 666 --- 675 - 666 --- 676 - 666 --- 677 - 666 --- 678 - 666 --- 679 - 672 <--x 667 - 672 <--x 671 - 673 <--x 667 - 673 <--x 668 - 674 <--x 668 - 674 <--x 671 - 675 <--x 668 - 675 <--x 669 - 676 <--x 669 - 676 <--x 671 - 677 <--x 669 - 677 <--x 670 - 678 <--x 670 - 678 <--x 671 - 679 <--x 667 - 679 <--x 670 - 680 --- 681 - 680 --- 682 - 680 --- 683 - 680 --- 684 - 680 --- 685 - 680 ---- 687 - 680 --- 686 - 681 --- 688 - 681 --- 693 - 681 --- 694 - 681 <--x 12 - 682 --- 689 - 682 --- 695 - 682 --- 696 - 682 <--x 12 - 683 --- 690 - 683 --- 697 - 683 --- 698 - 683 <--x 12 - 684 --- 691 - 684 --- 699 - 684 --- 700 - 684 <--x 12 - 687 --- 688 - 687 --- 689 - 687 --- 690 - 687 --- 691 - 687 --- 692 - 687 --- 693 - 687 --- 694 - 687 --- 695 - 687 --- 696 - 687 --- 697 - 687 --- 698 - 687 --- 699 - 687 --- 700 - 692 --- 701 - 693 <--x 688 - 693 <--x 692 - 694 <--x 688 - 694 <--x 689 - 695 <--x 689 - 695 <--x 692 - 696 <--x 689 - 696 <--x 690 - 697 <--x 690 - 697 <--x 692 - 698 <--x 690 - 698 <--x 691 - 699 <--x 691 - 699 <--x 692 - 700 <--x 688 - 700 <--x 691 - 701 --- 702 - 701 --- 703 - 701 --- 704 - 701 --- 705 - 701 --- 706 - 701 ---- 708 - 701 --- 707 - 702 --- 709 - 702 --- 714 - 702 --- 715 - 702 <--x 692 - 703 --- 710 - 703 --- 716 - 703 --- 717 - 703 <--x 692 - 704 --- 711 - 704 --- 718 - 704 --- 719 - 704 <--x 692 - 705 --- 712 - 705 --- 720 - 705 --- 721 - 705 <--x 692 - 708 --- 709 - 708 --- 710 - 708 --- 711 - 708 --- 712 - 708 --- 713 - 708 --- 714 - 708 --- 715 - 708 --- 716 - 708 --- 717 - 708 --- 718 - 708 --- 719 - 708 --- 720 - 708 --- 721 - 713 --- 722 - 714 <--x 709 - 714 <--x 713 - 715 <--x 709 - 715 <--x 710 - 716 <--x 710 - 716 <--x 713 - 717 <--x 710 - 717 <--x 711 - 718 <--x 711 - 718 <--x 713 - 719 <--x 711 - 719 <--x 712 - 720 <--x 712 - 720 <--x 713 - 721 <--x 709 - 721 <--x 712 - 722 --- 723 - 722 --- 724 - 722 --- 725 - 722 --- 726 - 722 --- 727 - 722 ---- 729 - 722 --- 728 - 723 --- 730 - 723 --- 735 - 723 --- 736 - 723 <--x 713 - 724 --- 731 - 724 --- 737 - 724 --- 738 - 724 <--x 713 - 725 --- 732 - 725 --- 739 - 725 --- 740 - 725 <--x 713 - 726 --- 733 - 726 --- 741 - 726 --- 742 - 726 <--x 713 - 729 --- 730 - 729 --- 731 - 729 --- 732 - 729 --- 733 - 729 --- 734 - 729 --- 735 - 729 --- 736 - 729 --- 737 - 729 --- 738 - 729 --- 739 - 729 --- 740 - 729 --- 741 - 729 --- 742 - 734 --- 743 - 735 <--x 730 - 735 <--x 734 - 736 <--x 730 - 736 <--x 731 - 737 <--x 731 - 737 <--x 734 - 738 <--x 731 - 738 <--x 732 - 739 <--x 732 - 739 <--x 734 - 740 <--x 732 - 740 <--x 733 - 741 <--x 733 - 741 <--x 734 - 742 <--x 730 - 742 <--x 733 - 743 --- 744 - 743 --- 745 - 743 --- 746 - 743 --- 747 - 743 --- 748 - 743 ---- 750 - 743 --- 749 - 744 --- 751 - 744 --- 756 - 744 --- 757 - 744 <--x 734 - 745 --- 752 - 745 --- 758 - 745 --- 759 - 745 <--x 734 - 746 --- 753 - 746 --- 760 - 746 --- 761 - 746 <--x 734 - 747 --- 754 - 747 --- 762 - 747 --- 763 - 747 <--x 734 - 750 --- 751 - 750 --- 752 - 750 --- 753 - 750 --- 754 - 750 --- 755 - 750 --- 756 - 750 --- 757 - 750 --- 758 - 750 --- 759 - 750 --- 760 - 750 --- 761 - 750 --- 762 - 750 --- 763 - 756 <--x 751 - 756 <--x 755 - 757 <--x 751 - 757 <--x 752 - 758 <--x 752 - 758 <--x 755 - 759 <--x 752 - 759 <--x 753 - 760 <--x 753 - 760 <--x 755 - 761 <--x 753 - 761 <--x 754 - 762 <--x 754 - 762 <--x 755 - 763 <--x 751 - 763 <--x 754 - 764 --- 765 - 764 --- 766 - 764 --- 767 - 764 --- 768 - 764 --- 769 - 764 ---- 771 - 764 --- 770 - 765 --- 775 - 765 --- 783 - 765 --- 784 - 765 <--x 11 - 766 --- 774 - 766 --- 781 - 766 --- 782 - 766 <--x 11 - 767 --- 773 - 767 --- 779 - 767 --- 780 - 767 <--x 11 - 768 --- 772 - 768 --- 777 - 768 --- 778 - 768 <--x 11 - 771 --- 772 - 771 --- 773 - 771 --- 774 - 771 --- 775 - 771 --- 776 - 771 --- 777 - 771 --- 778 - 771 --- 779 - 771 --- 780 - 771 --- 781 - 771 --- 782 - 771 --- 783 - 771 --- 784 - 777 <--x 772 - 777 <--x 776 - 778 <--x 772 - 778 <--x 775 - 779 <--x 773 - 779 <--x 776 - 780 <--x 772 - 780 <--x 773 - 781 <--x 774 - 781 <--x 776 - 782 <--x 773 - 782 <--x 774 - 783 <--x 775 - 783 <--x 776 - 784 <--x 774 - 784 <--x 775 - 785 --- 786 - 785 --- 787 - 785 --- 788 - 785 --- 789 - 785 --- 790 - 785 ---- 792 - 785 --- 791 - 786 --- 796 - 786 --- 804 - 786 --- 805 - 786 <--x 11 - 787 --- 795 - 787 --- 802 - 787 --- 803 - 787 <--x 11 - 788 --- 794 - 788 --- 800 - 788 --- 801 - 788 <--x 11 - 789 --- 793 - 789 --- 798 - 789 --- 799 - 789 <--x 11 - 792 --- 793 - 792 --- 794 - 792 --- 795 - 792 --- 796 - 792 --- 797 - 792 --- 798 - 792 --- 799 - 792 --- 800 - 792 --- 801 - 792 --- 802 - 792 --- 803 - 792 --- 804 - 792 --- 805 - 798 <--x 793 - 798 <--x 797 - 799 <--x 793 - 799 <--x 796 - 800 <--x 794 - 800 <--x 797 - 801 <--x 793 - 801 <--x 794 - 802 <--x 795 - 802 <--x 797 - 803 <--x 794 - 803 <--x 795 - 804 <--x 796 - 804 <--x 797 - 805 <--x 795 - 805 <--x 796 - 806 --- 807 - 806 --- 808 - 806 --- 809 - 806 --- 810 - 806 --- 811 - 806 ---- 813 - 806 --- 812 - 807 --- 817 - 807 --- 825 - 807 --- 826 - 807 <--x 11 - 808 --- 816 - 808 --- 823 - 808 --- 824 - 808 <--x 11 - 809 --- 815 - 809 --- 821 - 809 --- 822 - 809 <--x 11 - 810 --- 814 - 810 --- 819 - 810 --- 820 - 810 <--x 11 - 813 --- 814 - 813 --- 815 - 813 --- 816 - 813 --- 817 - 813 --- 818 - 813 --- 819 - 813 --- 820 - 813 --- 821 - 813 --- 822 - 813 --- 823 - 813 --- 824 - 813 --- 825 - 813 --- 826 - 819 <--x 814 - 819 <--x 818 - 820 <--x 814 - 820 <--x 817 - 821 <--x 815 - 821 <--x 818 - 822 <--x 814 - 822 <--x 815 - 823 <--x 816 - 823 <--x 818 - 824 <--x 815 - 824 <--x 816 - 825 <--x 817 - 825 <--x 818 - 826 <--x 816 - 826 <--x 817 - 827 --- 828 - 827 --- 829 - 827 --- 830 - 827 --- 831 - 827 --- 832 - 827 ---- 834 - 827 --- 833 - 828 --- 838 - 828 --- 846 - 828 --- 847 - 828 <--x 11 - 829 --- 837 - 829 --- 844 - 829 --- 845 - 829 <--x 11 - 830 --- 836 - 830 --- 842 - 830 --- 843 - 830 <--x 11 - 831 --- 835 - 831 --- 840 - 831 --- 841 - 831 <--x 11 - 834 --- 835 - 834 --- 836 - 834 --- 837 - 834 --- 838 - 834 --- 839 - 834 --- 840 - 834 --- 841 - 834 --- 842 - 834 --- 843 - 834 --- 844 - 834 --- 845 - 834 --- 846 - 834 --- 847 - 840 <--x 835 - 840 <--x 839 - 841 <--x 835 - 841 <--x 838 - 842 <--x 836 - 842 <--x 839 - 843 <--x 835 - 843 <--x 836 - 844 <--x 837 - 844 <--x 839 - 845 <--x 836 - 845 <--x 837 - 846 <--x 838 - 846 <--x 839 - 847 <--x 837 - 847 <--x 838 - 848 --- 849 - 848 --- 850 - 848 --- 851 - 848 --- 852 - 848 --- 853 - 848 ---- 855 - 848 --- 854 - 849 --- 859 - 849 --- 867 - 849 --- 868 - 849 <--x 11 - 850 --- 858 - 850 --- 865 - 850 --- 866 - 850 <--x 11 - 851 --- 857 - 851 --- 863 - 851 --- 864 - 851 <--x 11 - 852 --- 856 - 852 --- 861 - 852 --- 862 - 852 <--x 11 - 855 --- 856 - 855 --- 857 - 855 --- 858 - 855 --- 859 - 855 --- 860 - 855 --- 861 - 855 --- 862 - 855 --- 863 - 855 --- 864 - 855 --- 865 - 855 --- 866 - 855 --- 867 - 855 --- 868 - 861 <--x 856 - 861 <--x 860 - 862 <--x 856 - 862 <--x 859 - 863 <--x 857 - 863 <--x 860 - 864 <--x 856 - 864 <--x 857 - 865 <--x 858 - 865 <--x 860 - 866 <--x 857 - 866 <--x 858 - 867 <--x 859 - 867 <--x 860 - 868 <--x 858 - 868 <--x 859 - 869 --- 870 - 869 --- 871 - 869 --- 872 - 869 --- 873 - 869 --- 874 - 869 ---- 876 - 869 --- 875 - 870 --- 880 - 870 --- 888 - 870 --- 889 - 870 <--x 11 - 871 --- 879 - 871 --- 886 - 871 --- 887 - 871 <--x 11 - 872 --- 878 - 872 --- 884 - 872 --- 885 - 872 <--x 11 - 873 --- 877 - 873 --- 882 - 873 --- 883 - 873 <--x 11 - 876 --- 877 - 876 --- 878 - 876 --- 879 - 876 --- 880 - 876 --- 881 - 876 --- 882 - 876 --- 883 - 876 --- 884 - 876 --- 885 - 876 --- 886 - 876 --- 887 - 876 --- 888 - 876 --- 889 - 882 <--x 877 - 882 <--x 881 - 883 <--x 877 - 883 <--x 880 - 884 <--x 878 - 884 <--x 881 - 885 <--x 877 - 885 <--x 878 - 886 <--x 879 - 886 <--x 881 - 887 <--x 878 - 887 <--x 879 - 888 <--x 880 - 888 <--x 881 - 889 <--x 879 - 889 <--x 880 - 890 --- 891 - 890 --- 892 - 890 --- 893 - 890 --- 894 - 890 --- 895 - 890 ---- 897 - 890 --- 896 - 891 --- 901 - 891 --- 909 - 891 --- 910 - 891 <--x 11 - 892 --- 900 - 892 --- 907 - 892 --- 908 - 892 <--x 11 - 893 --- 899 - 893 --- 905 - 893 --- 906 - 893 <--x 11 - 894 --- 898 - 894 --- 903 - 894 --- 904 - 894 <--x 11 - 897 --- 898 - 897 --- 899 - 897 --- 900 - 897 --- 901 - 897 --- 902 - 897 --- 903 - 897 --- 904 - 897 --- 905 - 897 --- 906 - 897 --- 907 - 897 --- 908 - 897 --- 909 - 897 --- 910 - 903 <--x 898 - 903 <--x 902 - 904 <--x 898 - 904 <--x 901 - 905 <--x 899 - 905 <--x 902 - 906 <--x 898 - 906 <--x 899 - 907 <--x 900 - 907 <--x 902 - 908 <--x 899 - 908 <--x 900 - 909 <--x 901 - 909 <--x 902 - 910 <--x 900 - 910 <--x 901 - 911 --- 912 - 911 --- 913 - 911 --- 914 - 911 --- 915 - 911 --- 916 - 911 ---- 918 - 911 --- 917 - 912 --- 922 - 912 --- 930 - 912 --- 931 - 912 <--x 11 - 913 --- 921 - 913 --- 928 - 913 --- 929 - 913 <--x 11 - 914 --- 920 - 914 --- 926 - 914 --- 927 - 914 <--x 11 - 915 --- 919 - 915 --- 924 - 915 --- 925 - 915 <--x 11 - 918 --- 919 - 918 --- 920 - 918 --- 921 - 918 --- 922 - 918 --- 923 - 918 --- 924 - 918 --- 925 - 918 --- 926 - 918 --- 927 - 918 --- 928 - 918 --- 929 - 918 --- 930 - 918 --- 931 - 924 <--x 919 - 924 <--x 923 - 925 <--x 919 - 925 <--x 922 - 926 <--x 920 - 926 <--x 923 - 927 <--x 919 - 927 <--x 920 - 928 <--x 921 - 928 <--x 923 - 929 <--x 920 - 929 <--x 921 - 930 <--x 922 - 930 <--x 923 - 931 <--x 921 - 931 <--x 922 - 932 --- 933 - 932 --- 934 - 932 --- 935 - 932 --- 936 - 932 --- 937 - 932 ---- 939 - 932 --- 938 - 933 --- 943 - 933 --- 951 - 933 --- 952 - 933 <--x 11 - 934 --- 942 - 934 --- 949 - 934 --- 950 - 934 <--x 11 - 935 --- 941 - 935 --- 947 - 935 --- 948 - 935 <--x 11 - 936 --- 940 - 936 --- 945 - 936 --- 946 - 936 <--x 11 - 939 --- 940 - 939 --- 941 - 939 --- 942 - 939 --- 943 - 939 --- 944 - 939 --- 945 - 939 --- 946 - 939 --- 947 - 939 --- 948 - 939 --- 949 - 939 --- 950 - 939 --- 951 - 939 --- 952 - 945 <--x 940 - 945 <--x 944 - 946 <--x 940 - 946 <--x 943 - 947 <--x 941 - 947 <--x 944 - 948 <--x 940 - 948 <--x 941 - 949 <--x 942 - 949 <--x 944 - 950 <--x 941 - 950 <--x 942 - 951 <--x 943 - 951 <--x 944 - 952 <--x 942 - 952 <--x 943 - 953 --- 954 - 953 --- 955 - 953 --- 956 - 953 --- 957 - 953 --- 958 - 953 ---- 960 - 953 --- 959 - 954 --- 964 - 954 --- 972 - 954 --- 973 - 954 <--x 11 - 955 --- 963 - 955 --- 970 - 955 --- 971 - 955 <--x 11 - 956 --- 962 - 956 --- 968 - 956 --- 969 - 956 <--x 11 - 957 --- 961 - 957 --- 966 - 957 --- 967 - 957 <--x 11 - 960 --- 961 - 960 --- 962 - 960 --- 963 - 960 --- 964 - 960 --- 965 - 960 --- 966 - 960 --- 967 - 960 --- 968 - 960 --- 969 - 960 --- 970 - 960 --- 971 - 960 --- 972 - 960 --- 973 - 966 <--x 961 - 966 <--x 965 - 967 <--x 961 - 967 <--x 964 - 968 <--x 962 - 968 <--x 965 - 969 <--x 961 - 969 <--x 962 - 970 <--x 963 - 970 <--x 965 - 971 <--x 962 - 971 <--x 963 - 972 <--x 964 - 972 <--x 965 - 973 <--x 963 - 973 <--x 964 - 15 <--x 974 - 36 <--x 975 - 73 <--x 976 - 73 <--x 977 - 73 <--x 978 - 73 <--x 979 - 73 <--x 980 - 73 <--x 981 - 73 <--x 982 - 73 <--x 983 - 73 <--x 984 - 15 <--x 985 - 331 <--x 986 - 331 <--x 987 - 331 <--x 988 - 331 <--x 989 - 15 <--x 990 - 331 <--x 991 - 331 <--x 992 - 331 <--x 993 - 522 <--x 994 - 566 <--x 995 - 12 <--x 996 - 608 <--x 997 - 629 <--x 998 - 650 <--x 999 - 12 <--x 1000 - 692 <--x 1001 - 713 <--x 1002 - 734 <--x 1003 - 11 <--x 1004 - 11 <--x 1005 - 11 <--x 1006 - 11 <--x 1007 - 11 <--x 1008 - 11 <--x 1009 - 11 <--x 1010 - 11 <--x 1011 - 11 <--x 1012 - 11 <--x 1013 + 60 --- 162 + 60 --- 174 + 60 --- 215 + 60 --- 275 + 60 --- 335 + 60 ---- 386 + 601 --- 60 + 61 --- 98 + 61 --- 137 + 61 --- 189 + 61 --- 208 + 61 --- 250 + 61 --- 336 + 61 ---- 390 + 635 --- 61 + 62 --- 88 + 62 --- 143 + 62 --- 186 + 62 --- 226 + 62 --- 257 + 62 --- 337 + 62 ---- 363 + 635 --- 62 + 63 --- 112 + 63 --- 151 + 63 --- 183 + 63 --- 216 + 63 --- 240 + 63 --- 339 + 63 ---- 368 + 635 --- 63 + 64 --- 115 + 64 --- 146 + 64 --- 167 + 64 --- 238 + 64 --- 255 + 64 --- 340 + 64 ---- 396 + 622 --- 64 + 65 --- 124 + 65 --- 147 + 65 --- 182 + 65 --- 227 + 65 --- 273 + 65 --- 341 + 65 ---- 388 + 632 --- 65 + 66 --- 87 + 66 --- 138 + 66 --- 175 + 66 --- 219 + 66 --- 251 + 66 --- 342 + 66 ---- 384 + 438 --- 66 + 67 --- 103 + 67 --- 136 + 67 --- 176 + 67 --- 217 + 67 --- 260 + 67 --- 344 + 67 ---- 366 + 626 --- 67 + 68 --- 97 + 68 --- 142 + 68 --- 193 + 68 --- 221 + 68 --- 242 + 68 --- 345 + 68 ---- 389 + 438 --- 68 + 69 --- 121 + 69 --- 129 + 69 --- 179 + 69 --- 214 + 69 --- 252 + 69 --- 346 + 69 ---- 381 + 635 --- 69 + 70 --- 123 + 70 --- 156 + 70 --- 199 + 70 --- 210 + 70 --- 239 + 70 --- 347 + 70 ---- 392 + 439 --- 70 + 71 --- 120 + 71 --- 144 + 71 --- 173 + 71 --- 224 + 71 --- 270 + 71 --- 349 + 71 ---- 397 + 616 --- 71 + 72 --- 108 + 72 --- 133 + 72 --- 192 + 72 --- 207 + 72 --- 247 + 72 --- 350 + 72 ---- 391 + 438 --- 72 + 73 --- 101 + 73 --- 139 + 73 --- 198 + 73 --- 234 + 73 --- 274 + 73 --- 352 + 73 ---- 375 + 601 --- 73 + 74 --- 107 + 74 --- 141 + 74 --- 195 + 74 --- 205 + 74 --- 263 + 74 --- 353 + 74 ---- 362 + 438 --- 74 + 75 --- 92 + 75 --- 135 + 75 --- 168 + 75 --- 211 + 75 --- 258 + 75 --- 354 + 75 ---- 372 + 635 --- 75 + 76 --- 118 + 76 --- 130 + 76 --- 185 + 76 --- 202 + 76 --- 254 + 76 --- 355 + 76 ---- 369 + 601 --- 76 + 77 --- 90 + 77 --- 154 + 77 --- 169 + 77 --- 213 + 77 --- 246 + 77 --- 356 + 77 ---- 393 + 601 --- 77 + 78 --- 113 + 78 --- 152 + 78 --- 191 + 78 --- 203 + 78 --- 276 + 78 --- 357 + 78 ---- 382 + 601 --- 78 + 79 --- 111 + 79 --- 149 + 79 --- 200 + 79 --- 236 + 79 --- 249 + 79 --- 358 + 79 ---- 394 + 601 --- 79 + 80 --- 95 + 80 --- 134 + 80 --- 181 + 80 --- 235 + 80 --- 241 + 80 --- 359 + 80 ---- 385 + 630 --- 80 + 81 --- 105 + 81 --- 148 + 81 --- 166 + 81 --- 220 + 81 --- 245 + 81 --- 360 + 81 ---- 373 + 438 --- 81 + 82 --- 277 + 82 --- 278 + 82 --- 279 + 82 --- 280 + 82 --- 281 + 82 --- 338 + 82 ---- 399 + 83 --- 282 + 83 --- 283 + 83 --- 284 + 83 --- 285 + 83 --- 286 + 83 --- 287 + 83 --- 288 + 83 --- 289 + 83 --- 290 + 83 --- 291 + 83 --- 292 + 83 --- 293 + 83 --- 294 + 83 --- 318 + 83 ---- 400 + 637 --- 83 + 84 --- 295 + 84 --- 296 + 84 --- 297 + 84 --- 298 + 84 --- 299 + 84 --- 300 + 84 --- 301 + 84 --- 302 + 84 --- 303 + 84 --- 304 + 84 --- 305 + 84 --- 306 + 84 --- 307 + 84 --- 351 + 84 ---- 401 + 601 --- 84 + 85 --- 309 + 85 --- 310 + 85 --- 312 + 85 --- 315 + 85 --- 316 + 85 --- 343 + 85 ---- 402 + 86 --- 308 + 86 --- 311 + 86 --- 313 + 86 --- 314 + 86 --- 317 + 86 --- 348 + 86 ---- 403 + 87 x--> 438 + 87 --- 516 + 87 --- 750 + 87 --- 939 + 88 --- 412 + 88 x--> 635 + 88 --- 646 + 88 --- 836 + 89 --- 477 + 89 x--> 635 + 89 --- 711 + 89 --- 900 + 90 --- 568 + 90 x--> 601 + 90 --- 804 + 90 --- 992 + 91 --- 416 + 91 x--> 614 + 91 --- 653 + 91 --- 840 + 92 --- 453 + 92 x--> 635 + 92 --- 686 + 92 --- 874 + 93 --- 428 + 93 x--> 635 + 93 --- 663 + 93 --- 852 + 94 --- 524 + 94 x--> 601 + 94 --- 761 + 94 --- 946 + 95 --- 521 + 95 x--> 630 + 95 --- 754 + 95 --- 943 + 96 --- 500 + 96 x--> 601 + 96 --- 737 + 96 --- 925 + 97 x--> 438 + 97 --- 536 + 97 --- 770 + 97 --- 960 + 98 --- 542 + 98 x--> 635 + 98 --- 777 + 98 --- 962 + 99 x--> 438 + 99 --- 486 + 99 --- 719 + 99 --- 906 + 100 x--> 439 + 100 --- 495 + 100 --- 728 + 100 --- 915 + 101 --- 481 + 101 x--> 601 + 101 --- 714 + 101 --- 904 + 102 --- 448 + 102 x--> 616 + 102 --- 683 + 102 --- 870 + 103 --- 426 + 103 x--> 626 + 103 --- 659 + 103 --- 849 + 104 x--> 438 + 104 --- 445 + 104 --- 679 + 104 --- 869 + 105 x--> 438 + 105 --- 462 + 105 --- 696 + 105 --- 885 + 106 --- 513 + 106 x--> 601 + 106 --- 749 + 106 --- 936 + 107 --- 410 + 107 x--> 438 + 107 --- 643 + 107 --- 832 + 108 x--> 438 + 108 --- 546 + 108 --- 779 + 108 --- 968 + 109 --- 578 + 109 x--> 616 + 109 --- 811 + 109 --- 1001 + 110 --- 497 + 110 x--> 612 + 110 --- 730 + 110 --- 919 + 111 --- 572 + 111 x--> 601 + 111 --- 809 + 111 --- 995 + 112 --- 434 + 112 x--> 635 + 112 --- 667 + 112 --- 854 + 113 --- 509 + 113 x--> 601 + 113 --- 743 + 113 --- 933 + 114 --- 422 + 114 x--> 438 + 114 --- 655 + 114 --- 844 + 115 --- 582 + 115 x--> 622 + 115 --- 817 + 115 --- 1004 + 116 --- 529 + 116 x--> 619 + 116 --- 764 + 116 --- 952 + 117 x--> 438 + 117 --- 591 + 117 --- 824 + 117 --- 1012 + 118 --- 443 + 118 x--> 601 + 118 --- 674 + 118 --- 865 + 119 x--> 438 + 119 --- 490 + 119 --- 725 + 119 --- 913 + 120 --- 587 + 120 x--> 616 + 120 --- 820 + 120 --- 1008 + 121 --- 507 + 121 x--> 635 + 121 --- 739 + 121 --- 926 + 122 --- 406 + 122 x--> 621 + 122 --- 641 + 122 --- 826 + 123 x--> 439 + 123 --- 550 + 123 --- 785 + 123 --- 970 + 124 --- 535 + 124 x--> 632 + 124 --- 769 + 124 --- 956 + 125 x--> 438 + 125 --- 484 + 125 --- 720 + 125 --- 909 + 126 x--> 438 + 126 --- 588 + 126 --- 822 + 126 --- 1011 + 127 x--> 439 + 127 --- 492 + 127 --- 726 + 127 --- 914 + 128 --- 404 + 128 x--> 621 + 128 --- 639 + 128 --- 829 + 129 --- 504 + 129 x--> 635 + 129 --- 741 + 129 --- 929 + 130 --- 441 + 130 x--> 601 + 130 --- 677 + 130 --- 864 + 131 --- 420 + 131 x--> 438 + 131 --- 654 + 131 --- 845 + 132 --- 577 + 132 x--> 616 + 132 --- 810 + 132 --- 998 + 133 x--> 438 + 133 --- 545 + 133 --- 780 + 133 --- 967 + 134 --- 520 + 134 x--> 630 + 134 --- 755 + 134 --- 942 + 135 --- 452 + 135 x--> 635 + 135 --- 689 + 135 --- 875 + 136 --- 424 + 136 x--> 626 + 136 --- 661 + 136 --- 847 + 137 --- 541 + 137 x--> 635 + 137 --- 775 + 137 --- 964 + 138 x--> 438 + 138 --- 517 + 138 --- 751 + 138 --- 938 + 139 --- 480 + 139 x--> 601 + 139 --- 715 + 139 --- 902 + 140 x--> 438 + 140 --- 444 + 140 --- 681 + 140 --- 868 + 141 --- 409 + 141 x--> 438 + 141 --- 644 + 141 --- 833 + 142 x--> 438 + 142 --- 538 + 142 --- 771 + 142 --- 961 + 143 --- 413 + 143 x--> 635 + 143 --- 648 + 143 --- 835 + 144 --- 585 + 144 x--> 616 + 144 --- 819 + 144 --- 1006 + 145 --- 479 + 145 x--> 635 + 145 --- 710 + 145 --- 901 + 146 --- 581 + 146 x--> 622 + 146 --- 814 + 146 --- 1005 + 147 --- 534 + 147 x--> 632 + 147 --- 766 + 147 --- 954 + 148 x--> 438 + 148 --- 463 + 148 --- 695 + 148 --- 882 + 149 --- 573 + 149 x--> 601 + 149 --- 806 + 149 --- 994 + 150 --- 450 + 150 x--> 616 + 150 --- 684 + 150 --- 873 + 151 --- 435 + 151 x--> 635 + 151 --- 668 + 151 --- 857 + 152 --- 510 + 152 x--> 601 + 152 --- 742 + 152 --- 932 + 153 --- 431 + 153 x--> 635 + 153 --- 662 + 153 --- 850 + 154 --- 571 + 154 x--> 601 + 154 --- 805 + 154 --- 993 + 155 --- 530 + 155 x--> 619 + 155 --- 765 + 155 --- 951 + 156 x--> 439 + 156 --- 549 + 156 --- 782 + 156 --- 971 + 157 x--> 438 + 157 --- 491 + 157 --- 723 + 157 --- 910 + 158 --- 515 + 158 x--> 601 + 158 --- 747 + 158 --- 935 + 159 --- 499 + 159 x--> 612 + 159 --- 733 + 159 --- 918 + 160 --- 503 + 160 x--> 601 + 160 --- 734 + 160 --- 924 + 161 --- 419 + 161 x--> 614 + 161 --- 650 + 161 --- 841 + 162 --- 527 + 162 x--> 601 + 162 --- 760 + 162 --- 948 + 163 --- 576 + 163 x--> 616 + 163 --- 812 + 163 --- 999 + 164 --- 496 + 164 x--> 612 + 164 --- 732 + 164 --- 920 + 165 x--> 439 + 165 --- 493 + 165 --- 729 + 165 --- 917 + 166 x--> 438 + 166 --- 460 + 166 --- 697 + 166 --- 884 + 167 --- 580 + 167 x--> 622 + 167 --- 815 + 167 --- 1003 + 168 --- 454 + 168 x--> 635 + 168 --- 688 + 168 --- 876 + 169 --- 569 + 169 x--> 601 + 169 --- 803 + 169 --- 990 + 170 --- 512 + 170 x--> 601 + 170 --- 748 + 170 --- 937 + 171 --- 421 + 171 x--> 438 + 171 --- 656 + 171 --- 843 + 172 x--> 438 + 172 --- 487 + 172 --- 718 + 172 --- 907 + 173 --- 584 + 173 x--> 616 + 173 --- 818 + 173 --- 1007 + 174 --- 526 + 174 x--> 601 + 174 --- 759 + 174 --- 949 + 175 x--> 438 + 175 --- 519 + 175 --- 753 + 175 --- 940 + 176 --- 427 + 176 x--> 626 + 176 --- 658 + 176 --- 846 + 177 x--> 438 + 177 --- 489 + 177 --- 722 + 177 --- 911 + 178 --- 478 + 178 x--> 635 + 178 --- 713 + 178 --- 898 + 179 --- 506 + 179 x--> 635 + 179 --- 738 + 179 --- 928 + 180 --- 502 + 180 x--> 601 + 180 --- 736 + 180 --- 923 + 181 --- 522 + 181 x--> 630 + 181 --- 756 + 181 --- 945 + 182 --- 532 + 182 x--> 632 + 182 --- 768 + 182 --- 957 + 183 --- 433 + 183 x--> 635 + 183 --- 669 + 183 --- 855 + 184 x--> 438 + 184 --- 589 + 184 --- 825 + 184 --- 1013 + 185 --- 442 + 185 x--> 601 + 185 --- 675 + 185 --- 863 + 186 --- 415 + 186 x--> 635 + 186 --- 647 + 186 --- 834 + 187 --- 430 + 187 x--> 635 + 187 --- 665 + 187 --- 853 + 188 --- 418 + 188 x--> 614 + 188 --- 652 + 188 --- 839 + 189 --- 543 + 189 x--> 635 + 189 --- 776 + 189 --- 965 + 190 x--> 438 + 190 --- 447 + 190 --- 680 + 190 --- 867 + 191 --- 511 + 191 x--> 601 + 191 --- 745 + 191 --- 931 + 192 x--> 438 + 192 --- 547 + 192 --- 778 + 192 --- 966 + 193 x--> 438 + 193 --- 539 + 193 --- 772 + 193 --- 958 + 194 --- 531 + 194 x--> 619 + 194 --- 762 + 194 --- 950 + 195 --- 411 + 195 x--> 438 + 195 --- 642 + 195 --- 830 + 196 --- 451 + 196 x--> 616 + 196 --- 685 + 196 --- 872 + 197 --- 407 + 197 x--> 621 + 197 --- 638 + 197 --- 828 + 198 --- 483 + 198 x--> 601 + 198 --- 717 + 198 --- 905 + 199 x--> 439 + 199 --- 551 + 199 --- 784 + 199 --- 973 + 200 --- 575 + 200 x--> 601 + 200 --- 808 + 200 --- 997 + 201 --- 476 + 201 x--> 635 + 201 --- 712 + 201 --- 899 + 202 --- 440 + 202 x--> 601 + 202 --- 676 + 202 --- 862 + 203 --- 508 + 203 x--> 601 + 203 --- 744 + 203 --- 930 + 204 x--> 438 + 204 --- 485 + 204 --- 721 + 204 --- 908 + 205 --- 408 + 205 x--> 438 + 205 --- 645 + 205 --- 831 + 206 --- 405 + 206 x--> 621 + 206 --- 640 + 206 --- 827 + 207 x--> 438 + 207 --- 544 + 207 --- 781 + 207 --- 969 + 208 --- 540 + 208 x--> 635 + 208 --- 774 + 208 --- 963 + 209 x--> 438 + 209 --- 488 + 209 --- 724 + 209 --- 912 + 210 x--> 439 + 210 --- 548 + 210 --- 783 + 210 --- 972 + 211 --- 455 + 211 x--> 635 + 211 --- 687 + 211 --- 877 + 212 x--> 439 + 212 --- 494 + 212 --- 727 + 212 --- 916 + 213 --- 570 + 213 x--> 601 + 213 --- 802 + 213 --- 991 + 214 --- 505 + 214 x--> 635 + 214 --- 740 + 214 --- 927 + 215 --- 525 + 215 x--> 601 + 215 --- 758 + 215 --- 947 + 216 --- 432 + 216 x--> 635 + 216 --- 666 + 216 --- 856 + 217 --- 425 + 217 x--> 626 + 217 --- 660 + 217 --- 848 + 218 --- 528 + 218 x--> 619 + 218 --- 763 + 218 --- 953 + 219 x--> 438 + 219 --- 518 + 219 --- 752 + 219 --- 941 + 220 x--> 438 + 220 --- 461 + 220 --- 694 + 220 --- 883 + 221 x--> 438 + 221 --- 537 + 221 --- 773 + 221 --- 959 + 222 --- 501 + 222 x--> 601 + 222 --- 735 + 222 --- 922 + 223 --- 514 + 223 x--> 601 + 223 --- 746 + 223 --- 934 + 224 --- 586 + 224 x--> 616 + 224 --- 821 + 224 --- 1009 + 225 --- 449 + 225 x--> 616 + 225 --- 682 + 225 --- 871 + 226 --- 414 + 226 x--> 635 + 226 --- 649 + 226 --- 837 + 227 --- 533 + 227 x--> 632 + 227 --- 767 + 227 --- 955 + 228 --- 429 + 228 x--> 635 + 228 --- 664 + 228 --- 851 + 229 --- 417 + 229 x--> 614 + 229 --- 651 + 229 --- 838 + 230 x--> 438 + 230 --- 590 + 230 --- 823 + 230 --- 1010 + 231 x--> 438 + 231 --- 446 + 231 --- 678 + 231 --- 866 + 232 --- 498 + 232 x--> 612 + 232 --- 731 + 232 --- 921 + 233 --- 579 + 233 x--> 616 + 233 --- 813 + 233 --- 1000 + 234 --- 482 + 234 x--> 601 + 234 --- 716 + 234 --- 903 + 235 --- 523 + 235 x--> 630 + 235 --- 757 + 235 --- 944 + 236 --- 574 + 236 x--> 601 + 236 --- 807 + 236 --- 996 + 237 --- 423 + 237 x--> 438 + 237 --- 657 + 237 --- 842 + 238 --- 583 + 238 x--> 622 + 238 --- 816 + 238 --- 1002 + 277 --- 437 + 277 x--> 596 + 277 --- 671 + 277 --- 858 + 278 --- 439 + 278 x--> 596 + 278 --- 672 + 278 --- 860 + 279 --- 438 + 279 x--> 596 + 279 --- 673 + 279 --- 859 + 280 --- 436 + 280 x--> 596 + 280 --- 670 + 280 --- 861 + 282 --- 473 + 282 x--> 637 + 282 --- 705 + 282 --- 889 + 283 --- 474 + 283 x--> 637 + 283 --- 707 + 283 --- 897 + 284 --- 475 + 284 x--> 637 + 284 --- 701 + 284 --- 894 + 285 --- 464 + 285 x--> 637 + 285 --- 706 + 285 --- 887 + 286 --- 465 + 286 x--> 637 + 286 --- 699 + 286 --- 888 + 287 --- 466 + 287 x--> 637 + 287 --- 702 + 287 --- 895 + 288 --- 471 + 288 x--> 637 + 288 --- 703 + 288 --- 893 + 289 --- 470 + 289 x--> 637 + 289 --- 704 + 289 --- 886 + 290 --- 469 + 290 x--> 637 + 290 --- 709 + 290 --- 896 + 291 --- 472 + 291 x--> 637 + 291 --- 698 + 291 --- 891 + 292 --- 468 + 292 x--> 637 + 292 --- 708 + 292 --- 890 + 293 --- 467 + 293 x--> 637 + 293 --- 700 + 293 --- 892 + 295 --- 556 + 295 x--> 601 + 295 --- 789 + 295 --- 975 + 296 --- 561 + 296 x--> 601 + 296 --- 796 + 296 --- 979 + 297 --- 563 + 297 x--> 601 + 297 --- 797 + 297 --- 976 + 298 --- 553 + 298 x--> 601 + 298 --- 791 + 298 --- 981 + 299 --- 557 + 299 x--> 601 + 299 --- 795 + 299 --- 984 + 300 --- 559 + 300 x--> 601 + 300 --- 788 + 300 --- 980 + 301 --- 552 + 301 x--> 601 + 301 --- 790 + 301 --- 977 + 302 --- 554 + 302 x--> 601 + 302 --- 792 + 302 --- 982 + 303 --- 555 + 303 x--> 601 + 303 --- 787 + 303 --- 978 + 304 --- 558 + 304 x--> 601 + 304 --- 786 + 304 --- 974 + 305 --- 562 + 305 x--> 601 + 305 --- 793 + 305 --- 983 + 306 --- 560 + 306 x--> 601 + 306 --- 794 + 306 --- 985 + 308 --- 564 + 308 x--> 610 + 308 --- 801 + 308 --- 989 + 309 --- 459 + 309 x--> 599 + 309 --- 690 + 309 --- 881 + 310 --- 458 + 310 x--> 599 + 310 --- 691 + 310 --- 879 + 311 --- 566 + 311 x--> 610 + 311 --- 798 + 311 --- 988 + 312 --- 457 + 312 x--> 599 + 312 --- 693 + 312 --- 878 + 313 --- 567 + 313 x--> 610 + 313 --- 799 + 313 --- 987 + 314 --- 565 + 314 x--> 610 + 314 --- 800 + 314 --- 986 + 315 --- 456 + 315 x--> 599 + 315 --- 692 + 315 --- 880 + 361 --- 404 + 361 --- 405 + 361 --- 406 + 361 --- 407 + 361 --- 612 + 361 --- 638 + 361 --- 639 + 361 --- 640 + 361 --- 641 + 361 --- 826 + 361 --- 827 + 361 --- 828 + 361 --- 829 + 362 --- 408 + 362 --- 409 + 362 --- 410 + 362 --- 411 + 362 --- 592 + 362 --- 642 + 362 --- 643 + 362 --- 644 + 362 --- 645 + 362 --- 830 + 362 --- 831 + 362 --- 832 + 362 --- 833 + 363 --- 412 + 363 --- 413 + 363 --- 414 + 363 --- 415 + 363 --- 593 + 363 --- 646 + 363 --- 647 + 363 --- 648 + 363 --- 649 + 363 --- 834 + 363 --- 835 + 363 --- 836 + 363 --- 837 + 364 --- 416 + 364 --- 417 + 364 --- 418 + 364 --- 419 + 364 --- 613 + 364 --- 650 + 364 --- 651 + 364 --- 652 + 364 --- 653 + 364 --- 838 + 364 --- 839 + 364 --- 840 + 364 --- 841 + 365 --- 420 + 365 --- 421 + 365 --- 422 + 365 --- 423 + 365 --- 594 + 365 --- 654 + 365 --- 655 + 365 --- 656 + 365 --- 657 + 365 --- 842 + 365 --- 843 + 365 --- 844 + 365 --- 845 + 366 --- 424 + 366 --- 425 + 366 --- 426 + 366 --- 427 + 366 --- 614 + 366 --- 658 + 366 --- 659 + 366 --- 660 + 366 --- 661 + 366 --- 846 + 366 --- 847 + 366 --- 848 + 366 --- 849 + 367 --- 428 + 367 --- 429 + 367 --- 430 + 367 --- 431 + 367 --- 615 + 367 --- 662 + 367 --- 663 + 367 --- 664 + 367 --- 665 + 367 --- 850 + 367 --- 851 + 367 --- 852 + 367 --- 853 + 368 --- 432 + 368 --- 433 + 368 --- 434 + 368 --- 435 + 368 --- 595 + 368 --- 666 + 368 --- 667 + 368 --- 668 + 368 --- 669 + 368 --- 854 + 368 --- 855 + 368 --- 856 + 368 --- 857 + 369 --- 440 + 369 --- 441 + 369 --- 442 + 369 --- 443 + 369 --- 617 + 369 --- 674 + 369 --- 675 + 369 --- 676 + 369 --- 677 + 369 --- 862 + 369 --- 863 + 369 --- 864 + 369 --- 865 + 370 --- 444 + 370 --- 445 + 370 --- 446 + 370 --- 447 + 370 --- 597 + 370 --- 678 + 370 --- 679 + 370 --- 680 + 370 --- 681 + 370 --- 866 + 370 --- 867 + 370 --- 868 + 370 --- 869 + 371 --- 448 + 371 --- 449 + 371 --- 450 + 371 --- 451 + 371 --- 618 + 371 --- 682 + 371 --- 683 + 371 --- 684 + 371 --- 685 + 371 --- 870 + 371 --- 871 + 371 --- 872 + 371 --- 873 + 372 --- 452 + 372 --- 453 + 372 --- 454 + 372 --- 455 + 372 --- 598 + 372 --- 686 + 372 --- 687 + 372 --- 688 + 372 --- 689 + 372 --- 874 + 372 --- 875 + 372 --- 876 + 372 --- 877 + 373 --- 460 + 373 --- 461 + 373 --- 462 + 373 --- 463 + 373 --- 600 + 373 --- 694 + 373 --- 695 + 373 --- 696 + 373 --- 697 + 373 --- 882 + 373 --- 883 + 373 --- 884 + 373 --- 885 + 374 --- 476 + 374 --- 477 + 374 --- 478 + 374 --- 479 + 374 --- 602 + 374 --- 710 + 374 --- 711 + 374 --- 712 + 374 --- 713 + 374 --- 898 + 374 --- 899 + 374 --- 900 + 374 --- 901 + 375 --- 480 + 375 --- 481 + 375 --- 482 + 375 --- 483 + 375 --- 620 + 375 --- 714 + 375 --- 715 + 375 --- 716 + 375 --- 717 + 375 --- 902 + 375 --- 903 + 375 --- 904 + 375 --- 905 + 376 --- 484 + 376 --- 485 + 376 --- 486 + 376 --- 487 + 376 --- 603 + 376 --- 718 + 376 --- 719 + 376 --- 720 + 376 --- 721 + 376 --- 906 + 376 --- 907 + 376 --- 908 + 376 --- 909 + 377 --- 488 + 377 --- 489 + 377 --- 490 + 377 --- 491 + 377 --- 604 + 377 --- 722 + 377 --- 723 + 377 --- 724 + 377 --- 725 + 377 --- 910 + 377 --- 911 + 377 --- 912 + 377 --- 913 + 378 --- 492 + 378 --- 493 + 378 --- 494 + 378 --- 495 + 378 --- 621 + 378 --- 726 + 378 --- 727 + 378 --- 728 + 378 --- 729 + 378 --- 914 + 378 --- 915 + 378 --- 916 + 378 --- 917 + 379 --- 496 + 379 --- 497 + 379 --- 498 + 379 --- 499 + 379 --- 622 + 379 --- 730 + 379 --- 731 + 379 --- 732 + 379 --- 733 + 379 --- 918 + 379 --- 919 + 379 --- 920 + 379 --- 921 + 380 --- 500 + 380 --- 501 + 380 --- 502 + 380 --- 503 + 380 --- 623 + 380 --- 734 + 380 --- 735 + 380 --- 736 + 380 --- 737 + 380 --- 922 + 380 --- 923 + 380 --- 924 + 380 --- 925 + 381 --- 504 + 381 --- 505 + 381 --- 506 + 381 --- 507 + 381 --- 605 + 381 --- 738 + 381 --- 739 + 381 --- 740 + 381 --- 741 + 381 --- 926 + 381 --- 927 + 381 --- 928 + 381 --- 929 + 382 --- 508 + 382 --- 509 + 382 --- 510 + 382 --- 511 + 382 --- 624 + 382 --- 742 + 382 --- 743 + 382 --- 744 + 382 --- 745 + 382 --- 930 + 382 --- 931 + 382 --- 932 + 382 --- 933 + 383 --- 512 + 383 --- 513 + 383 --- 514 + 383 --- 515 + 383 --- 625 + 383 --- 746 + 383 --- 747 + 383 --- 748 + 383 --- 749 + 383 --- 934 + 383 --- 935 + 383 --- 936 + 383 --- 937 + 384 --- 516 + 384 --- 517 + 384 --- 518 + 384 --- 519 + 384 --- 606 + 384 --- 750 + 384 --- 751 + 384 --- 752 + 384 --- 753 + 384 --- 938 + 384 --- 939 + 384 --- 940 + 384 --- 941 + 385 --- 520 + 385 --- 521 + 385 --- 522 + 385 --- 523 + 385 --- 626 + 385 --- 754 + 385 --- 755 + 385 --- 756 + 385 --- 757 + 385 --- 942 + 385 --- 943 + 385 --- 944 + 385 --- 945 + 386 --- 524 + 386 --- 525 + 386 --- 526 + 386 --- 527 + 386 --- 627 + 386 --- 758 + 386 --- 759 + 386 --- 760 + 386 --- 761 + 386 --- 946 + 386 --- 947 + 386 --- 948 + 386 --- 949 + 387 --- 528 + 387 --- 529 + 387 --- 530 + 387 --- 531 + 387 --- 628 + 387 --- 762 + 387 --- 763 + 387 --- 764 + 387 --- 765 + 387 --- 950 + 387 --- 951 + 387 --- 952 + 387 --- 953 + 388 --- 532 + 388 --- 533 + 388 --- 534 + 388 --- 535 + 388 --- 629 + 388 --- 766 + 388 --- 767 + 388 --- 768 + 388 --- 769 + 388 --- 954 + 388 --- 955 + 388 --- 956 + 388 --- 957 + 389 --- 536 + 389 --- 537 + 389 --- 538 + 389 --- 539 + 389 --- 607 + 389 --- 770 + 389 --- 771 + 389 --- 772 + 389 --- 773 + 389 --- 958 + 389 --- 959 + 389 --- 960 + 389 --- 961 + 390 --- 540 + 390 --- 541 + 390 --- 542 + 390 --- 543 + 390 --- 608 + 390 --- 774 + 390 --- 775 + 390 --- 776 + 390 --- 777 + 390 --- 962 + 390 --- 963 + 390 --- 964 + 390 --- 965 + 391 --- 544 + 391 --- 545 + 391 --- 546 + 391 --- 547 + 391 --- 609 + 391 --- 778 + 391 --- 779 + 391 --- 780 + 391 --- 781 + 391 --- 966 + 391 --- 967 + 391 --- 968 + 391 --- 969 + 392 --- 548 + 392 --- 549 + 392 --- 550 + 392 --- 551 + 392 --- 630 + 392 --- 782 + 392 --- 783 + 392 --- 784 + 392 --- 785 + 392 --- 970 + 392 --- 971 + 392 --- 972 + 392 --- 973 + 393 --- 568 + 393 --- 569 + 393 --- 570 + 393 --- 571 + 393 --- 633 + 393 --- 802 + 393 --- 803 + 393 --- 804 + 393 --- 805 + 393 --- 990 + 393 --- 991 + 393 --- 992 + 393 --- 993 + 394 --- 572 + 394 --- 573 + 394 --- 574 + 394 --- 575 + 394 --- 634 + 394 --- 806 + 394 --- 807 + 394 --- 808 + 394 --- 809 + 394 --- 994 + 394 --- 995 + 394 --- 996 + 394 --- 997 + 395 --- 576 + 395 --- 577 + 395 --- 578 + 395 --- 579 + 395 --- 635 + 395 --- 810 + 395 --- 811 + 395 --- 812 + 395 --- 813 + 395 --- 998 + 395 --- 999 + 395 --- 1000 + 395 --- 1001 + 396 --- 580 + 396 --- 581 + 396 --- 582 + 396 --- 583 + 396 --- 636 + 396 --- 814 + 396 --- 815 + 396 --- 816 + 396 --- 817 + 396 --- 1002 + 396 --- 1003 + 396 --- 1004 + 396 --- 1005 + 397 --- 584 + 397 --- 585 + 397 --- 586 + 397 --- 587 + 397 --- 637 + 397 --- 818 + 397 --- 819 + 397 --- 820 + 397 --- 821 + 397 --- 1006 + 397 --- 1007 + 397 --- 1008 + 397 --- 1009 + 398 --- 588 + 398 --- 589 + 398 --- 590 + 398 --- 591 + 398 --- 611 + 398 --- 822 + 398 --- 823 + 398 --- 824 + 398 --- 825 + 398 --- 1010 + 398 --- 1011 + 398 --- 1012 + 398 --- 1013 + 399 --- 436 + 399 --- 437 + 399 --- 438 + 399 --- 439 + 399 --- 596 + 399 --- 616 + 399 --- 670 + 399 --- 671 + 399 --- 672 + 399 --- 673 + 399 --- 858 + 399 --- 859 + 399 --- 860 + 399 --- 861 + 400 --- 464 + 400 --- 465 + 400 --- 466 + 400 --- 467 + 400 --- 468 + 400 --- 469 + 400 --- 470 + 400 --- 471 + 400 --- 472 + 400 --- 473 + 400 --- 474 + 400 --- 475 + 400 --- 601 + 400 --- 698 + 400 --- 699 + 400 --- 700 + 400 --- 701 + 400 --- 702 + 400 --- 703 + 400 --- 704 + 400 --- 705 + 400 --- 706 + 400 --- 707 + 400 --- 708 + 400 --- 709 + 400 --- 886 + 400 --- 887 + 400 --- 888 + 400 --- 889 + 400 --- 890 + 400 --- 891 + 400 --- 892 + 400 --- 893 + 400 --- 894 + 400 --- 895 + 400 --- 896 + 400 --- 897 + 401 --- 552 + 401 --- 553 + 401 --- 554 + 401 --- 555 + 401 --- 556 + 401 --- 557 + 401 --- 558 + 401 --- 559 + 401 --- 560 + 401 --- 561 + 401 --- 562 + 401 --- 563 + 401 --- 631 + 401 --- 786 + 401 --- 787 + 401 --- 788 + 401 --- 789 + 401 --- 790 + 401 --- 791 + 401 --- 792 + 401 --- 793 + 401 --- 794 + 401 --- 795 + 401 --- 796 + 401 --- 797 + 401 --- 974 + 401 --- 975 + 401 --- 976 + 401 --- 977 + 401 --- 978 + 401 --- 979 + 401 --- 980 + 401 --- 981 + 401 --- 982 + 401 --- 983 + 401 --- 984 + 401 --- 985 + 402 --- 456 + 402 --- 457 + 402 --- 458 + 402 --- 459 + 402 --- 599 + 402 --- 619 + 402 --- 690 + 402 --- 691 + 402 --- 692 + 402 --- 693 + 402 --- 878 + 402 --- 879 + 402 --- 880 + 402 --- 881 + 403 --- 564 + 403 --- 565 + 403 --- 566 + 403 --- 567 + 403 --- 610 + 403 --- 632 + 403 --- 798 + 403 --- 799 + 403 --- 800 + 403 --- 801 + 403 --- 986 + 403 --- 987 + 403 --- 988 + 403 --- 989 + 639 <--x 404 + 826 <--x 404 + 829 <--x 404 + 640 <--x 405 + 827 <--x 405 + 828 <--x 405 + 641 <--x 406 + 826 <--x 406 + 827 <--x 406 + 638 <--x 407 + 828 <--x 407 + 829 <--x 407 + 645 <--x 408 + 830 <--x 408 + 831 <--x 408 + 644 <--x 409 + 832 <--x 409 + 833 <--x 409 + 643 <--x 410 + 831 <--x 410 + 832 <--x 410 + 642 <--x 411 + 830 <--x 411 + 833 <--x 411 + 646 <--x 412 + 836 <--x 412 + 837 <--x 412 + 648 <--x 413 + 835 <--x 413 + 836 <--x 413 + 649 <--x 414 + 834 <--x 414 + 837 <--x 414 + 647 <--x 415 + 834 <--x 415 + 835 <--x 415 + 653 <--x 416 + 838 <--x 416 + 840 <--x 416 + 651 <--x 417 + 838 <--x 417 + 839 <--x 417 + 652 <--x 418 + 839 <--x 418 + 841 <--x 418 + 650 <--x 419 + 840 <--x 419 + 841 <--x 419 + 654 <--x 420 + 844 <--x 420 + 845 <--x 420 + 656 <--x 421 + 843 <--x 421 + 845 <--x 421 + 655 <--x 422 + 842 <--x 422 + 844 <--x 422 + 657 <--x 423 + 842 <--x 423 + 843 <--x 423 + 661 <--x 424 + 847 <--x 424 + 849 <--x 424 + 660 <--x 425 + 846 <--x 425 + 848 <--x 425 + 659 <--x 426 + 848 <--x 426 + 849 <--x 426 + 658 <--x 427 + 846 <--x 427 + 847 <--x 427 + 663 <--x 428 + 851 <--x 428 + 852 <--x 428 + 664 <--x 429 + 851 <--x 429 + 853 <--x 429 + 665 <--x 430 + 850 <--x 430 + 853 <--x 430 + 662 <--x 431 + 850 <--x 431 + 852 <--x 431 + 666 <--x 432 + 855 <--x 432 + 856 <--x 432 + 669 <--x 433 + 855 <--x 433 + 857 <--x 433 + 667 <--x 434 + 854 <--x 434 + 856 <--x 434 + 668 <--x 435 + 854 <--x 435 + 857 <--x 435 + 670 <--x 436 + 859 <--x 436 + 861 <--x 436 + 671 <--x 437 + 858 <--x 437 + 861 <--x 437 + 673 <--x 438 + 859 <--x 438 + 860 <--x 438 + 672 <--x 439 + 858 <--x 439 + 860 <--x 439 + 676 <--x 440 + 862 <--x 440 + 863 <--x 440 + 677 <--x 441 + 864 <--x 441 + 865 <--x 441 + 675 <--x 442 + 863 <--x 442 + 864 <--x 442 + 674 <--x 443 + 862 <--x 443 + 865 <--x 443 + 681 <--x 444 + 868 <--x 444 + 869 <--x 444 + 679 <--x 445 + 866 <--x 445 + 869 <--x 445 + 678 <--x 446 + 866 <--x 446 + 867 <--x 446 + 680 <--x 447 + 867 <--x 447 + 868 <--x 447 + 683 <--x 448 + 870 <--x 448 + 871 <--x 448 + 682 <--x 449 + 871 <--x 449 + 872 <--x 449 + 684 <--x 450 + 870 <--x 450 + 873 <--x 450 + 685 <--x 451 + 872 <--x 451 + 873 <--x 451 + 689 <--x 452 + 874 <--x 452 + 875 <--x 452 + 686 <--x 453 + 874 <--x 453 + 877 <--x 453 + 688 <--x 454 + 875 <--x 454 + 876 <--x 454 + 687 <--x 455 + 876 <--x 455 + 877 <--x 455 + 692 <--x 456 + 878 <--x 456 + 880 <--x 456 + 693 <--x 457 + 878 <--x 457 + 879 <--x 457 + 691 <--x 458 + 879 <--x 458 + 881 <--x 458 + 690 <--x 459 + 880 <--x 459 + 881 <--x 459 + 697 <--x 460 + 882 <--x 460 + 884 <--x 460 + 694 <--x 461 + 883 <--x 461 + 884 <--x 461 + 696 <--x 462 + 883 <--x 462 + 885 <--x 462 + 695 <--x 463 + 882 <--x 463 + 885 <--x 463 + 706 <--x 464 + 887 <--x 464 + 894 <--x 464 + 699 <--x 465 + 887 <--x 465 + 888 <--x 465 + 702 <--x 466 + 888 <--x 466 + 895 <--x 466 + 700 <--x 467 + 890 <--x 467 + 892 <--x 467 + 708 <--x 468 + 890 <--x 468 + 891 <--x 468 + 709 <--x 469 + 886 <--x 469 + 896 <--x 469 + 704 <--x 470 + 886 <--x 470 + 893 <--x 470 + 703 <--x 471 + 893 <--x 471 + 895 <--x 471 + 698 <--x 472 + 891 <--x 472 + 896 <--x 472 + 705 <--x 473 + 889 <--x 473 + 892 <--x 473 + 707 <--x 474 + 889 <--x 474 + 897 <--x 474 + 701 <--x 475 + 894 <--x 475 + 897 <--x 475 + 712 <--x 476 + 898 <--x 476 + 899 <--x 476 + 711 <--x 477 + 899 <--x 477 + 900 <--x 477 + 713 <--x 478 + 898 <--x 478 + 901 <--x 478 + 710 <--x 479 + 900 <--x 479 + 901 <--x 479 + 715 <--x 480 + 902 <--x 480 + 904 <--x 480 + 714 <--x 481 + 903 <--x 481 + 904 <--x 481 + 716 <--x 482 + 903 <--x 482 + 905 <--x 482 + 717 <--x 483 + 902 <--x 483 + 905 <--x 483 + 720 <--x 484 + 906 <--x 484 + 909 <--x 484 + 721 <--x 485 + 907 <--x 485 + 908 <--x 485 + 719 <--x 486 + 906 <--x 486 + 908 <--x 486 + 718 <--x 487 + 907 <--x 487 + 909 <--x 487 + 724 <--x 488 + 911 <--x 488 + 912 <--x 488 + 722 <--x 489 + 910 <--x 489 + 911 <--x 489 + 725 <--x 490 + 912 <--x 490 + 913 <--x 490 + 723 <--x 491 + 910 <--x 491 + 913 <--x 491 + 726 <--x 492 + 914 <--x 492 + 915 <--x 492 + 729 <--x 493 + 914 <--x 493 + 917 <--x 493 + 727 <--x 494 + 916 <--x 494 + 917 <--x 494 + 728 <--x 495 + 915 <--x 495 + 916 <--x 495 + 732 <--x 496 + 918 <--x 496 + 920 <--x 496 + 730 <--x 497 + 919 <--x 497 + 921 <--x 497 + 731 <--x 498 + 920 <--x 498 + 921 <--x 498 + 733 <--x 499 + 918 <--x 499 + 919 <--x 499 + 737 <--x 500 + 922 <--x 500 + 925 <--x 500 + 735 <--x 501 + 922 <--x 501 + 923 <--x 501 + 736 <--x 502 + 923 <--x 502 + 924 <--x 502 + 734 <--x 503 + 924 <--x 503 + 925 <--x 503 + 741 <--x 504 + 926 <--x 504 + 929 <--x 504 + 740 <--x 505 + 927 <--x 505 + 928 <--x 505 + 738 <--x 506 + 928 <--x 506 + 929 <--x 506 + 739 <--x 507 + 926 <--x 507 + 927 <--x 507 + 744 <--x 508 + 930 <--x 508 + 931 <--x 508 + 743 <--x 509 + 930 <--x 509 + 933 <--x 509 + 742 <--x 510 + 932 <--x 510 + 933 <--x 510 + 745 <--x 511 + 931 <--x 511 + 932 <--x 511 + 748 <--x 512 + 935 <--x 512 + 937 <--x 512 + 749 <--x 513 + 934 <--x 513 + 936 <--x 513 + 746 <--x 514 + 934 <--x 514 + 937 <--x 514 + 747 <--x 515 + 935 <--x 515 + 936 <--x 515 + 750 <--x 516 + 939 <--x 516 + 941 <--x 516 + 751 <--x 517 + 938 <--x 517 + 939 <--x 517 + 752 <--x 518 + 940 <--x 518 + 941 <--x 518 + 753 <--x 519 + 938 <--x 519 + 940 <--x 519 + 755 <--x 520 + 942 <--x 520 + 943 <--x 520 + 754 <--x 521 + 943 <--x 521 + 944 <--x 521 + 756 <--x 522 + 942 <--x 522 + 945 <--x 522 + 757 <--x 523 + 944 <--x 523 + 945 <--x 523 + 761 <--x 524 + 946 <--x 524 + 947 <--x 524 + 758 <--x 525 + 947 <--x 525 + 949 <--x 525 + 759 <--x 526 + 948 <--x 526 + 949 <--x 526 + 760 <--x 527 + 946 <--x 527 + 948 <--x 527 + 763 <--x 528 + 950 <--x 528 + 953 <--x 528 + 764 <--x 529 + 952 <--x 529 + 953 <--x 529 + 765 <--x 530 + 951 <--x 530 + 952 <--x 530 + 762 <--x 531 + 950 <--x 531 + 951 <--x 531 + 768 <--x 532 + 954 <--x 532 + 957 <--x 532 + 767 <--x 533 + 955 <--x 533 + 957 <--x 533 + 766 <--x 534 + 954 <--x 534 + 956 <--x 534 + 769 <--x 535 + 955 <--x 535 + 956 <--x 535 + 770 <--x 536 + 959 <--x 536 + 960 <--x 536 + 773 <--x 537 + 958 <--x 537 + 959 <--x 537 + 771 <--x 538 + 960 <--x 538 + 961 <--x 538 + 772 <--x 539 + 958 <--x 539 + 961 <--x 539 + 774 <--x 540 + 963 <--x 540 + 965 <--x 540 + 775 <--x 541 + 962 <--x 541 + 964 <--x 541 + 777 <--x 542 + 962 <--x 542 + 963 <--x 542 + 776 <--x 543 + 964 <--x 543 + 965 <--x 543 + 781 <--x 544 + 966 <--x 544 + 969 <--x 544 + 780 <--x 545 + 967 <--x 545 + 968 <--x 545 + 779 <--x 546 + 968 <--x 546 + 969 <--x 546 + 778 <--x 547 + 966 <--x 547 + 967 <--x 547 + 783 <--x 548 + 972 <--x 548 + 973 <--x 548 + 782 <--x 549 + 970 <--x 549 + 971 <--x 549 + 785 <--x 550 + 970 <--x 550 + 972 <--x 550 + 784 <--x 551 + 971 <--x 551 + 973 <--x 551 + 790 <--x 552 + 977 <--x 552 + 980 <--x 552 + 791 <--x 553 + 976 <--x 553 + 981 <--x 553 + 792 <--x 554 + 977 <--x 554 + 982 <--x 554 + 787 <--x 555 + 978 <--x 555 + 982 <--x 555 + 789 <--x 556 + 975 <--x 556 + 985 <--x 556 + 795 <--x 557 + 981 <--x 557 + 984 <--x 557 + 786 <--x 558 + 974 <--x 558 + 978 <--x 558 + 788 <--x 559 + 980 <--x 559 + 984 <--x 559 + 794 <--x 560 + 983 <--x 560 + 985 <--x 560 + 796 <--x 561 + 975 <--x 561 + 979 <--x 561 + 793 <--x 562 + 974 <--x 562 + 983 <--x 562 + 797 <--x 563 + 976 <--x 563 + 979 <--x 563 + 801 <--x 564 + 986 <--x 564 + 989 <--x 564 + 800 <--x 565 + 986 <--x 565 + 987 <--x 565 + 798 <--x 566 + 988 <--x 566 + 989 <--x 566 + 799 <--x 567 + 987 <--x 567 + 988 <--x 567 + 804 <--x 568 + 991 <--x 568 + 992 <--x 568 + 803 <--x 569 + 990 <--x 569 + 993 <--x 569 + 802 <--x 570 + 990 <--x 570 + 991 <--x 570 + 805 <--x 571 + 992 <--x 571 + 993 <--x 571 + 809 <--x 572 + 995 <--x 572 + 996 <--x 572 + 806 <--x 573 + 994 <--x 573 + 995 <--x 573 + 807 <--x 574 + 996 <--x 574 + 997 <--x 574 + 808 <--x 575 + 994 <--x 575 + 997 <--x 575 + 812 <--x 576 + 998 <--x 576 + 999 <--x 576 + 810 <--x 577 + 998 <--x 577 + 1001 <--x 577 + 811 <--x 578 + 1000 <--x 578 + 1001 <--x 578 + 813 <--x 579 + 999 <--x 579 + 1000 <--x 579 + 815 <--x 580 + 1003 <--x 580 + 1005 <--x 580 + 814 <--x 581 + 1004 <--x 581 + 1005 <--x 581 + 817 <--x 582 + 1002 <--x 582 + 1004 <--x 582 + 816 <--x 583 + 1002 <--x 583 + 1003 <--x 583 + 818 <--x 584 + 1006 <--x 584 + 1007 <--x 584 + 819 <--x 585 + 1006 <--x 585 + 1008 <--x 585 + 821 <--x 586 + 1007 <--x 586 + 1009 <--x 586 + 820 <--x 587 + 1008 <--x 587 + 1009 <--x 587 + 822 <--x 588 + 1011 <--x 588 + 1012 <--x 588 + 825 <--x 589 + 1011 <--x 589 + 1013 <--x 589 + 823 <--x 590 + 1010 <--x 590 + 1013 <--x 590 + 824 <--x 591 + 1010 <--x 591 + 1012 <--x 591 + 642 <--x 592 + 643 <--x 592 + 644 <--x 592 + 645 <--x 592 + 646 <--x 593 + 647 <--x 593 + 648 <--x 593 + 649 <--x 593 + 654 <--x 594 + 655 <--x 594 + 656 <--x 594 + 657 <--x 594 + 666 <--x 595 + 667 <--x 595 + 668 <--x 595 + 669 <--x 595 + 678 <--x 597 + 679 <--x 597 + 680 <--x 597 + 681 <--x 597 + 686 <--x 598 + 687 <--x 598 + 688 <--x 598 + 689 <--x 598 + 694 <--x 600 + 695 <--x 600 + 696 <--x 600 + 697 <--x 600 + 698 <--x 601 + 699 <--x 601 + 700 <--x 601 + 701 <--x 601 + 702 <--x 601 + 703 <--x 601 + 704 <--x 601 + 705 <--x 601 + 706 <--x 601 + 707 <--x 601 + 708 <--x 601 + 709 <--x 601 + 710 <--x 602 + 711 <--x 602 + 712 <--x 602 + 713 <--x 602 + 718 <--x 603 + 719 <--x 603 + 720 <--x 603 + 721 <--x 603 + 722 <--x 604 + 723 <--x 604 + 724 <--x 604 + 725 <--x 604 + 738 <--x 605 + 739 <--x 605 + 740 <--x 605 + 741 <--x 605 + 750 <--x 606 + 751 <--x 606 + 752 <--x 606 + 753 <--x 606 + 770 <--x 607 + 771 <--x 607 + 772 <--x 607 + 773 <--x 607 + 774 <--x 608 + 775 <--x 608 + 776 <--x 608 + 777 <--x 608 + 778 <--x 609 + 779 <--x 609 + 780 <--x 609 + 781 <--x 609 + 822 <--x 611 + 823 <--x 611 + 824 <--x 611 + 825 <--x 611 + 638 <--x 612 + 639 <--x 612 + 640 <--x 612 + 641 <--x 612 + 650 <--x 613 + 651 <--x 613 + 652 <--x 613 + 653 <--x 613 + 658 <--x 614 + 659 <--x 614 + 660 <--x 614 + 661 <--x 614 + 662 <--x 615 + 663 <--x 615 + 664 <--x 615 + 665 <--x 615 + 670 <--x 616 + 671 <--x 616 + 672 <--x 616 + 673 <--x 616 + 674 <--x 617 + 675 <--x 617 + 676 <--x 617 + 677 <--x 617 + 682 <--x 618 + 683 <--x 618 + 684 <--x 618 + 685 <--x 618 + 690 <--x 619 + 691 <--x 619 + 692 <--x 619 + 693 <--x 619 + 714 <--x 620 + 715 <--x 620 + 716 <--x 620 + 717 <--x 620 + 726 <--x 621 + 727 <--x 621 + 728 <--x 621 + 729 <--x 621 + 730 <--x 622 + 731 <--x 622 + 732 <--x 622 + 733 <--x 622 + 734 <--x 623 + 735 <--x 623 + 736 <--x 623 + 737 <--x 623 + 742 <--x 624 + 743 <--x 624 + 744 <--x 624 + 745 <--x 624 + 746 <--x 625 + 747 <--x 625 + 748 <--x 625 + 749 <--x 625 + 754 <--x 626 + 755 <--x 626 + 756 <--x 626 + 757 <--x 626 + 758 <--x 627 + 759 <--x 627 + 760 <--x 627 + 761 <--x 627 + 762 <--x 628 + 763 <--x 628 + 764 <--x 628 + 765 <--x 628 + 766 <--x 629 + 767 <--x 629 + 768 <--x 629 + 769 <--x 629 + 782 <--x 630 + 783 <--x 630 + 784 <--x 630 + 785 <--x 630 + 786 <--x 631 + 787 <--x 631 + 788 <--x 631 + 789 <--x 631 + 790 <--x 631 + 791 <--x 631 + 792 <--x 631 + 793 <--x 631 + 794 <--x 631 + 795 <--x 631 + 796 <--x 631 + 797 <--x 631 + 798 <--x 632 + 799 <--x 632 + 800 <--x 632 + 801 <--x 632 + 802 <--x 633 + 803 <--x 633 + 804 <--x 633 + 805 <--x 633 + 806 <--x 634 + 807 <--x 634 + 808 <--x 634 + 809 <--x 634 + 810 <--x 635 + 811 <--x 635 + 812 <--x 635 + 813 <--x 635 + 814 <--x 636 + 815 <--x 636 + 816 <--x 636 + 817 <--x 636 + 818 <--x 637 + 819 <--x 637 + 820 <--x 637 + 821 <--x 637 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/kitt/ops.snap b/rust/kcl-lib/tests/kcl_samples/kitt/ops.snap index 743565fc5..a7e582991 100644 --- a/rust/kcl-lib/tests/kcl_samples/kitt/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/kitt/ops.snap @@ -3,6 +3,2108 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed kitt.kcl --- [ + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "start" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "start" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "start" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "start" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "start" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "start" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "start" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "start" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "TagIdentifier", + "value": "seg01", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "TagIdentifier", + "value": "seg01", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "TagIdentifier", + "value": "seg02", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "TagIdentifier", + "value": "seg02", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "TagIdentifier", + "value": "seg02", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "TagIdentifier", + "value": "seg02", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "TagIdentifier", + "value": "seg02", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "TagIdentifier", + "value": "seg02", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "TagIdentifier", + "value": "seg02", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "TagIdentifier", + "value": "seg02", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "TagIdentifier", + "value": "seg02", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "TagIdentifier", + "value": "seg02", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 3.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 3.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 3.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 3.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, { "labeledArgs": { "planeOrSolid": { @@ -84,64 +2186,6 @@ description: Operations executed kitt.kcl "sourceRange": [] } }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "length": { @@ -186,62 +2230,26 @@ description: Operations executed kitt.kcl "sourceRange": [] }, { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "sourceRange": [] }, { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" + "sourceRange": [] }, { "type": "GroupBegin", @@ -310,7 +2318,136 @@ description: Operations executed kitt.kcl } }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "type": "GroupBegin", @@ -325,10 +2462,10 @@ description: Operations executed kitt.kcl }, { "labeledArgs": { - "face": { + "planeOrSolid": { "value": { - "type": "String", - "value": "start" + "type": "Plane", + "artifact_id": "[uuid]" }, "sourceRange": [] } @@ -336,1082 +2473,7 @@ description: Operations executed kitt.kcl "name": "startSketchOn", "sourceRange": [], "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "kitLeg", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "unlabeledArg": null }, { "labeledArgs": { @@ -1460,40 +2522,6 @@ description: Operations executed kitt.kcl "sourceRange": [] } }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "length": { @@ -1527,10 +2555,26 @@ description: Operations executed kitt.kcl } }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "type": "GroupBegin", @@ -1544,51 +2588,15 @@ description: Operations executed kitt.kcl "sourceRange": [] }, { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "kitLeg", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "sourceRange": [] }, { "type": "GroupBegin", @@ -1602,65 +2610,92 @@ description: Operations executed kitt.kcl "sourceRange": [] }, { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "sourceRange": [] }, { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "sourceRange": [] }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "kitEar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "type": "GroupBegin", @@ -1684,65 +2719,6 @@ description: Operations executed kitt.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "face": { - "value": { - "type": "TagIdentifier", - "value": "seg01", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1754,216 +2730,6 @@ description: Operations executed kitt.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "kitEar", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "type": "GroupBegin", "group": { @@ -1976,63 +2742,15 @@ description: Operations executed kitt.kcl "sourceRange": [] }, { - "labeledArgs": { - "face": { - "value": { - "type": "TagIdentifier", - "value": "seg01", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" + "sourceRange": [] }, { "type": "GroupBegin", @@ -2046,62 +2764,15 @@ description: Operations executed kitt.kcl "sourceRange": [] }, { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" + "sourceRange": [] }, { "type": "GroupBegin", @@ -2115,62 +2786,15 @@ description: Operations executed kitt.kcl "sourceRange": [] }, { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pixelBox", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" + "sourceRange": [] }, { "type": "GroupBegin", @@ -2183,67 +2807,6 @@ description: Operations executed kitt.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2256,690 +2819,127 @@ description: Operations executed kitt.kcl "sourceRange": [] }, { - "labeledArgs": { - "face": { - "value": { - "type": "TagIdentifier", - "value": "seg02", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "TagIdentifier", - "value": "seg02", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "TagIdentifier", - "value": "seg02", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "TagIdentifier", - "value": "seg02", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "TagIdentifier", - "value": "seg02", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "TagIdentifier", - "value": "seg02", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "TagIdentifier", - "value": "seg02", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "TagIdentifier", - "value": "seg02", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "TagIdentifier", - "value": "seg02", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pixelBox", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { - "labeledArgs": { - "face": { - "value": { - "type": "TagIdentifier", - "value": "seg02", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" }, { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" }, { "type": "GroupEnd" diff --git a/rust/kcl-lib/tests/kcl_samples/lego/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/lego/artifact_commands.snap index 08d6d768c..2ba11809e 100644 --- a/rust/kcl-lib/tests/kcl_samples/lego/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/lego/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands lego.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands lego.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands lego.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +375,6 @@ description: Artifact commands lego.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,30 +389,12 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -407,13 +407,6 @@ description: Artifact commands lego.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -434,6 +427,13 @@ description: Artifact commands lego.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -516,6 +516,14 @@ description: Artifact commands lego.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -527,8 +535,108 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -544,30 +652,12 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -582,39 +672,12 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -629,18 +692,10 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -657,39 +712,12 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -704,28 +732,8 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -740,33 +748,6 @@ description: Artifact commands lego.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -40.64, - "y": -203.2, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -796,8 +777,27 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -40.64, + "y": -203.2, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -994,82 +994,48 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 45.72, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -1099,83 +1065,11 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 45.72, + "faces": null, + "opposite": "None" } }, { @@ -1193,83 +1087,11 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 45.72, + "faces": null, + "opposite": "None" } }, { @@ -1283,89 +1105,6 @@ description: Artifact commands lego.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -1381,7 +1120,8 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -1392,6 +1132,242 @@ description: Artifact commands lego.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1405,7 +1381,7 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1414,17 +1390,34 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1443,86 +1436,12 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 45.72, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1537,9 +1456,98 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -1554,33 +1562,6 @@ description: Artifact commands lego.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 60.959999999999994, - "y": -101.6, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1610,8 +1591,27 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 60.959999999999994, + "y": -101.6, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -1676,88 +1676,6 @@ description: Artifact commands lego.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 45.72, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1785,7 +1703,11 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 45.72, + "faces": null, + "opposite": "None" } }, { @@ -1796,6 +1718,82 @@ description: Artifact commands lego.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1809,26 +1807,7 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1847,9 +1826,30 @@ description: Artifact commands lego.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/lego/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/lego/artifact_graph_flowchart.snap.md index d5e6451fa..e33cbd57c 100644 --- a/rust/kcl-lib/tests/kcl_samples/lego/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/lego/artifact_graph_flowchart.snap.md @@ -1,216 +1,216 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[1019, 1073, 0]"] - 3["Segment
[1079, 1106, 0]"] - 4["Segment
[1112, 1140, 0]"] - 5["Segment
[1146, 1174, 0]"] - 6["Segment
[1180, 1187, 0]"] - 7[Solid2d] + subgraph path5 [Path] + 5["Path
[1019, 1073, 0]"] + 9["Segment
[1079, 1106, 0]"] + 10["Segment
[1112, 1140, 0]"] + 11["Segment
[1146, 1174, 0]"] + 12["Segment
[1180, 1187, 0]"] + 20[Solid2d] end - subgraph path23 [Path] - 23["Path
[1434, 1521, 0]"] - 24["Segment
[1527, 1564, 0]"] - 25["Segment
[1570, 1608, 0]"] - 26["Segment
[1614, 1654, 0]"] - 27["Segment
[1660, 1667, 0]"] - 28[Solid2d] + subgraph path6 [Path] + 6["Path
[1434, 1521, 0]"] + 13["Segment
[1527, 1564, 0]"] + 14["Segment
[1570, 1608, 0]"] + 15["Segment
[1614, 1654, 0]"] + 16["Segment
[1660, 1667, 0]"] + 19[Solid2d] end - subgraph path43 [Path] - 43["Path
[1791, 1938, 0]"] - 44["Segment
[1791, 1938, 0]"] - 45[Solid2d] + subgraph path7 [Path] + 7["Path
[1791, 1938, 0]"] + 17["Segment
[1791, 1938, 0]"] + 21[Solid2d] end - subgraph path56 [Path] - 56["Path
[2228, 2403, 0]"] - 57["Segment
[2228, 2403, 0]"] - 58[Solid2d] + subgraph path8 [Path] + 8["Path
[2228, 2403, 0]"] + 18["Segment
[2228, 2403, 0]"] + 22[Solid2d] end 1["Plane
[996, 1013, 0]"] - 8["Sweep Extrusion
[1193, 1217, 0]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12[Wall] - 13["Cap Start"] - 14["Cap End"] - 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 29["Sweep Extrusion
[1673, 1704, 0]"] - 30[Wall] - 31[Wall] - 32[Wall] + 2["StartSketchOnFace
[1754, 1785, 0]"] + 3["StartSketchOnFace
[2181, 2222, 0]"] + 4["StartSketchOnFace
[1395, 1428, 0]"] + 23["Sweep Extrusion
[1193, 1217, 0]"] + 24["Sweep Extrusion
[1673, 1704, 0]"] + 25["Sweep Extrusion
[2092, 2120, 0]"] + 26["Sweep Extrusion
[2092, 2120, 0]"] + 27["Sweep Extrusion
[2092, 2120, 0]"] + 28["Sweep Extrusion
[2092, 2120, 0]"] + 29["Sweep Extrusion
[2092, 2120, 0]"] + 30["Sweep Extrusion
[2092, 2120, 0]"] + 31["Sweep Extrusion
[2565, 2593, 0]"] + 32["Sweep Extrusion
[2565, 2593, 0]"] 33[Wall] - 34["Cap Start"] - 35["SweepEdge Opposite"] - 36["SweepEdge Adjacent"] - 37["SweepEdge Opposite"] - 38["SweepEdge Adjacent"] - 39["SweepEdge Opposite"] - 40["SweepEdge Adjacent"] - 41["SweepEdge Opposite"] - 42["SweepEdge Adjacent"] - 46["Sweep Extrusion
[2092, 2120, 0]"] - 47[Wall] - 48["Cap End"] + 34[Wall] + 35[Wall] + 36[Wall] + 37[Wall] + 38[Wall] + 39[Wall] + 40[Wall] + 41[Wall] + 42[Wall] + 43["Cap Start"] + 44["Cap Start"] + 45["Cap End"] + 46["Cap End"] + 47["Cap End"] + 48["SweepEdge Opposite"] 49["SweepEdge Opposite"] - 50["SweepEdge Adjacent"] - 51["Sweep Extrusion
[2092, 2120, 0]"] - 52["Sweep Extrusion
[2092, 2120, 0]"] - 53["Sweep Extrusion
[2092, 2120, 0]"] - 54["Sweep Extrusion
[2092, 2120, 0]"] - 55["Sweep Extrusion
[2092, 2120, 0]"] - 59["Sweep Extrusion
[2565, 2593, 0]"] - 60[Wall] - 61["Cap End"] - 62["SweepEdge Opposite"] + 50["SweepEdge Opposite"] + 51["SweepEdge Opposite"] + 52["SweepEdge Opposite"] + 53["SweepEdge Opposite"] + 54["SweepEdge Opposite"] + 55["SweepEdge Opposite"] + 56["SweepEdge Opposite"] + 57["SweepEdge Opposite"] + 58["SweepEdge Adjacent"] + 59["SweepEdge Adjacent"] + 60["SweepEdge Adjacent"] + 61["SweepEdge Adjacent"] + 62["SweepEdge Adjacent"] 63["SweepEdge Adjacent"] - 64["Sweep Extrusion
[2565, 2593, 0]"] - 65["StartSketchOnFace
[1395, 1428, 0]"] - 66["StartSketchOnFace
[1754, 1785, 0]"] - 67["StartSketchOnFace
[2181, 2222, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 9 - 3 --- 15 - 3 --- 16 - 3 x--> 13 - 4 --- 10 - 4 --- 17 - 4 --- 18 - 4 x--> 13 + 64["SweepEdge Adjacent"] + 65["SweepEdge Adjacent"] + 66["SweepEdge Adjacent"] + 67["SweepEdge Adjacent"] + 1 --- 5 + 45 x--> 2 + 44 x--> 3 + 43 x--> 4 + 5 --- 9 + 5 --- 10 5 --- 11 - 5 --- 19 + 5 --- 12 5 --- 20 - 5 x--> 13 - 6 --- 12 - 6 --- 21 - 6 --- 22 - 6 x--> 13 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 - 8 --- 16 - 8 --- 17 + 5 ---- 23 + 6 --- 13 + 6 --- 14 + 6 --- 15 + 6 --- 16 + 6 --- 19 + 6 ---- 24 + 43 --- 6 + 7 --- 17 + 7 --- 21 + 7 ---- 30 + 45 --- 7 8 --- 18 - 8 --- 19 - 8 --- 20 - 8 --- 21 8 --- 22 - 13 --- 23 - 14 --- 43 - 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 10 - 17 <--x 10 - 17 <--x 14 - 18 <--x 10 - 18 <--x 11 - 19 <--x 11 - 19 <--x 14 - 20 <--x 11 - 20 <--x 12 - 21 <--x 12 - 21 <--x 14 - 22 <--x 9 - 22 <--x 12 - 23 --- 24 - 23 --- 25 - 23 --- 26 - 23 --- 27 - 23 ---- 29 - 23 --- 28 - 24 --- 30 - 24 --- 35 - 24 --- 36 - 24 <--x 13 - 25 --- 31 - 25 --- 37 - 25 --- 38 - 25 <--x 13 - 26 --- 32 - 26 --- 39 - 26 --- 40 - 26 <--x 13 - 27 --- 33 - 27 --- 41 - 27 --- 42 - 27 <--x 13 - 29 --- 30 - 29 --- 31 - 29 --- 32 - 29 --- 33 - 29 --- 34 - 29 --- 35 - 29 --- 36 - 29 --- 37 - 29 --- 38 - 29 --- 39 - 29 --- 40 - 29 --- 41 - 29 --- 42 - 34 --- 56 - 35 <--x 30 - 35 <--x 34 - 36 <--x 30 - 36 <--x 31 - 37 <--x 31 - 37 <--x 34 - 38 <--x 31 - 38 <--x 32 - 39 <--x 32 - 39 <--x 34 - 40 <--x 32 - 40 <--x 33 - 41 <--x 33 - 41 <--x 34 - 42 <--x 30 - 42 <--x 33 - 43 --- 44 - 43 ---- 46 - 43 --- 45 - 44 --- 47 - 44 --- 49 - 44 --- 50 - 44 <--x 14 - 46 --- 47 - 46 --- 48 - 46 --- 49 - 46 --- 50 - 49 <--x 47 - 49 <--x 48 - 50 <--x 47 - 56 --- 57 - 56 ---- 59 - 56 --- 58 - 57 --- 60 - 57 --- 62 - 57 --- 63 - 57 <--x 34 - 59 --- 60 - 59 --- 61 - 59 --- 62 - 59 --- 63 - 62 <--x 60 - 62 <--x 61 - 63 <--x 60 - 13 <--x 65 - 14 <--x 66 - 34 <--x 67 + 8 ---- 31 + 44 --- 8 + 9 --- 36 + 9 x--> 43 + 9 --- 49 + 9 --- 58 + 10 --- 34 + 10 x--> 43 + 10 --- 48 + 10 --- 61 + 11 --- 33 + 11 x--> 43 + 11 --- 51 + 11 --- 60 + 12 --- 35 + 12 x--> 43 + 12 --- 50 + 12 --- 59 + 13 --- 39 + 13 x--> 43 + 13 --- 53 + 13 --- 62 + 14 --- 40 + 14 x--> 43 + 14 --- 52 + 14 --- 64 + 15 --- 38 + 15 x--> 43 + 15 --- 55 + 15 --- 63 + 16 --- 37 + 16 x--> 43 + 16 --- 54 + 16 --- 65 + 17 --- 42 + 17 x--> 45 + 17 --- 57 + 17 --- 67 + 18 --- 41 + 18 x--> 44 + 18 --- 56 + 18 --- 66 + 23 --- 33 + 23 --- 34 + 23 --- 35 + 23 --- 36 + 23 --- 43 + 23 --- 45 + 23 --- 48 + 23 --- 49 + 23 --- 50 + 23 --- 51 + 23 --- 58 + 23 --- 59 + 23 --- 60 + 23 --- 61 + 24 --- 37 + 24 --- 38 + 24 --- 39 + 24 --- 40 + 24 --- 44 + 24 --- 52 + 24 --- 53 + 24 --- 54 + 24 --- 55 + 24 --- 62 + 24 --- 63 + 24 --- 64 + 24 --- 65 + 30 --- 42 + 30 --- 47 + 30 --- 57 + 30 --- 67 + 31 --- 41 + 31 --- 46 + 31 --- 56 + 31 --- 66 + 51 <--x 33 + 60 <--x 33 + 61 <--x 33 + 48 <--x 34 + 58 <--x 34 + 61 <--x 34 + 50 <--x 35 + 59 <--x 35 + 60 <--x 35 + 49 <--x 36 + 58 <--x 36 + 59 <--x 36 + 54 <--x 37 + 63 <--x 37 + 65 <--x 37 + 55 <--x 38 + 63 <--x 38 + 64 <--x 38 + 53 <--x 39 + 62 <--x 39 + 65 <--x 39 + 52 <--x 40 + 62 <--x 40 + 64 <--x 40 + 56 <--x 41 + 66 <--x 41 + 57 <--x 42 + 67 <--x 42 + 52 <--x 44 + 53 <--x 44 + 54 <--x 44 + 55 <--x 44 + 48 <--x 45 + 49 <--x 45 + 50 <--x 45 + 51 <--x 45 + 56 <--x 46 + 57 <--x 47 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/makeup-mirror/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/makeup-mirror/artifact_commands.snap index 0fce38952..b7b6c5c02 100644 --- a/rust/kcl-lib/tests/kcl_samples/makeup-mirror/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/makeup-mirror/artifact_commands.snap @@ -58,188 +58,50 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { + "type": "make_plane", + "origin": { "x": 0.0, "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 8.0, + "z": 24.5 + }, + "x_axis": { + "x": 1.0, "y": 0.0, "z": 0.0 - } + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 8.0, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { + "type": "make_plane", + "origin": { "x": 0.0, "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 24.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "z": 49.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false } }, { @@ -267,194 +129,6 @@ description: Artifact commands makeup-mirror.kcl "hide": false } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 8.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 8.0, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 24.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -480,407 +154,6 @@ description: Artifact commands makeup-mirror.kcl "hide": false } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 8.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 8.0, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 24.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 24.5 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 100.0, - "clobber": false, - "hide": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 178.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 170.0, - "y": 0.0 - }, - "radius": 8.0, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 24.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -906,407 +179,6 @@ description: Artifact commands makeup-mirror.kcl "hide": false } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 178.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 170.0, - "y": 0.0 - }, - "radius": 8.0, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 24.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 49.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 100.0, - "clobber": false, - "hide": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 178.0, - "y": -170.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 170.0, - "y": -170.0 - }, - "radius": 8.0, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 24.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1346,6 +218,146 @@ description: Artifact commands makeup-mirror.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1366,19 +378,15 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 178.0, - "y": -170.0, - "z": 0.0 + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 } } }, @@ -1386,7 +394,205 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 8.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 8.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 8.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 170.0, + "y": 0.0 + }, + "radius": 8.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 170.0, + "y": 0.0 + }, + "radius": 8.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } } }, { @@ -1418,8 +624,373 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 170.0, + "y": -170.0 + }, + "radius": 8.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 8.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 8.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 8.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 178.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 178.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 178.0, + "y": -170.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 178.0, + "y": -170.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { @@ -1453,7 +1024,66 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 24.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 24.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 24.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 24.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 24.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 24.0, + "faces": null, + "opposite": "None" } }, { @@ -1464,6 +1094,292 @@ description: Artifact commands makeup-mirror.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1477,7 +1393,7 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1486,17 +1402,43 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1515,9 +1457,130 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1545,6 +1608,47 @@ description: Artifact commands makeup-mirror.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1565,29 +1669,18 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 5.0, - "y": 36.5, + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, "z": 0.0 } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1617,23 +1710,24 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 170.0, + "y": 61.0 + }, + "radius": 5.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false } } }, @@ -1641,132 +1735,15 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 170.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 5.0, + "y": 36.5, "z": 0.0 } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1791,33 +1768,37 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 170.0, - "y": 61.0 - }, - "radius": 5.0, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } + "type": "sketch_mode_disable" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } } }, { @@ -1851,7 +1832,11 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 170.0, + "faces": null, + "opposite": "None" } }, { @@ -1862,6 +1847,82 @@ description: Artifact commands makeup-mirror.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1875,26 +1936,7 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1913,9 +1955,30 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1957,6 +2020,14 @@ description: Artifact commands makeup-mirror.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1973,33 +2044,6 @@ description: Artifact commands makeup-mirror.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 255.0, - "y": 188.5, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2029,8 +2073,36 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 255.0, + "y": 188.5, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -2060,13 +2132,6 @@ description: Artifact commands makeup-mirror.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2075,6 +2140,40 @@ description: Artifact commands makeup-mirror.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2084,34 +2183,6 @@ description: Artifact commands makeup-mirror.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2126,9 +2197,10 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2147,13 +2219,6 @@ description: Artifact commands makeup-mirror.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2167,6 +2232,15 @@ description: Artifact commands makeup-mirror.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -2174,6 +2248,13 @@ description: Artifact commands makeup-mirror.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2287,6 +2368,14 @@ description: Artifact commands makeup-mirror.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2298,8 +2387,108 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -2315,30 +2504,12 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2353,39 +2524,12 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2400,18 +2544,10 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2424,43 +2560,6 @@ description: Artifact commands makeup-mirror.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2475,109 +2574,10 @@ description: Artifact commands makeup-mirror.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/makeup-mirror/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/makeup-mirror/artifact_graph_flowchart.snap.md index 8239e6723..99f1af1ea 100644 --- a/rust/kcl-lib/tests/kcl_samples/makeup-mirror/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/makeup-mirror/artifact_graph_flowchart.snap.md @@ -1,377 +1,377 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[583, 628, 0]"] - 3["Segment
[583, 628, 0]"] - 4[Solid2d] + subgraph path19 [Path] + 19["Path
[583, 628, 0]"] + 31["Segment
[583, 628, 0]"] + 46[Solid2d] end - subgraph path12 [Path] - 12["Path
[583, 628, 0]"] - 13["Segment
[583, 628, 0]"] - 14[Solid2d] + subgraph path20 [Path] + 20["Path
[583, 628, 0]"] + 36["Segment
[583, 628, 0]"] + 47[Solid2d] + end + subgraph path21 [Path] + 21["Path
[583, 628, 0]"] + 30["Segment
[583, 628, 0]"] + 48[Solid2d] end subgraph path22 [Path] 22["Path
[583, 628, 0]"] - 23["Segment
[583, 628, 0]"] - 24[Solid2d] + 35["Segment
[583, 628, 0]"] + 49[Solid2d] end - subgraph path32 [Path] - 32["Path
[583, 628, 0]"] + subgraph path23 [Path] + 23["Path
[583, 628, 0]"] 33["Segment
[583, 628, 0]"] - 34[Solid2d] + 51[Solid2d] end - subgraph path42 [Path] - 42["Path
[583, 628, 0]"] - 43["Segment
[583, 628, 0]"] - 44[Solid2d] + subgraph path24 [Path] + 24["Path
[583, 628, 0]"] + 34["Segment
[583, 628, 0]"] + 52[Solid2d] end - subgraph path52 [Path] - 52["Path
[583, 628, 0]"] - 53["Segment
[583, 628, 0]"] + subgraph path25 [Path] + 25["Path
[583, 628, 0]"] + 32["Segment
[583, 628, 0]"] + 53[Solid2d] + end + subgraph path26 [Path] + 26["Path
[1228, 1283, 0]"] + 38["Segment
[1228, 1283, 0]"] + 45[Solid2d] + end + subgraph path27 [Path] + 27["Path
[1228, 1283, 0]"] + 37["Segment
[1228, 1283, 0]"] + 55[Solid2d] + end + subgraph path28 [Path] + 28["Path
[1676, 1739, 0]"] + 39["Segment
[1676, 1739, 0]"] + 50[Solid2d] + end + subgraph path29 [Path] + 29["Path
[1785, 1844, 0]"] + 40["Segment
[1852, 1876, 0]"] + 41["Segment
[1884, 1984, 0]"] + 42["Segment
[1992, 2016, 0]"] + 43["Segment
[2024, 2202, 0]"] + 44["Segment
[2210, 2217, 0]"] 54[Solid2d] end - subgraph path62 [Path] - 62["Path
[583, 628, 0]"] - 63["Segment
[583, 628, 0]"] - 64[Solid2d] - end - subgraph path72 [Path] - 72["Path
[1228, 1283, 0]"] - 73["Segment
[1228, 1283, 0]"] - 74[Solid2d] - end - subgraph path82 [Path] - 82["Path
[1228, 1283, 0]"] - 83["Segment
[1228, 1283, 0]"] - 84[Solid2d] - end - subgraph path92 [Path] - 92["Path
[1676, 1739, 0]"] - 93["Segment
[1676, 1739, 0]"] - 94[Solid2d] - end - subgraph path101 [Path] - 101["Path
[1785, 1844, 0]"] - 102["Segment
[1852, 1876, 0]"] - 103["Segment
[1884, 1984, 0]"] - 104["Segment
[1992, 2016, 0]"] - 105["Segment
[2024, 2202, 0]"] - 106["Segment
[2210, 2217, 0]"] - 107[Solid2d] - end 1["Plane
[547, 574, 0]"] - 5["Sweep Extrusion
[636, 665, 0]"] - 6[Wall] - 7["Cap Start"] - 8["Cap End"] - 9["SweepEdge Opposite"] - 10["SweepEdge Adjacent"] - 11["Plane
[547, 574, 0]"] - 15["Sweep Extrusion
[636, 665, 0]"] - 16[Wall] - 17["Cap Start"] - 18["Cap End"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["Plane
[547, 574, 0]"] - 25["Sweep Extrusion
[636, 665, 0]"] - 26[Wall] - 27["Cap Start"] - 28["Cap End"] - 29["SweepEdge Opposite"] - 30["SweepEdge Adjacent"] - 31["Plane
[547, 574, 0]"] - 35["Sweep Extrusion
[636, 665, 0]"] - 36[Wall] - 37["Cap Start"] - 38["Cap End"] - 39["SweepEdge Opposite"] - 40["SweepEdge Adjacent"] - 41["Plane
[547, 574, 0]"] - 45["Sweep Extrusion
[636, 665, 0]"] - 46[Wall] - 47["Cap Start"] - 48["Cap End"] - 49["SweepEdge Opposite"] - 50["SweepEdge Adjacent"] - 51["Plane
[547, 574, 0]"] - 55["Sweep Extrusion
[636, 665, 0]"] - 56[Wall] - 57["Cap Start"] - 58["Cap End"] - 59["SweepEdge Opposite"] - 60["SweepEdge Adjacent"] - 61["Plane
[547, 574, 0]"] - 65["Sweep Extrusion
[636, 665, 0]"] - 66[Wall] - 67["Cap Start"] - 68["Cap End"] - 69["SweepEdge Opposite"] - 70["SweepEdge Adjacent"] - 71["Plane
[1200, 1220, 0]"] - 75["Sweep Extrusion
[1291, 1318, 0]"] + 2["Plane
[547, 574, 0]"] + 3["Plane
[547, 574, 0]"] + 4["Plane
[547, 574, 0]"] + 5["Plane
[547, 574, 0]"] + 6["Plane
[547, 574, 0]"] + 7["Plane
[547, 574, 0]"] + 8["Plane
[1200, 1220, 0]"] + 9["Plane
[1200, 1220, 0]"] + 10["Plane
[1612, 1662, 0]"] + 11["StartSketchOnPlane
[533, 575, 0]"] + 12["StartSketchOnPlane
[533, 575, 0]"] + 13["StartSketchOnPlane
[533, 575, 0]"] + 14["StartSketchOnPlane
[533, 575, 0]"] + 15["StartSketchOnPlane
[533, 575, 0]"] + 16["StartSketchOnPlane
[1596, 1663, 0]"] + 17["StartSketchOnPlane
[533, 575, 0]"] + 18["StartSketchOnPlane
[533, 575, 0]"] + 56["Sweep Extrusion
[636, 665, 0]"] + 57["Sweep Extrusion
[636, 665, 0]"] + 58["Sweep Extrusion
[636, 665, 0]"] + 59["Sweep Extrusion
[636, 665, 0]"] + 60["Sweep Extrusion
[636, 665, 0]"] + 61["Sweep Extrusion
[636, 665, 0]"] + 62["Sweep Extrusion
[636, 665, 0]"] + 63["Sweep Extrusion
[1291, 1318, 0]"] + 64["Sweep Extrusion
[1291, 1318, 0]"] + 65["Sweep Extrusion
[1747, 1770, 0]"] + 66["Sweep Extrusion
[2225, 2248, 0]"] + 67[Wall] + 68[Wall] + 69[Wall] + 70[Wall] + 71[Wall] + 72[Wall] + 73[Wall] + 74[Wall] + 75[Wall] 76[Wall] - 77["Cap Start"] - 78["Cap End"] - 79["SweepEdge Opposite"] - 80["SweepEdge Adjacent"] - 81["Plane
[1200, 1220, 0]"] - 85["Sweep Extrusion
[1291, 1318, 0]"] - 86[Wall] + 77[Wall] + 78[Wall] + 79[Wall] + 80[Wall] + 81["Cap Start"] + 82["Cap Start"] + 83["Cap Start"] + 84["Cap Start"] + 85["Cap Start"] + 86["Cap Start"] 87["Cap Start"] - 88["Cap End"] - 89["SweepEdge Opposite"] - 90["SweepEdge Adjacent"] - 91["Plane
[1612, 1662, 0]"] - 95["Sweep Extrusion
[1747, 1770, 0]"] - 96[Wall] - 97["Cap Start"] + 88["Cap Start"] + 89["Cap Start"] + 90["Cap Start"] + 91["Cap Start"] + 92["Cap End"] + 93["Cap End"] + 94["Cap End"] + 95["Cap End"] + 96["Cap End"] + 97["Cap End"] 98["Cap End"] - 99["SweepEdge Opposite"] - 100["SweepEdge Adjacent"] - 108["Sweep Extrusion
[2225, 2248, 0]"] - 109[Wall] - 110[Wall] - 111[Wall] - 112[Wall] - 113["Cap Start"] - 114["Cap End"] + 99["Cap End"] + 100["Cap End"] + 101["Cap End"] + 102["Cap End"] + 103["SweepEdge Opposite"] + 104["SweepEdge Opposite"] + 105["SweepEdge Opposite"] + 106["SweepEdge Opposite"] + 107["SweepEdge Opposite"] + 108["SweepEdge Opposite"] + 109["SweepEdge Opposite"] + 110["SweepEdge Opposite"] + 111["SweepEdge Opposite"] + 112["SweepEdge Opposite"] + 113["SweepEdge Opposite"] + 114["SweepEdge Opposite"] 115["SweepEdge Opposite"] - 116["SweepEdge Adjacent"] - 117["SweepEdge Opposite"] + 116["SweepEdge Opposite"] + 117["SweepEdge Adjacent"] 118["SweepEdge Adjacent"] - 119["SweepEdge Opposite"] + 119["SweepEdge Adjacent"] 120["SweepEdge Adjacent"] - 121["SweepEdge Opposite"] + 121["SweepEdge Adjacent"] 122["SweepEdge Adjacent"] - 123["StartSketchOnPlane
[533, 575, 0]"] - 124["StartSketchOnPlane
[533, 575, 0]"] - 125["StartSketchOnPlane
[533, 575, 0]"] - 126["StartSketchOnPlane
[533, 575, 0]"] - 127["StartSketchOnPlane
[533, 575, 0]"] - 128["StartSketchOnPlane
[533, 575, 0]"] - 129["StartSketchOnPlane
[533, 575, 0]"] - 130["StartSketchOnPlane
[1596, 1663, 0]"] - 1 --- 2 - 2 --- 3 - 2 ---- 5 - 2 --- 4 - 3 --- 6 - 3 --- 9 - 3 --- 10 - 3 x--> 7 - 5 --- 6 - 5 --- 7 - 5 --- 8 - 5 --- 9 - 5 --- 10 - 9 <--x 6 - 9 <--x 8 - 10 <--x 6 - 11 --- 12 - 12 --- 13 - 12 ---- 15 - 12 --- 14 - 13 --- 16 - 13 --- 19 - 13 --- 20 - 13 x--> 17 - 15 --- 16 - 15 --- 17 - 15 --- 18 - 15 --- 19 - 15 --- 20 - 19 <--x 16 - 19 <--x 18 - 20 <--x 16 - 21 --- 22 - 22 --- 23 - 22 ---- 25 - 22 --- 24 - 23 --- 26 - 23 --- 29 - 23 --- 30 - 23 x--> 27 - 25 --- 26 - 25 --- 27 - 25 --- 28 - 25 --- 29 - 25 --- 30 - 29 <--x 26 - 29 <--x 28 - 30 <--x 26 - 31 --- 32 - 32 --- 33 - 32 ---- 35 - 32 --- 34 - 33 --- 36 - 33 --- 39 - 33 --- 40 - 33 x--> 37 - 35 --- 36 - 35 --- 37 - 35 --- 38 - 35 --- 39 - 35 --- 40 - 39 <--x 36 - 39 <--x 38 - 40 <--x 36 - 41 --- 42 - 42 --- 43 - 42 ---- 45 - 42 --- 44 - 43 --- 46 - 43 --- 49 - 43 --- 50 - 43 x--> 47 - 45 --- 46 - 45 --- 47 - 45 --- 48 - 45 --- 49 - 45 --- 50 - 49 <--x 46 - 49 <--x 48 - 50 <--x 46 - 51 --- 52 - 52 --- 53 - 52 ---- 55 - 52 --- 54 - 53 --- 56 - 53 --- 59 - 53 --- 60 - 53 x--> 57 - 55 --- 56 - 55 --- 57 - 55 --- 58 - 55 --- 59 - 55 --- 60 - 59 <--x 56 - 59 <--x 58 - 60 <--x 56 - 61 --- 62 - 62 --- 63 - 62 ---- 65 - 62 --- 64 - 63 --- 66 - 63 --- 69 - 63 --- 70 - 63 x--> 67 - 65 --- 66 - 65 --- 67 + 123["SweepEdge Adjacent"] + 124["SweepEdge Adjacent"] + 125["SweepEdge Adjacent"] + 126["SweepEdge Adjacent"] + 127["SweepEdge Adjacent"] + 128["SweepEdge Adjacent"] + 129["SweepEdge Adjacent"] + 130["SweepEdge Adjacent"] + 1 <--x 12 + 1 --- 23 + 2 <--x 15 + 2 --- 24 + 3 <--x 13 + 3 --- 21 + 4 <--x 18 + 4 --- 25 + 5 <--x 14 + 5 --- 22 + 6 <--x 11 + 6 --- 20 + 7 <--x 17 + 7 --- 19 + 8 --- 26 + 9 --- 27 + 10 <--x 16 + 10 --- 28 + 10 --- 29 + 19 --- 31 + 19 --- 46 + 19 ---- 61 + 20 --- 36 + 20 --- 47 + 20 ---- 56 + 21 --- 30 + 21 --- 48 + 21 ---- 59 + 22 --- 35 + 22 --- 49 + 22 ---- 62 + 23 --- 33 + 23 --- 51 + 23 ---- 58 + 24 --- 34 + 24 --- 52 + 24 ---- 57 + 25 --- 32 + 25 --- 53 + 25 ---- 60 + 26 --- 38 + 26 --- 45 + 26 ---- 63 + 27 --- 37 + 27 --- 55 + 27 ---- 64 + 28 --- 39 + 28 --- 50 + 28 ---- 65 + 29 --- 40 + 29 --- 41 + 29 --- 42 + 29 --- 43 + 29 --- 44 + 29 --- 54 + 29 ---- 66 + 30 --- 76 + 30 x--> 87 + 30 --- 112 + 30 --- 126 + 31 --- 79 + 31 x--> 90 + 31 --- 115 + 31 --- 129 + 32 --- 78 + 32 x--> 89 + 32 --- 114 + 32 --- 128 + 33 --- 75 + 33 x--> 86 + 33 --- 111 + 33 --- 125 + 34 --- 73 + 34 x--> 84 + 34 --- 109 + 34 --- 123 + 35 --- 80 + 35 x--> 91 + 35 --- 116 + 35 --- 130 + 36 --- 67 + 36 x--> 81 + 36 --- 103 + 36 --- 117 + 37 --- 77 + 37 x--> 88 + 37 --- 113 + 37 --- 127 + 38 --- 74 + 38 x--> 85 + 38 --- 110 + 38 --- 124 + 39 --- 68 + 39 x--> 82 + 39 --- 104 + 39 --- 118 + 40 --- 70 + 40 x--> 83 + 40 --- 107 + 40 --- 119 + 41 --- 72 + 41 x--> 83 + 41 --- 108 + 41 --- 121 + 42 --- 71 + 42 x--> 83 + 42 --- 106 + 42 --- 122 + 43 --- 69 + 43 x--> 83 + 43 --- 105 + 43 --- 120 + 56 --- 67 + 56 --- 81 + 56 --- 92 + 56 --- 103 + 56 --- 117 + 57 --- 73 + 57 --- 84 + 57 --- 95 + 57 --- 109 + 57 --- 123 + 58 --- 75 + 58 --- 86 + 58 --- 97 + 58 --- 111 + 58 --- 125 + 59 --- 76 + 59 --- 87 + 59 --- 98 + 59 --- 112 + 59 --- 126 + 60 --- 78 + 60 --- 89 + 60 --- 100 + 60 --- 114 + 60 --- 128 + 61 --- 79 + 61 --- 90 + 61 --- 101 + 61 --- 115 + 61 --- 129 + 62 --- 80 + 62 --- 91 + 62 --- 102 + 62 --- 116 + 62 --- 130 + 63 --- 74 + 63 --- 85 + 63 --- 96 + 63 --- 110 + 63 --- 124 + 64 --- 77 + 64 --- 88 + 64 --- 99 + 64 --- 113 + 64 --- 127 65 --- 68 - 65 --- 69 - 65 --- 70 - 69 <--x 66 - 69 <--x 68 - 70 <--x 66 - 71 --- 72 - 72 --- 73 - 72 ---- 75 - 72 --- 74 - 73 --- 76 - 73 --- 79 - 73 --- 80 - 73 x--> 77 - 75 --- 76 - 75 --- 77 - 75 --- 78 - 75 --- 79 - 75 --- 80 - 79 <--x 76 - 79 <--x 78 - 80 <--x 76 - 81 --- 82 - 82 --- 83 - 82 ---- 85 - 82 --- 84 - 83 --- 86 - 83 --- 89 - 83 --- 90 - 83 x--> 87 - 85 --- 86 - 85 --- 87 - 85 --- 88 - 85 --- 89 - 85 --- 90 - 89 <--x 86 - 89 <--x 88 - 90 <--x 86 - 91 --- 92 - 91 --- 101 - 92 --- 93 - 92 ---- 95 - 92 --- 94 - 93 --- 96 - 93 --- 99 - 93 --- 100 - 93 x--> 97 - 95 --- 96 - 95 --- 97 - 95 --- 98 - 95 --- 99 - 95 --- 100 - 99 <--x 96 - 99 <--x 98 - 100 <--x 96 - 101 --- 102 - 101 --- 103 - 101 --- 104 - 101 --- 105 - 101 --- 106 - 101 ---- 108 - 101 --- 107 - 102 --- 112 - 102 --- 121 - 102 --- 122 - 102 x--> 113 - 103 --- 111 - 103 --- 119 - 103 --- 120 - 103 x--> 113 - 104 --- 110 - 104 --- 117 - 104 --- 118 - 104 x--> 113 - 105 --- 109 - 105 --- 115 - 105 --- 116 - 105 x--> 113 - 108 --- 109 - 108 --- 110 - 108 --- 111 - 108 --- 112 - 108 --- 113 - 108 --- 114 - 108 --- 115 - 108 --- 116 - 108 --- 117 - 108 --- 118 - 108 --- 119 - 108 --- 120 - 108 --- 121 - 108 --- 122 - 115 <--x 109 - 115 <--x 114 - 116 <--x 109 - 116 <--x 112 - 117 <--x 110 - 117 <--x 114 - 118 <--x 109 - 118 <--x 110 - 119 <--x 111 - 119 <--x 114 - 120 <--x 110 - 120 <--x 111 - 121 <--x 112 - 121 <--x 114 - 122 <--x 111 - 122 <--x 112 - 1 <--x 123 - 11 <--x 124 - 21 <--x 125 - 31 <--x 126 - 41 <--x 127 - 51 <--x 128 - 61 <--x 129 - 91 <--x 130 + 65 --- 82 + 65 --- 93 + 65 --- 104 + 65 --- 118 + 66 --- 69 + 66 --- 70 + 66 --- 71 + 66 --- 72 + 66 --- 83 + 66 --- 94 + 66 --- 105 + 66 --- 106 + 66 --- 107 + 66 --- 108 + 66 --- 119 + 66 --- 120 + 66 --- 121 + 66 --- 122 + 103 <--x 67 + 117 <--x 67 + 104 <--x 68 + 118 <--x 68 + 105 <--x 69 + 120 <--x 69 + 122 <--x 69 + 107 <--x 70 + 119 <--x 70 + 120 <--x 70 + 106 <--x 71 + 121 <--x 71 + 122 <--x 71 + 108 <--x 72 + 119 <--x 72 + 121 <--x 72 + 109 <--x 73 + 123 <--x 73 + 110 <--x 74 + 124 <--x 74 + 111 <--x 75 + 125 <--x 75 + 112 <--x 76 + 126 <--x 76 + 113 <--x 77 + 127 <--x 77 + 114 <--x 78 + 128 <--x 78 + 115 <--x 79 + 129 <--x 79 + 116 <--x 80 + 130 <--x 80 + 103 <--x 92 + 104 <--x 93 + 105 <--x 94 + 106 <--x 94 + 107 <--x 94 + 108 <--x 94 + 109 <--x 95 + 110 <--x 96 + 111 <--x 97 + 112 <--x 98 + 113 <--x 99 + 114 <--x 100 + 115 <--x 101 + 116 <--x 102 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/makeup-mirror/ops.snap b/rust/kcl-lib/tests/kcl_samples/makeup-mirror/ops.snap index f69968ac0..4f9393450 100644 --- a/rust/kcl-lib/tests/kcl_samples/makeup-mirror/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/makeup-mirror/ops.snap @@ -4,15 +4,109 @@ description: Operations executed makeup-mirror.kcl --- [ { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "hingeFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } }, - "sourceRange": [] + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { "type": "KclStdLibCall", @@ -45,26 +139,20 @@ description: Operations executed makeup-mirror.kcl "sourceRange": [] }, { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { "labeledArgs": { - "length": { + "offset": { "value": { "type": "Number", - "value": 24.0, + "value": 24.5, "ty": { "type": "Default", "len": { @@ -78,30 +166,35 @@ description: Operations executed makeup-mirror.kcl "sourceRange": [] } }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", "unlabeledArg": { "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } + "type": "Plane", + "artifact_id": "[uuid]" }, "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "hingeFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 49.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } }, "sourceRange": [] }, @@ -135,67 +228,6 @@ description: Operations executed makeup-mirror.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 24.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "hingeFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -226,158 +258,6 @@ description: Operations executed makeup-mirror.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 24.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "hingeFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 24.5, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 24.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "hingeFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -408,158 +288,6 @@ description: Operations executed makeup-mirror.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 24.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "hingeFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 49.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 24.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "hingeFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -592,18 +320,35 @@ description: Operations executed makeup-mirror.kcl }, { "labeledArgs": { - "planeOrSolid": { + "length": { "value": { - "type": "Plane", - "artifact_id": "[uuid]" + "type": "Number", + "value": 24.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } }, "sourceRange": [] } }, - "name": "startSketchOn", + "name": "extrude", "sourceRange": [], "type": "StdLibCall", - "unlabeledArg": null + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } }, { "labeledArgs": { @@ -638,19 +383,257 @@ description: Operations executed makeup-mirror.kcl } }, { - "type": "GroupEnd" + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 24.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 24.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 24.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 24.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 24.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "armFn", + "name": "hingeFn", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "hingeFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "hingeFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "hingeFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "hingeFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "hingeFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "hingeFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, { "labeledArgs": { "planeOrSolid": { @@ -698,35 +681,6 @@ description: Operations executed makeup-mirror.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "armFn", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -759,20 +713,43 @@ description: Operations executed makeup-mirror.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "mirrorFn", + "name": "armFn", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "armFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, { "type": "KclStdLibCall", "name": "offsetPlane", @@ -803,21 +780,6 @@ description: Operations executed makeup-mirror.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -882,6 +844,44 @@ description: Operations executed makeup-mirror.kcl "sourceRange": [] } }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "mirrorFn", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/kcl_samples/mounting-plate/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/mounting-plate/artifact_commands.snap index f1dc08161..75dda9129 100644 --- a/rust/kcl-lib/tests/kcl_samples/mounting-plate/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/mounting-plate/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands mounting-plate.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands mounting-plate.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -156,6 +156,32 @@ description: Artifact commands mounting-plate.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -172,33 +198,6 @@ description: Artifact commands mounting-plate.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -50.8, - "y": 107.94999999999999, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -228,8 +227,36 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -50.8, + "y": 107.94999999999999, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -245,9 +272,8 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -266,33 +292,6 @@ description: Artifact commands mounting-plate.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 63.5, - "y": 107.94999999999999, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -322,8 +321,36 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 63.5, + "y": 107.94999999999999, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -339,9 +366,8 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -360,33 +386,6 @@ description: Artifact commands mounting-plate.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -50.8, - "y": -107.94999999999999, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -416,8 +415,36 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -50.8, + "y": -107.94999999999999, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -433,9 +460,8 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -454,33 +480,6 @@ description: Artifact commands mounting-plate.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 63.5, - "y": -107.94999999999999, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -510,8 +509,36 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 63.5, + "y": -107.94999999999999, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -527,9 +554,8 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -548,33 +574,6 @@ description: Artifact commands mounting-plate.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 50.8, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -604,26 +603,27 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 50.8, + "y": 0.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "start_path" } }, { @@ -653,6 +653,14 @@ description: Artifact commands mounting-plate.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -664,8 +672,243 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -681,30 +924,12 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -719,39 +944,12 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -766,39 +964,12 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -813,39 +984,12 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -860,18 +1004,10 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -888,39 +1024,12 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -935,39 +1044,12 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -982,39 +1064,12 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1025,43 +1080,6 @@ description: Artifact commands mounting-plate.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1076,65 +1094,7 @@ description: Artifact commands mounting-plate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_prev_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_prev_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_prev_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_prev_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -1187,5 +1147,45 @@ description: Artifact commands mounting-plate.kcl "tolerance": 0.0000001, "cut_type": "fillet" } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_prev_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_prev_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_prev_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_prev_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/mounting-plate/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/mounting-plate/artifact_graph_flowchart.snap.md index fc4562079..5f17bade1 100644 --- a/rust/kcl-lib/tests/kcl_samples/mounting-plate/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/mounting-plate/artifact_graph_flowchart.snap.md @@ -2,37 +2,37 @@ flowchart LR subgraph path2 [Path] 2["Path
[566, 621, 0]"] - 3["Segment
[629, 697, 0]"] - 4["Segment
[705, 771, 0]"] - 5["Segment
[779, 847, 0]"] - 6["Segment
[855, 874, 0]"] - 7[Solid2d] + 8["Segment
[629, 697, 0]"] + 9["Segment
[705, 771, 0]"] + 10["Segment
[779, 847, 0]"] + 11["Segment
[855, 874, 0]"] + 20[Solid2d] end - subgraph path8 [Path] - 8["Path
[1118, 1263, 0]"] - 9["Segment
[1118, 1263, 0]"] - 10[Solid2d] - end - subgraph path11 [Path] - 11["Path
[1288, 1432, 0]"] - 12["Segment
[1288, 1432, 0]"] - 13[Solid2d] - end - subgraph path14 [Path] - 14["Path
[1457, 1603, 0]"] - 15["Segment
[1457, 1603, 0]"] - 16[Solid2d] - end - subgraph path17 [Path] - 17["Path
[1628, 1773, 0]"] - 18["Segment
[1628, 1773, 0]"] + subgraph path3 [Path] + 3["Path
[1118, 1263, 0]"] + 12["Segment
[1118, 1263, 0]"] 19[Solid2d] end - subgraph path20 [Path] - 20["Path
[1798, 1850, 0]"] - 21["Segment
[1798, 1850, 0]"] + subgraph path4 [Path] + 4["Path
[1288, 1432, 0]"] + 13["Segment
[1288, 1432, 0]"] 22[Solid2d] end + subgraph path5 [Path] + 5["Path
[1457, 1603, 0]"] + 14["Segment
[1457, 1603, 0]"] + 21[Solid2d] + end + subgraph path6 [Path] + 6["Path
[1628, 1773, 0]"] + 15["Segment
[1628, 1773, 0]"] + 17[Solid2d] + end + subgraph path7 [Path] + 7["Path
[1798, 1850, 0]"] + 16["Segment
[1798, 1850, 0]"] + 18[Solid2d] + end 1["Plane
[541, 558, 0]"] 23["Sweep Extrusion
[1857, 1889, 0]"] 24[Wall] @@ -42,55 +42,55 @@ flowchart LR 28["Cap Start"] 29["Cap End"] 30["SweepEdge Opposite"] - 31["SweepEdge Adjacent"] + 31["SweepEdge Opposite"] 32["SweepEdge Opposite"] - 33["SweepEdge Adjacent"] - 34["SweepEdge Opposite"] + 33["SweepEdge Opposite"] + 34["SweepEdge Adjacent"] 35["SweepEdge Adjacent"] - 36["SweepEdge Opposite"] + 36["SweepEdge Adjacent"] 37["SweepEdge Adjacent"] 38["EdgeCut Fillet
[1895, 2160, 0]"] 39["EdgeCut Fillet
[1895, 2160, 0]"] 40["EdgeCut Fillet
[1895, 2160, 0]"] 41["EdgeCut Fillet
[1895, 2160, 0]"] 1 --- 2 - 1 --- 8 - 1 --- 11 - 1 --- 14 - 1 --- 17 - 1 --- 20 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 + 1 --- 3 + 1 --- 4 + 1 --- 5 + 1 --- 6 + 1 --- 7 + 2 --- 8 + 2 --- 9 + 2 --- 10 + 2 --- 11 + 2 --- 20 2 ---- 23 - 2 --- 7 - 3 --- 24 - 3 --- 30 - 3 --- 31 - 3 x--> 28 - 4 --- 25 - 4 --- 32 - 4 --- 33 - 4 x--> 28 - 5 --- 26 - 5 --- 34 - 5 --- 35 - 5 x--> 28 - 6 --- 27 - 6 --- 36 - 6 --- 37 - 6 x--> 28 - 8 --- 9 - 8 --- 10 - 11 --- 12 - 11 --- 13 - 14 --- 15 - 14 --- 16 - 17 --- 18 - 17 --- 19 - 20 --- 21 - 20 --- 22 + 3 --- 12 + 3 --- 19 + 4 --- 13 + 4 --- 22 + 5 --- 14 + 5 --- 21 + 6 --- 15 + 6 --- 17 + 7 --- 16 + 7 --- 18 + 8 --- 27 + 8 x--> 28 + 8 --- 30 + 8 --- 37 + 9 --- 25 + 9 x--> 28 + 9 --- 32 + 9 --- 34 + 10 --- 24 + 10 x--> 28 + 10 --- 31 + 10 --- 35 + 11 --- 26 + 11 x--> 28 + 11 --- 33 + 11 --- 36 23 --- 24 23 --- 25 23 --- 26 @@ -105,24 +105,24 @@ flowchart LR 23 --- 35 23 --- 36 23 --- 37 - 30 <--x 24 - 30 <--x 29 31 <--x 24 - 31 <--x 25 + 34 <--x 24 + 35 <--x 24 32 <--x 25 - 32 <--x 29 - 33 <--x 25 + 34 <--x 25 + 37 <--x 25 33 <--x 26 - 34 <--x 26 - 34 <--x 29 35 <--x 26 - 35 <--x 27 + 36 <--x 26 + 30 <--x 27 36 <--x 27 - 36 <--x 29 - 37 <--x 24 37 <--x 27 - 37 <--x 38 - 31 <--x 39 - 33 <--x 40 + 30 <--x 29 + 31 <--x 29 + 32 <--x 29 + 33 <--x 29 + 34 <--x 40 35 <--x 41 + 36 <--x 38 + 37 <--x 39 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/mounting-plate/ops.snap b/rust/kcl-lib/tests/kcl_samples/mounting-plate/ops.snap index 41bc89539..535e5383c 100644 --- a/rust/kcl-lib/tests/kcl_samples/mounting-plate/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/mounting-plate/ops.snap @@ -3,17 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed mounting-plate.kcl --- [ - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "rectShape", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -30,7 +19,15 @@ description: Operations executed mounting-plate.kcl "unlabeledArg": null }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "rectShape", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -244,5 +241,8 @@ description: Operations executed mounting-plate.kcl } }, "sourceRange": [] + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/artifact_commands.snap index 05a921112..fc9842d04 100644 --- a/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands multi-axis-robot.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands multi-axis-robot.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -200,6 +200,14 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -211,8 +219,108 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -228,9 +336,40 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -247,39 +386,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -290,43 +402,6 @@ description: Artifact commands multi-axis-robot.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -337,121 +412,6 @@ description: Artifact commands multi-axis-robot.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -500,6 +460,54 @@ description: Artifact commands multi-axis-robot.kcl "cut_type": "chamfer" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -512,33 +520,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 101.6, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -568,8 +549,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 101.6, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -595,6 +595,14 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -606,8 +614,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -619,34 +646,6 @@ description: Artifact commands multi-axis-robot.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -657,15 +656,6 @@ description: Artifact commands multi-axis-robot.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -688,6 +678,24 @@ description: Artifact commands multi-axis-robot.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -700,33 +708,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 12.7, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -756,8 +737,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 12.7, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -783,13 +783,6 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -798,6 +791,40 @@ description: Artifact commands multi-axis-robot.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -807,34 +834,6 @@ description: Artifact commands multi-axis-robot.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -849,9 +848,18 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -866,33 +874,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -91.44, - "y": -63.5, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -922,8 +903,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -91.44, + "y": -63.5, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -963,82 +963,24 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -12.7, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -1068,83 +1010,11 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -12.7, + "faces": null, + "opposite": "None" } }, { @@ -1158,89 +1028,6 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -1256,7 +1043,8 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -1267,6 +1055,158 @@ description: Artifact commands multi-axis-robot.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1280,7 +1220,7 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1289,17 +1229,16 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1318,9 +1257,78 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -1335,33 +1343,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -53.339999999999996, - "y": -101.6, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1391,8 +1372,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -53.339999999999996, + "y": -101.6, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -1432,82 +1432,24 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -12.7, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -1537,83 +1479,11 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -12.7, + "faces": null, + "opposite": "None" } }, { @@ -1627,89 +1497,6 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -1725,7 +1512,8 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -1736,6 +1524,158 @@ description: Artifact commands multi-axis-robot.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1749,7 +1689,7 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1758,17 +1698,16 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1787,9 +1726,70 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1885,6 +1885,14 @@ description: Artifact commands multi-axis-robot.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1901,33 +1909,6 @@ description: Artifact commands multi-axis-robot.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 99.05999999999999, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1957,8 +1938,36 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 99.05999999999999, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -1988,13 +1997,6 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2003,6 +2005,40 @@ description: Artifact commands multi-axis-robot.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2012,34 +2048,6 @@ description: Artifact commands multi-axis-robot.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2054,9 +2062,22 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 2.54, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { @@ -2127,13 +2148,6 @@ description: Artifact commands multi-axis-robot.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2147,6 +2161,15 @@ description: Artifact commands multi-axis-robot.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -2154,6 +2177,13 @@ description: Artifact commands multi-axis-robot.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2265,6 +2295,14 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2276,8 +2314,108 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -2293,30 +2431,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2331,39 +2451,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2378,18 +2471,10 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2406,39 +2491,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2453,58 +2511,8 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 2.54, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -2519,33 +2527,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 114.3, - "y": 203.2, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2575,8 +2556,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 114.3, + "y": 203.2, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -2602,6 +2602,14 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2613,8 +2621,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -2626,34 +2653,6 @@ description: Artifact commands multi-axis-robot.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2664,15 +2663,6 @@ description: Artifact commands multi-axis-robot.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2695,6 +2685,24 @@ description: Artifact commands multi-axis-robot.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2707,33 +2715,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 49.52999999999999, - "y": 171.45, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2763,8 +2744,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 49.52999999999999, + "y": 171.45, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -2804,82 +2804,24 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 5.08, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -2909,83 +2851,11 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 5.08, + "faces": null, + "opposite": "None" } }, { @@ -2999,89 +2869,6 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -3097,7 +2884,8 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -3108,6 +2896,158 @@ description: Artifact commands multi-axis-robot.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3121,7 +3061,7 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -3130,17 +3070,16 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -3159,9 +3098,78 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -3176,33 +3184,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 57.15, - "y": 203.2, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3232,8 +3213,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 57.15, + "y": 203.2, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -3259,13 +3259,6 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3274,6 +3267,40 @@ description: Artifact commands multi-axis-robot.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3283,34 +3310,6 @@ description: Artifact commands multi-axis-robot.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3325,9 +3324,22 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 2.54, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { @@ -3382,6 +3394,14 @@ description: Artifact commands multi-axis-robot.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3398,33 +3418,6 @@ description: Artifact commands multi-axis-robot.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 52.06999999999999, - "y": 203.2, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3454,8 +3447,36 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 52.06999999999999, + "y": 203.2, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -3485,13 +3506,6 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3500,6 +3514,40 @@ description: Artifact commands multi-axis-robot.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3509,34 +3557,6 @@ description: Artifact commands multi-axis-robot.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3551,30 +3571,10 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", - "radius": 2.54, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "face_id": "[uuid]" } }, { @@ -3618,13 +3618,6 @@ description: Artifact commands multi-axis-robot.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3638,6 +3631,15 @@ description: Artifact commands multi-axis-robot.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -3645,6 +3647,13 @@ description: Artifact commands multi-axis-robot.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3764,6 +3773,14 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3775,8 +3792,108 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -3792,30 +3909,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3830,39 +3929,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3877,18 +3949,10 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3905,39 +3969,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3952,28 +3989,8 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -3988,33 +4005,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 3.8099999999999974, - "y": 203.2, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4044,8 +4034,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 3.8099999999999974, + "y": 203.2, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -4071,6 +4080,14 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4082,8 +4099,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -4095,34 +4131,6 @@ description: Artifact commands multi-axis-robot.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4133,15 +4141,6 @@ description: Artifact commands multi-axis-robot.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4164,6 +4163,24 @@ description: Artifact commands multi-axis-robot.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4176,33 +4193,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 273.1166608546315, - "y": 943.1139696068243, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4232,8 +4222,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 273.1166608546315, + "y": 943.1139696068243, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -4259,6 +4268,14 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4270,8 +4287,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -4283,34 +4319,6 @@ description: Artifact commands multi-axis-robot.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4321,15 +4329,6 @@ description: Artifact commands multi-axis-robot.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4352,6 +4351,24 @@ description: Artifact commands multi-axis-robot.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4364,33 +4381,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -39.37, - "y": 171.45, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4420,8 +4410,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -39.37, + "y": 171.45, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -4461,82 +4470,72 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 3.8099999999999996, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -4566,83 +4565,11 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 3.8099999999999996, + "faces": null, + "opposite": "None" } }, { @@ -4660,83 +4587,11 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 3.8099999999999996, + "faces": null, + "opposite": "None" } }, { @@ -4754,83 +4609,11 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 3.8099999999999996, + "faces": null, + "opposite": "None" } }, { @@ -4844,89 +4627,6 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -4942,7 +4642,8 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -4953,6 +4654,326 @@ description: Artifact commands multi-axis-robot.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4966,7 +4987,7 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -4975,17 +4996,52 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -5004,86 +5060,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 3.8099999999999996, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5098,86 +5080,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 3.8099999999999996, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5192,9 +5100,118 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -5209,33 +5226,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 221.24934921415954, - "y": 907.3116807548812, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5265,8 +5255,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 221.24934921415954, + "y": 907.3116807548812, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -5306,82 +5315,24 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 3.8099999999999996, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -5411,83 +5362,11 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 3.8099999999999996, + "faces": null, + "opposite": "None" } }, { @@ -5501,89 +5380,6 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -5599,7 +5395,8 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -5610,6 +5407,158 @@ description: Artifact commands multi-axis-robot.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5623,7 +5572,7 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -5632,17 +5581,16 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -5661,9 +5609,78 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -5678,33 +5695,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -217.2366608546315, - "y": 943.1139696068243, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5734,8 +5724,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -217.2366608546315, + "y": 943.1139696068243, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -5761,13 +5770,6 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5776,6 +5778,40 @@ description: Artifact commands multi-axis-robot.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5785,34 +5821,6 @@ description: Artifact commands multi-axis-robot.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5827,9 +5835,10 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5849,15 +5858,6 @@ description: Artifact commands multi-axis-robot.kcl "ambient_occlusion": 0.0 } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -5899,13 +5899,6 @@ description: Artifact commands multi-axis-robot.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5919,6 +5912,15 @@ description: Artifact commands multi-axis-robot.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -5926,6 +5928,13 @@ description: Artifact commands multi-axis-robot.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6045,6 +6054,14 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6056,8 +6073,108 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -6073,30 +6190,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6111,39 +6210,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6158,18 +6230,10 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6186,39 +6250,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6233,28 +6270,8 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -6269,33 +6286,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -177.86666085463153, - "y": 943.1139696068243, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6325,8 +6315,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -177.86666085463153, + "y": 943.1139696068243, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -6352,6 +6361,14 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6363,8 +6380,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -6376,34 +6412,6 @@ description: Artifact commands multi-axis-robot.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6414,15 +6422,6 @@ description: Artifact commands multi-axis-robot.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6445,6 +6444,24 @@ description: Artifact commands multi-axis-robot.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6457,33 +6474,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -211.08934921415957, - "y": 907.3116807548812, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6513,8 +6503,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -211.08934921415957, + "y": 907.3116807548812, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -6554,82 +6563,72 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 3.8099999999999996, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -6659,83 +6658,11 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 3.8099999999999996, + "faces": null, + "opposite": "None" } }, { @@ -6753,83 +6680,11 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 3.8099999999999996, + "faces": null, + "opposite": "None" } }, { @@ -6847,83 +6702,11 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": 3.8099999999999996, + "faces": null, + "opposite": "None" } }, { @@ -6937,89 +6720,6 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -7035,7 +6735,8 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -7046,6 +6747,326 @@ description: Artifact commands multi-axis-robot.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -7059,7 +7080,7 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -7068,17 +7089,52 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -7097,86 +7153,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 3.8099999999999996, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7191,86 +7173,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 3.8099999999999996, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7285,9 +7193,118 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -7302,33 +7319,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -227.80067767557009, - "y": 854.9006953520237, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7358,8 +7348,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -227.80067767557009, + "y": 854.9006953520237, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -7385,13 +7394,6 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7400,6 +7402,40 @@ description: Artifact commands multi-axis-robot.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -7409,34 +7445,6 @@ description: Artifact commands multi-axis-robot.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7451,9 +7459,18 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -7468,33 +7485,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 322.81373737706264, - "y": 854.9006953520237, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7524,8 +7514,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 322.81373737706264, + "y": 854.9006953520237, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -7551,13 +7560,6 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7566,6 +7568,40 @@ description: Artifact commands multi-axis-robot.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -7575,34 +7611,6 @@ description: Artifact commands multi-axis-robot.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7617,9 +7625,18 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -7634,33 +7651,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 2.54, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7690,8 +7680,27 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 2.54, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -7717,13 +7726,6 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7732,6 +7734,40 @@ description: Artifact commands multi-axis-robot.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -7741,34 +7777,6 @@ description: Artifact commands multi-axis-robot.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7783,9 +7791,10 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7800,13 +7809,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -7827,6 +7829,13 @@ description: Artifact commands multi-axis-robot.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -7985,6 +7994,14 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -7996,8 +8013,189 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -8013,30 +8211,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8051,39 +8231,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8098,39 +8251,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8145,18 +8271,10 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -8173,39 +8291,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8220,39 +8311,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8263,43 +8327,6 @@ description: Artifact commands multi-axis-robot.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8314,30 +8341,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8350,13 +8359,6 @@ description: Artifact commands multi-axis-robot.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8377,6 +8379,13 @@ description: Artifact commands multi-axis-robot.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -8535,6 +8544,14 @@ description: Artifact commands multi-axis-robot.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -8546,8 +8563,189 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -8563,30 +8761,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8601,39 +8781,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8648,39 +8801,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8695,18 +8821,10 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -8723,39 +8841,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8770,39 +8861,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8813,43 +8877,6 @@ description: Artifact commands multi-axis-robot.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8864,30 +8891,12 @@ description: Artifact commands multi-axis-robot.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -8904,14 +8913,5 @@ description: Artifact commands multi-axis-robot.kcl "roughness": 0.9, "ambient_occlusion": 0.0 } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/artifact_graph_flowchart.snap.md index 7d9abe7d4..2c84e57f5 100644 --- a/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/artifact_graph_flowchart.snap.md @@ -1,1118 +1,1080 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[224, 279, 8]"] - 3["Segment
[285, 365, 8]"] - 4["Segment
[371, 483, 8]"] - 5["Segment
[489, 606, 8]"] - 6["Segment
[612, 697, 8]"] - 7["Segment
[703, 710, 8]"] - 8[Solid2d] - end - subgraph path28 [Path] - 28["Path
[1151, 1208, 8]"] - 29["Segment
[1151, 1208, 8]"] - 30[Solid2d] - end - subgraph path37 [Path] - 37["Path
[1411, 1448, 8]"] - 38["Segment
[1411, 1448, 8]"] - 39[Solid2d] - end - subgraph path45 [Path] - 45["Path
[1585, 1725, 8]"] - 46["Segment
[1585, 1725, 8]"] - 47[Solid2d] - end - subgraph path55 [Path] - 55["Path
[1976, 2116, 8]"] - 56["Segment
[1976, 2116, 8]"] - 57[Solid2d] - end - subgraph path66 [Path] - 66["Path
[203, 263, 9]"] - 67["Segment
[203, 263, 9]"] - 68[Solid2d] - end - subgraph path76 [Path] - 76["Path
[493, 529, 9]"] - 77["Segment
[535, 572, 9]"] - 78["Segment
[578, 633, 9]"] - 79["Segment
[639, 688, 9]"] - 80["Segment
[694, 750, 9]"] - 81["Segment
[756, 763, 9]"] - 82[Solid2d] - end - subgraph path99 [Path] - 99["Path
[865, 1054, 9]"] - 100["Segment
[865, 1054, 9]"] + subgraph path7 [Path] + 7["Path
[224, 279, 8]"] + 32["Segment
[285, 365, 8]"] + 33["Segment
[371, 483, 8]"] + 34["Segment
[489, 606, 8]"] + 35["Segment
[612, 697, 8]"] + 36["Segment
[703, 710, 8]"] 101[Solid2d] end - subgraph path108 [Path] - 108["Path
[1263, 1424, 9]"] - 109["Segment
[1263, 1424, 9]"] + subgraph path8 [Path] + 8["Path
[1151, 1208, 8]"] + 37["Segment
[1151, 1208, 8]"] + 104[Solid2d] + end + subgraph path9 [Path] + 9["Path
[1411, 1448, 8]"] + 38["Segment
[1411, 1448, 8]"] + 96[Solid2d] + end + subgraph path10 [Path] + 10["Path
[1585, 1725, 8]"] + 39["Segment
[1585, 1725, 8]"] + 90[Solid2d] + end + subgraph path11 [Path] + 11["Path
[1976, 2116, 8]"] + 40["Segment
[1976, 2116, 8]"] + 87[Solid2d] + end + subgraph path12 [Path] + 12["Path
[203, 263, 10]"] + 41["Segment
[203, 263, 10]"] + 103[Solid2d] + end + subgraph path13 [Path] + 13["Path
[493, 529, 10]"] + 42["Segment
[535, 572, 10]"] + 43["Segment
[578, 633, 10]"] + 44["Segment
[639, 688, 10]"] + 45["Segment
[694, 750, 10]"] + 46["Segment
[756, 763, 10]"] + 107[Solid2d] + end + subgraph path14 [Path] + 14["Path
[865, 1054, 10]"] + 47["Segment
[865, 1054, 10]"] + 88[Solid2d] + end + subgraph path15 [Path] + 15["Path
[1263, 1424, 10]"] + 48["Segment
[1263, 1424, 10]"] + 111[Solid2d] + end + subgraph path16 [Path] + 16["Path
[1760, 1948, 10]"] + 49["Segment
[1760, 1948, 10]"] + 94[Solid2d] + end + subgraph path17 [Path] + 17["Path
[2173, 2213, 10]"] + 50["Segment
[2173, 2213, 10]"] + 105[Solid2d] + end + subgraph path18 [Path] + 18["Path
[251, 408, 11]"] + 51["Segment
[414, 497, 11]"] + 52["Segment
[503, 555, 11]"] + 53["Segment
[561, 644, 11]"] + 54["Segment
[650, 706, 11]"] + 55["Segment
[712, 719, 11]"] + 95[Solid2d] + end + subgraph path19 [Path] + 19["Path
[840, 904, 11]"] + 56["Segment
[840, 904, 11]"] + 89[Solid2d] + end + subgraph path20 [Path] + 20["Path
[1078, 1300, 11]"] + 57["Segment
[1078, 1300, 11]"] + 100[Solid2d] + end + subgraph path21 [Path] + 21["Path
[1508, 1552, 11]"] + 58["Segment
[1508, 1552, 11]"] + 106[Solid2d] + end + subgraph path22 [Path] + 22["Path
[1795, 2001, 11]"] + 59["Segment
[1795, 2001, 11]"] 110[Solid2d] end - subgraph path119 [Path] - 119["Path
[1760, 1948, 9]"] - 120["Segment
[1760, 1948, 9]"] - 121[Solid2d] + subgraph path23 [Path] + 23["Path
[2373, 2562, 11]"] + 60["Segment
[2373, 2562, 11]"] + 102[Solid2d] end - subgraph path128 [Path] - 128["Path
[2173, 2213, 9]"] - 129["Segment
[2173, 2213, 9]"] - 130[Solid2d] + subgraph path24 [Path] + 24["Path
[271, 532, 12]"] + 61["Segment
[538, 624, 12]"] + 62["Segment
[630, 684, 12]"] + 63["Segment
[690, 776, 12]"] + 64["Segment
[782, 852, 12]"] + 65["Segment
[858, 865, 12]"] + 91[Solid2d] end - subgraph path139 [Path] - 139["Path
[251, 408, 10]"] - 140["Segment
[414, 497, 10]"] - 141["Segment
[503, 555, 10]"] - 142["Segment
[561, 644, 10]"] - 143["Segment
[650, 706, 10]"] - 144["Segment
[712, 719, 10]"] - 145[Solid2d] + subgraph path25 [Path] + 25["Path
[984, 1207, 12]"] + 66["Segment
[984, 1207, 12]"] + 93[Solid2d] end - subgraph path161 [Path] - 161["Path
[840, 904, 10]"] - 162["Segment
[840, 904, 10]"] - 163[Solid2d] + subgraph path26 [Path] + 26["Path
[1417, 1620, 12]"] + 67["Segment
[1417, 1620, 12]"] + 98[Solid2d] end - subgraph path170 [Path] - 170["Path
[1078, 1300, 10]"] - 171["Segment
[1078, 1300, 10]"] - 172[Solid2d] + subgraph path27 [Path] + 27["Path
[2060, 2374, 12]"] + 68["Segment
[2060, 2374, 12]"] + 108[Solid2d] end - subgraph path179 [Path] - 179["Path
[1508, 1552, 10]"] - 180["Segment
[1508, 1552, 10]"] - 181[Solid2d] + subgraph path28 [Path] + 28["Path
[2478, 2790, 12]"] + 69["Segment
[2478, 2790, 12]"] + 97[Solid2d] end - subgraph path194 [Path] - 194["Path
[1795, 2001, 10]"] - 195["Segment
[1795, 2001, 10]"] - 196[Solid2d] + subgraph path29 [Path] + 29["Path
[2949, 2987, 12]"] + 70["Segment
[2949, 2987, 12]"] + 109[Solid2d] end - subgraph path205 [Path] - 205["Path
[2373, 2562, 10]"] - 206["Segment
[2373, 2562, 10]"] - 207[Solid2d] + subgraph path30 [Path] + 30["Path
[3122, 3375, 12]"] + 71["Segment
[3381, 3449, 12]"] + 72["Segment
[3455, 3565, 12]"] + 73["Segment
[3571, 3639, 12]"] + 74["Segment
[3645, 3721, 12]"] + 75["Segment
[3727, 3803, 12]"] + 76["Segment
[3809, 3883, 12]"] + 77["Segment
[3889, 3945, 12]"] + 78["Segment
[3951, 3958, 12]"] + 99[Solid2d] end - subgraph path214 [Path] - 214["Path
[271, 532, 11]"] - 215["Segment
[538, 624, 11]"] - 216["Segment
[630, 684, 11]"] - 217["Segment
[690, 776, 11]"] - 218["Segment
[782, 852, 11]"] - 219["Segment
[858, 865, 11]"] - 220[Solid2d] - end - subgraph path236 [Path] - 236["Path
[984, 1207, 11]"] - 237["Segment
[984, 1207, 11]"] - 238[Solid2d] - end - subgraph path245 [Path] - 245["Path
[1417, 1620, 11]"] - 246["Segment
[1417, 1620, 11]"] - 247[Solid2d] - end - subgraph path260 [Path] - 260["Path
[2060, 2374, 11]"] - 261["Segment
[2060, 2374, 11]"] - 262[Solid2d] - end - subgraph path269 [Path] - 269["Path
[2478, 2790, 11]"] - 270["Segment
[2478, 2790, 11]"] - 271[Solid2d] - end - subgraph path278 [Path] - 278["Path
[2949, 2987, 11]"] - 279["Segment
[2949, 2987, 11]"] - 280[Solid2d] - end - subgraph path287 [Path] - 287["Path
[3122, 3375, 11]"] - 288["Segment
[3381, 3449, 11]"] - 289["Segment
[3455, 3565, 11]"] - 290["Segment
[3571, 3639, 11]"] - 291["Segment
[3645, 3721, 11]"] - 292["Segment
[3727, 3803, 11]"] - 293["Segment
[3809, 3883, 11]"] - 294["Segment
[3889, 3945, 11]"] - 295["Segment
[3951, 3958, 11]"] - 296[Solid2d] - end - subgraph path321 [Path] - 321["Path
[4092, 4345, 11]"] - 322["Segment
[4351, 4421, 11]"] - 323["Segment
[4427, 4542, 11]"] - 324["Segment
[4548, 4618, 11]"] - 325["Segment
[4624, 4702, 11]"] - 326["Segment
[4708, 4786, 11]"] - 327["Segment
[4792, 4868, 11]"] - 328["Segment
[4874, 4930, 11]"] - 329["Segment
[4936, 4943, 11]"] - 330[Solid2d] + subgraph path31 [Path] + 31["Path
[4092, 4345, 12]"] + 79["Segment
[4351, 4421, 12]"] + 80["Segment
[4427, 4542, 12]"] + 81["Segment
[4548, 4618, 12]"] + 82["Segment
[4624, 4702, 12]"] + 83["Segment
[4708, 4786, 12]"] + 84["Segment
[4792, 4868, 12]"] + 85["Segment
[4874, 4930, 12]"] + 86["Segment
[4936, 4943, 12]"] + 92[Solid2d] end 1["Plane
[201, 218, 8]"] - 9["Sweep Extrusion
[724, 771, 8]"] - 10[Wall] - 11[Wall] - 12[Wall] - 13[Wall] - 14["Cap Start"] - 15["Cap End"] - 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] - 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 20["SweepEdge Opposite"] - 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] - 23["SweepEdge Adjacent"] - 24["EdgeCut Chamfer
[777, 1054, 8]"] - 25["EdgeCut Chamfer
[777, 1054, 8]"] - 26["EdgeCut Chamfer
[777, 1054, 8]"] - 27["EdgeCut Chamfer
[777, 1054, 8]"] - 31["Sweep Extrusion
[1222, 1288, 8]"] - 32[Wall] - 33["Cap End"] - 34["SweepEdge Opposite"] - 35["SweepEdge Adjacent"] - 36["EdgeCut Fillet
[1294, 1355, 8]"] - 40["Sweep Extrusion
[1462, 1492, 8]"] - 41[Wall] - 42["Cap End"] - 43["SweepEdge Opposite"] - 44["SweepEdge Adjacent"] - 48["Sweep Extrusion
[1873, 1920, 8]"] - 49[Wall] - 50["SweepEdge Opposite"] - 51["SweepEdge Adjacent"] - 52["Sweep Extrusion
[1873, 1920, 8]"] - 53["Sweep Extrusion
[1873, 1920, 8]"] - 54["Sweep Extrusion
[1873, 1920, 8]"] - 58["Sweep Extrusion
[2252, 2299, 8]"] - 59[Wall] - 60["SweepEdge Opposite"] - 61["SweepEdge Adjacent"] - 62["Sweep Extrusion
[2252, 2299, 8]"] - 63["Sweep Extrusion
[2252, 2299, 8]"] - 64["Sweep Extrusion
[2252, 2299, 8]"] - 65["Plane
[174, 197, 9]"] - 69["Sweep Extrusion
[277, 315, 9]"] - 70[Wall] - 71["Cap Start"] - 72["Cap End"] - 73["SweepEdge Opposite"] - 74["SweepEdge Adjacent"] - 75["Plane
[464, 487, 9]"] - 83["Sweep Extrusion
[778, 808, 9]"] - 84[Wall] - 85[Wall] - 86[Wall] - 87[Wall] - 88["Cap Start"] - 89["Cap End"] - 90["SweepEdge Opposite"] - 91["SweepEdge Adjacent"] - 92["SweepEdge Opposite"] - 93["SweepEdge Adjacent"] - 94["SweepEdge Opposite"] - 95["SweepEdge Adjacent"] - 96["SweepEdge Opposite"] - 97["SweepEdge Adjacent"] - 98["EdgeCut Fillet
[321, 383, 9]"] - 102["Sweep Extrusion
[1068, 1100, 9]"] - 103[Wall] - 104["Cap End"] - 105["SweepEdge Opposite"] - 106["SweepEdge Adjacent"] - 107["EdgeCut Fillet
[1106, 1168, 9]"] - 111["Sweep Extrusion
[1671, 1703, 9]"] - 112[Wall] - 113["Cap End"] - 114["SweepEdge Opposite"] - 115["SweepEdge Adjacent"] - 116["Sweep Extrusion
[1671, 1703, 9]"] - 117["Sweep Extrusion
[1671, 1703, 9]"] - 118["Sweep Extrusion
[1671, 1703, 9]"] - 122["Sweep Extrusion
[1962, 1995, 9]"] - 123[Wall] - 124["Cap End"] - 125["SweepEdge Opposite"] - 126["SweepEdge Adjacent"] - 127["Plane
[2144, 2167, 9]"] - 131["Sweep Extrusion
[2215, 2246, 9]"] - 132[Wall] - 133["Cap Start"] - 134["Cap End"] - 135["SweepEdge Opposite"] - 136["SweepEdge Adjacent"] - 137["EdgeCut Fillet
[2001, 2063, 9]"] - 138["Plane
[222, 245, 10]"] - 146["Sweep Extrusion
[733, 781, 10]"] - 147[Wall] - 148[Wall] - 149[Wall] - 150[Wall] - 151["Cap Start"] - 152["Cap End"] - 153["SweepEdge Opposite"] - 154["SweepEdge Adjacent"] - 155["SweepEdge Opposite"] - 156["SweepEdge Adjacent"] - 157["SweepEdge Opposite"] - 158["SweepEdge Adjacent"] - 159["SweepEdge Opposite"] - 160["SweepEdge Adjacent"] - 164["Sweep Extrusion
[919, 952, 10]"] + 2["Plane
[174, 197, 10]"] + 3["Plane
[464, 487, 10]"] + 4["Plane
[2144, 2167, 10]"] + 5["Plane
[222, 245, 11]"] + 6["Plane
[242, 265, 12]"] + 112["Sweep Extrusion
[724, 771, 8]"] + 113["Sweep Extrusion
[1222, 1288, 8]"] + 114["Sweep Extrusion
[1462, 1492, 8]"] + 115["Sweep Extrusion
[1873, 1920, 8]"] + 116["Sweep Extrusion
[1873, 1920, 8]"] + 117["Sweep Extrusion
[1873, 1920, 8]"] + 118["Sweep Extrusion
[1873, 1920, 8]"] + 119["Sweep Extrusion
[2252, 2299, 8]"] + 120["Sweep Extrusion
[2252, 2299, 8]"] + 121["Sweep Extrusion
[2252, 2299, 8]"] + 122["Sweep Extrusion
[2252, 2299, 8]"] + 123["Sweep Extrusion
[277, 315, 10]"] + 124["Sweep Extrusion
[778, 808, 10]"] + 125["Sweep Extrusion
[1068, 1100, 10]"] + 126["Sweep Extrusion
[1671, 1703, 10]"] + 127["Sweep Extrusion
[1671, 1703, 10]"] + 128["Sweep Extrusion
[1671, 1703, 10]"] + 129["Sweep Extrusion
[1671, 1703, 10]"] + 130["Sweep Extrusion
[1962, 1995, 10]"] + 131["Sweep Extrusion
[2215, 2246, 10]"] + 132["Sweep Extrusion
[733, 781, 11]"] + 133["Sweep Extrusion
[919, 952, 11]"] + 134["Sweep Extrusion
[1315, 1345, 11]"] + 135["Sweep Extrusion
[1705, 1738, 11]"] + 136["Sweep Extrusion
[1705, 1738, 11]"] + 137["Sweep Extrusion
[1705, 1738, 11]"] + 138["Sweep Extrusion
[1705, 1738, 11]"] + 139["Sweep Extrusion
[1705, 1738, 11]"] + 140["Sweep Extrusion
[1705, 1738, 11]"] + 141["Sweep Extrusion
[1705, 1738, 11]"] + 142["Sweep Extrusion
[1705, 1738, 11]"] + 143["Sweep Extrusion
[2283, 2316, 11]"] + 144["Sweep Extrusion
[2283, 2316, 11]"] + 145["Sweep Extrusion
[2283, 2316, 11]"] + 146["Sweep Extrusion
[2283, 2316, 11]"] + 147["Sweep Extrusion
[2564, 2594, 11]"] + 148["Sweep Extrusion
[879, 927, 12]"] + 149["Sweep Extrusion
[1222, 1255, 12]"] + 150["Sweep Extrusion
[1899, 1932, 12]"] + 151["Sweep Extrusion
[1899, 1932, 12]"] + 152["Sweep Extrusion
[1899, 1932, 12]"] + 153["Sweep Extrusion
[1899, 1932, 12]"] + 154["Sweep Extrusion
[1899, 1932, 12]"] + 155["Sweep Extrusion
[1899, 1932, 12]"] + 156["Sweep Extrusion
[1899, 1932, 12]"] + 157["Sweep Extrusion
[1899, 1932, 12]"] + 158["Sweep Extrusion
[2388, 2421, 12]"] + 159["Sweep Extrusion
[2805, 2838, 12]"] + 160["Sweep Extrusion
[3002, 3036, 12]"] + 161["Sweep Extrusion
[3973, 4006, 12]"] + 162["Sweep Extrusion
[4945, 4978, 12]"] + 163[Wall] + 164[Wall] 165[Wall] - 166["Cap End"] - 167["SweepEdge Opposite"] - 168["SweepEdge Adjacent"] - 169["EdgeCut Fillet
[958, 1020, 10]"] - 173["Sweep Extrusion
[1315, 1345, 10]"] + 166[Wall] + 167[Wall] + 168[Wall] + 169[Wall] + 170[Wall] + 171[Wall] + 172[Wall] + 173[Wall] 174[Wall] - 175["Cap End"] - 176["SweepEdge Opposite"] - 177["SweepEdge Adjacent"] - 178["EdgeCut Fillet
[1351, 1413, 10]"] - 182["Sweep Extrusion
[1705, 1738, 10]"] + 175[Wall] + 176[Wall] + 177[Wall] + 178[Wall] + 179[Wall] + 180[Wall] + 181[Wall] + 182[Wall] 183[Wall] - 184["Cap End"] - 185["SweepEdge Opposite"] - 186["SweepEdge Adjacent"] - 187["Sweep Extrusion
[1705, 1738, 10]"] - 188["Sweep Extrusion
[1705, 1738, 10]"] - 189["Sweep Extrusion
[1705, 1738, 10]"] - 190["Sweep Extrusion
[1705, 1738, 10]"] - 191["Sweep Extrusion
[1705, 1738, 10]"] - 192["Sweep Extrusion
[1705, 1738, 10]"] - 193["Sweep Extrusion
[1705, 1738, 10]"] - 197["Sweep Extrusion
[2283, 2316, 10]"] + 184[Wall] + 185[Wall] + 186[Wall] + 187[Wall] + 188[Wall] + 189[Wall] + 190[Wall] + 191[Wall] + 192[Wall] + 193[Wall] + 194[Wall] + 195[Wall] + 196[Wall] + 197[Wall] 198[Wall] - 199["Cap End"] - 200["SweepEdge Opposite"] - 201["SweepEdge Adjacent"] - 202["Sweep Extrusion
[2283, 2316, 10]"] - 203["Sweep Extrusion
[2283, 2316, 10]"] - 204["Sweep Extrusion
[2283, 2316, 10]"] - 208["Sweep Extrusion
[2564, 2594, 10]"] + 199[Wall] + 200[Wall] + 201[Wall] + 202[Wall] + 203[Wall] + 204[Wall] + 205[Wall] + 206[Wall] + 207[Wall] + 208[Wall] 209[Wall] - 210["Cap End"] - 211["SweepEdge Opposite"] - 212["SweepEdge Adjacent"] - 213["Plane
[242, 265, 11]"] - 221["Sweep Extrusion
[879, 927, 11]"] - 222[Wall] - 223[Wall] - 224[Wall] - 225[Wall] - 226["Cap Start"] + 210[Wall] + 211[Wall] + 212["Cap Start"] + 213["Cap Start"] + 214["Cap Start"] + 215["Cap Start"] + 216["Cap Start"] + 217["Cap Start"] + 218["Cap Start"] + 219["Cap Start"] + 220["Cap Start"] + 221["Cap Start"] + 222["Cap Start"] + 223["Cap End"] + 224["Cap End"] + 225["Cap End"] + 226["Cap End"] 227["Cap End"] - 228["SweepEdge Opposite"] - 229["SweepEdge Adjacent"] - 230["SweepEdge Opposite"] - 231["SweepEdge Adjacent"] - 232["SweepEdge Opposite"] - 233["SweepEdge Adjacent"] - 234["SweepEdge Opposite"] - 235["SweepEdge Adjacent"] - 239["Sweep Extrusion
[1222, 1255, 11]"] - 240[Wall] + 228["Cap End"] + 229["Cap End"] + 230["Cap End"] + 231["Cap End"] + 232["Cap End"] + 233["Cap End"] + 234["Cap End"] + 235["Cap End"] + 236["Cap End"] + 237["Cap End"] + 238["Cap End"] + 239["Cap End"] + 240["Cap End"] 241["Cap End"] - 242["SweepEdge Opposite"] - 243["SweepEdge Adjacent"] - 244["EdgeCut Fillet
[1261, 1323, 11]"] - 248["Sweep Extrusion
[1899, 1932, 11]"] - 249[Wall] - 250["Cap End"] + 242["Cap End"] + 243["Cap End"] + 244["Cap End"] + 245["Cap End"] + 246["SweepEdge Opposite"] + 247["SweepEdge Opposite"] + 248["SweepEdge Opposite"] + 249["SweepEdge Opposite"] + 250["SweepEdge Opposite"] 251["SweepEdge Opposite"] - 252["SweepEdge Adjacent"] - 253["Sweep Extrusion
[1899, 1932, 11]"] - 254["Sweep Extrusion
[1899, 1932, 11]"] - 255["Sweep Extrusion
[1899, 1932, 11]"] - 256["Sweep Extrusion
[1899, 1932, 11]"] - 257["Sweep Extrusion
[1899, 1932, 11]"] - 258["Sweep Extrusion
[1899, 1932, 11]"] - 259["Sweep Extrusion
[1899, 1932, 11]"] - 263["Sweep Extrusion
[2388, 2421, 11]"] - 264[Wall] - 265["Cap Start"] - 266["Cap End"] + 252["SweepEdge Opposite"] + 253["SweepEdge Opposite"] + 254["SweepEdge Opposite"] + 255["SweepEdge Opposite"] + 256["SweepEdge Opposite"] + 257["SweepEdge Opposite"] + 258["SweepEdge Opposite"] + 259["SweepEdge Opposite"] + 260["SweepEdge Opposite"] + 261["SweepEdge Opposite"] + 262["SweepEdge Opposite"] + 263["SweepEdge Opposite"] + 264["SweepEdge Opposite"] + 265["SweepEdge Opposite"] + 266["SweepEdge Opposite"] 267["SweepEdge Opposite"] - 268["SweepEdge Adjacent"] - 272["Sweep Extrusion
[2805, 2838, 11]"] - 273[Wall] - 274["Cap Start"] - 275["Cap End"] + 268["SweepEdge Opposite"] + 269["SweepEdge Opposite"] + 270["SweepEdge Opposite"] + 271["SweepEdge Opposite"] + 272["SweepEdge Opposite"] + 273["SweepEdge Opposite"] + 274["SweepEdge Opposite"] + 275["SweepEdge Opposite"] 276["SweepEdge Opposite"] - 277["SweepEdge Adjacent"] - 281["Sweep Extrusion
[3002, 3036, 11]"] - 282[Wall] - 283["Cap Start"] - 284["Cap End"] + 277["SweepEdge Opposite"] + 278["SweepEdge Opposite"] + 279["SweepEdge Opposite"] + 280["SweepEdge Opposite"] + 281["SweepEdge Opposite"] + 282["SweepEdge Opposite"] + 283["SweepEdge Opposite"] + 284["SweepEdge Opposite"] 285["SweepEdge Opposite"] - 286["SweepEdge Adjacent"] - 297["Sweep Extrusion
[3973, 4006, 11]"] - 298[Wall] - 299[Wall] - 300[Wall] - 301[Wall] - 302[Wall] - 303[Wall] - 304[Wall] - 305["Cap Start"] - 306["Cap End"] - 307["SweepEdge Opposite"] + 286["SweepEdge Opposite"] + 287["SweepEdge Opposite"] + 288["SweepEdge Opposite"] + 289["SweepEdge Opposite"] + 290["SweepEdge Opposite"] + 291["SweepEdge Opposite"] + 292["SweepEdge Opposite"] + 293["SweepEdge Opposite"] + 294["SweepEdge Opposite"] + 295["SweepEdge Adjacent"] + 296["SweepEdge Adjacent"] + 297["SweepEdge Adjacent"] + 298["SweepEdge Adjacent"] + 299["SweepEdge Adjacent"] + 300["SweepEdge Adjacent"] + 301["SweepEdge Adjacent"] + 302["SweepEdge Adjacent"] + 303["SweepEdge Adjacent"] + 304["SweepEdge Adjacent"] + 305["SweepEdge Adjacent"] + 306["SweepEdge Adjacent"] + 307["SweepEdge Adjacent"] 308["SweepEdge Adjacent"] - 309["SweepEdge Opposite"] + 309["SweepEdge Adjacent"] 310["SweepEdge Adjacent"] - 311["SweepEdge Opposite"] + 311["SweepEdge Adjacent"] 312["SweepEdge Adjacent"] - 313["SweepEdge Opposite"] + 313["SweepEdge Adjacent"] 314["SweepEdge Adjacent"] - 315["SweepEdge Opposite"] + 315["SweepEdge Adjacent"] 316["SweepEdge Adjacent"] - 317["SweepEdge Opposite"] + 317["SweepEdge Adjacent"] 318["SweepEdge Adjacent"] - 319["SweepEdge Opposite"] + 319["SweepEdge Adjacent"] 320["SweepEdge Adjacent"] - 331["Sweep Extrusion
[4945, 4978, 11]"] - 332[Wall] - 333[Wall] - 334[Wall] - 335[Wall] - 336[Wall] - 337[Wall] - 338[Wall] - 339["Cap Start"] - 340["Cap End"] - 341["SweepEdge Opposite"] + 321["SweepEdge Adjacent"] + 322["SweepEdge Adjacent"] + 323["SweepEdge Adjacent"] + 324["SweepEdge Adjacent"] + 325["SweepEdge Adjacent"] + 326["SweepEdge Adjacent"] + 327["SweepEdge Adjacent"] + 328["SweepEdge Adjacent"] + 329["SweepEdge Adjacent"] + 330["SweepEdge Adjacent"] + 331["SweepEdge Adjacent"] + 332["SweepEdge Adjacent"] + 333["SweepEdge Adjacent"] + 334["SweepEdge Adjacent"] + 335["SweepEdge Adjacent"] + 336["SweepEdge Adjacent"] + 337["SweepEdge Adjacent"] + 338["SweepEdge Adjacent"] + 339["SweepEdge Adjacent"] + 340["SweepEdge Adjacent"] + 341["SweepEdge Adjacent"] 342["SweepEdge Adjacent"] - 343["SweepEdge Opposite"] - 344["SweepEdge Adjacent"] - 345["SweepEdge Opposite"] - 346["SweepEdge Adjacent"] - 347["SweepEdge Opposite"] - 348["SweepEdge Adjacent"] - 349["SweepEdge Opposite"] - 350["SweepEdge Adjacent"] - 351["SweepEdge Opposite"] - 352["SweepEdge Adjacent"] - 353["SweepEdge Opposite"] - 354["SweepEdge Adjacent"] - 355["StartSketchOnFace
[1108, 1145, 8]"] - 356["StartSketchOnFace
[1368, 1405, 8]"] - 357["StartSketchOnFace
[1542, 1579, 8]"] - 358["StartSketchOnFace
[1933, 1970, 8]"] - 359["StartSketchOnFace
[822, 859, 9]"] - 360["StartSketchOnFace
[1220, 1257, 9]"] - 361["StartSketchOnFace
[1717, 1754, 9]"] - 362["StartSketchOnFace
[795, 834, 10]"] - 363["StartSketchOnFace
[1033, 1072, 10]"] - 364["StartSketchOnFace
[1465, 1502, 10]"] - 365["StartSketchOnFace
[1752, 1789, 10]"] - 366["StartSketchOnFace
[2330, 2367, 10]"] - 367["StartSketchOnFace
[941, 978, 11]"] - 368["StartSketchOnFace
[1374, 1411, 11]"] - 369["StartSketchOnFace
[2015, 2054, 11]"] - 370["StartSketchOnFace
[2435, 2472, 11]"] - 371["StartSketchOnFace
[2904, 2943, 11]"] - 372["StartSketchOnFace
[3077, 3116, 11]"] - 373["StartSketchOnFace
[4047, 4086, 11]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 ---- 9 - 2 --- 8 - 3 --- 10 - 3 --- 16 - 3 --- 17 - 3 x--> 14 - 4 --- 11 - 4 --- 18 - 4 --- 19 - 4 x--> 14 - 5 --- 12 - 5 --- 20 - 5 --- 21 - 5 x--> 14 - 6 --- 13 - 6 --- 22 - 6 --- 23 - 6 x--> 14 - 9 --- 10 - 9 --- 11 - 9 --- 12 - 9 --- 13 - 9 --- 14 - 9 --- 15 - 9 --- 16 - 9 --- 17 - 9 --- 18 - 9 --- 19 - 9 --- 20 - 9 --- 21 - 9 --- 22 - 9 --- 23 - 15 --- 28 - 15 --- 45 - 15 --- 55 - 16 <--x 10 - 16 <--x 15 - 18 <--x 11 - 18 <--x 15 - 20 <--x 12 - 20 <--x 15 - 22 <--x 13 - 22 <--x 15 - 17 <--x 24 - 19 <--x 25 - 21 <--x 26 - 23 <--x 27 - 28 --- 29 - 28 ---- 31 - 28 --- 30 - 29 --- 32 - 29 --- 34 - 29 --- 35 - 29 <--x 15 - 31 --- 32 - 31 --- 33 - 31 --- 34 - 31 --- 35 - 33 --- 37 - 35 <--x 32 - 34 <--x 36 - 37 --- 38 - 37 ---- 40 - 37 --- 39 - 38 --- 41 - 38 --- 43 - 38 --- 44 - 38 <--x 33 - 40 --- 41 - 40 --- 42 - 40 --- 43 - 40 --- 44 - 43 <--x 41 - 43 <--x 42 - 44 <--x 41 - 45 --- 46 - 45 ---- 48 - 45 --- 47 - 46 --- 49 - 46 --- 50 - 46 --- 51 - 46 <--x 15 - 48 --- 49 - 48 --- 50 - 48 --- 51 - 50 <--x 49 - 50 <--x 14 - 51 <--x 49 - 55 --- 56 - 55 ---- 58 - 55 --- 57 - 56 --- 59 - 56 --- 60 - 56 --- 61 - 56 <--x 15 - 58 --- 59 - 58 --- 60 - 58 --- 61 - 60 <--x 59 - 60 <--x 14 - 61 <--x 59 - 65 --- 66 - 66 --- 67 - 66 ---- 69 - 66 --- 68 - 67 --- 70 - 67 --- 73 - 67 --- 74 - 67 x--> 71 - 69 --- 70 - 69 --- 71 - 69 --- 72 - 69 --- 73 - 69 --- 74 - 74 <--x 70 - 75 --- 76 - 76 --- 77 - 76 --- 78 - 76 --- 79 - 76 --- 80 - 76 --- 81 - 76 ---- 83 - 76 --- 82 - 77 --- 84 - 77 --- 90 - 77 --- 91 - 77 x--> 88 - 78 --- 85 - 78 --- 92 - 78 --- 93 - 78 x--> 88 - 79 --- 86 - 79 --- 94 - 79 --- 95 - 79 x--> 88 - 80 --- 87 - 80 --- 96 - 80 --- 97 - 80 x--> 88 - 83 --- 84 - 83 --- 85 - 83 --- 86 - 83 --- 87 - 83 --- 88 - 83 --- 89 - 83 --- 90 - 83 --- 91 - 83 --- 92 - 83 --- 93 - 83 --- 94 - 83 --- 95 - 83 --- 96 - 83 --- 97 - 89 --- 99 - 90 <--x 84 - 90 <--x 89 - 91 <--x 84 - 91 <--x 85 - 92 <--x 85 - 92 <--x 89 - 93 <--x 85 - 93 <--x 86 - 94 <--x 86 - 94 <--x 89 - 95 <--x 86 - 95 <--x 87 - 96 <--x 87 - 96 <--x 89 - 97 <--x 84 - 97 <--x 87 - 73 <--x 98 - 99 --- 100 - 99 ---- 102 - 99 --- 101 - 100 --- 103 - 100 --- 105 - 100 --- 106 - 100 <--x 89 - 102 --- 103 - 102 --- 104 - 102 --- 105 - 102 --- 106 - 104 --- 108 - 104 --- 119 - 106 <--x 103 - 105 <--x 107 - 108 --- 109 - 108 ---- 111 - 108 --- 110 - 109 --- 112 - 109 --- 114 - 109 --- 115 - 109 <--x 104 - 111 --- 112 - 111 --- 113 - 111 --- 114 - 111 --- 115 - 114 <--x 112 - 114 <--x 113 - 115 <--x 112 - 119 --- 120 - 119 ---- 122 - 119 --- 121 - 120 --- 123 - 120 --- 125 - 120 --- 126 - 120 <--x 104 - 122 --- 123 - 122 --- 124 - 122 --- 125 - 122 --- 126 - 126 <--x 123 - 127 --- 128 - 128 --- 129 - 128 ---- 131 - 128 --- 130 - 129 --- 132 - 129 --- 135 - 129 --- 136 - 129 x--> 134 - 131 --- 132 - 131 --- 133 - 131 --- 134 - 131 --- 135 - 131 --- 136 - 135 <--x 132 - 135 <--x 133 - 136 <--x 132 - 125 <--x 137 - 138 --- 139 - 139 --- 140 - 139 --- 141 - 139 --- 142 - 139 --- 143 - 139 --- 144 - 139 ---- 146 - 139 --- 145 - 140 --- 147 - 140 --- 153 - 140 --- 154 - 140 x--> 152 - 141 --- 148 - 141 --- 155 - 141 --- 156 - 141 x--> 152 - 142 --- 149 - 142 --- 157 - 142 --- 158 - 142 x--> 152 - 143 --- 150 - 143 --- 159 - 143 --- 160 - 143 x--> 152 - 146 --- 147 - 146 --- 148 - 146 --- 149 - 146 --- 150 - 146 --- 151 - 146 --- 152 - 146 --- 153 - 146 --- 154 - 146 --- 155 - 146 --- 156 - 146 --- 157 - 146 --- 158 - 146 --- 159 - 146 --- 160 - 151 --- 161 - 151 --- 170 - 152 --- 205 - 153 <--x 147 - 153 <--x 151 - 154 <--x 147 - 154 <--x 148 - 155 <--x 148 - 155 <--x 151 - 156 <--x 148 - 156 <--x 149 - 157 <--x 149 - 157 <--x 151 - 158 <--x 149 - 158 <--x 150 - 159 <--x 150 - 159 <--x 151 - 160 <--x 147 - 160 <--x 150 - 161 --- 162 - 161 ---- 164 - 161 --- 163 - 162 --- 165 - 162 --- 167 - 162 --- 168 - 162 <--x 151 - 164 --- 165 - 164 --- 166 - 164 --- 167 - 164 --- 168 - 166 --- 179 - 168 <--x 165 - 167 <--x 169 - 170 --- 171 - 170 ---- 173 - 170 --- 172 - 171 --- 174 - 171 --- 176 - 171 --- 177 - 171 <--x 151 - 173 --- 174 - 173 --- 175 - 173 --- 176 - 173 --- 177 - 175 --- 194 - 177 <--x 174 - 176 <--x 178 - 179 --- 180 - 179 ---- 182 - 179 --- 181 - 180 --- 183 - 180 --- 185 - 180 --- 186 - 180 <--x 166 - 182 --- 183 - 182 --- 184 - 182 --- 185 - 182 --- 186 - 185 <--x 183 - 185 <--x 184 - 186 <--x 183 - 194 --- 195 - 194 ---- 197 - 194 --- 196 - 195 --- 198 - 195 --- 200 - 195 --- 201 - 195 <--x 175 - 197 --- 198 - 197 --- 199 - 197 --- 200 - 197 --- 201 - 200 <--x 198 - 200 <--x 199 - 201 <--x 198 - 205 --- 206 - 205 ---- 208 - 205 --- 207 - 206 --- 209 - 206 --- 211 - 206 --- 212 - 206 <--x 152 - 208 --- 209 - 208 --- 210 - 208 --- 211 - 208 --- 212 - 211 <--x 209 - 211 <--x 210 - 212 <--x 209 - 213 --- 214 - 214 --- 215 - 214 --- 216 - 214 --- 217 - 214 --- 218 - 214 --- 219 - 214 ---- 221 - 214 --- 220 - 215 --- 222 - 215 --- 228 - 215 --- 229 - 215 x--> 226 - 216 --- 223 - 216 --- 230 - 216 --- 231 - 216 x--> 226 - 217 --- 224 - 217 --- 232 - 217 --- 233 - 217 x--> 226 - 218 --- 225 - 218 --- 234 - 218 --- 235 - 218 x--> 226 - 221 --- 222 - 221 --- 223 - 221 --- 224 - 221 --- 225 - 221 --- 226 - 221 --- 227 - 221 --- 228 - 221 --- 229 - 221 --- 230 - 221 --- 231 - 221 --- 232 - 221 --- 233 - 221 --- 234 - 221 --- 235 - 226 --- 260 - 227 --- 236 - 227 --- 269 - 228 <--x 222 - 228 <--x 227 - 229 <--x 222 - 229 <--x 223 - 230 <--x 223 - 230 <--x 227 - 231 <--x 223 - 231 <--x 224 - 232 <--x 224 - 232 <--x 227 - 233 <--x 224 - 233 <--x 225 - 234 <--x 225 - 234 <--x 227 - 235 <--x 222 - 235 <--x 225 - 236 --- 237 - 236 ---- 239 - 236 --- 238 - 237 --- 240 - 237 --- 242 - 237 --- 243 - 237 <--x 227 - 239 --- 240 - 239 --- 241 - 239 --- 242 - 239 --- 243 - 241 --- 245 - 243 <--x 240 - 242 <--x 244 - 245 --- 246 - 245 ---- 248 - 245 --- 247 - 246 --- 249 - 246 --- 251 - 246 --- 252 - 246 <--x 241 - 248 --- 249 - 248 --- 250 - 248 --- 251 - 248 --- 252 - 251 <--x 249 - 251 <--x 250 - 252 <--x 249 - 260 --- 261 - 260 ---- 263 - 260 --- 262 - 261 --- 264 - 261 --- 267 - 261 --- 268 - 261 x--> 266 - 263 --- 264 - 263 --- 265 - 263 --- 266 - 263 --- 267 - 263 --- 268 - 267 <--x 264 - 267 <--x 265 - 268 <--x 264 - 269 --- 270 - 269 ---- 272 - 269 --- 271 - 270 --- 273 - 270 --- 276 - 270 --- 277 - 270 x--> 275 - 272 --- 273 - 272 --- 274 - 272 --- 275 - 272 --- 276 - 272 --- 277 - 274 --- 278 - 276 <--x 273 - 276 <--x 274 - 277 <--x 273 - 278 --- 279 - 278 ---- 281 - 278 --- 280 - 279 --- 282 - 279 --- 285 - 279 --- 286 - 279 x--> 284 - 281 --- 282 - 281 --- 283 - 281 --- 284 - 281 --- 285 - 281 --- 286 - 283 --- 287 - 283 --- 321 - 285 <--x 282 - 285 <--x 283 - 286 <--x 282 - 287 --- 288 - 287 --- 289 - 287 --- 290 - 287 --- 291 - 287 --- 292 - 287 --- 293 - 287 --- 294 - 287 --- 295 - 287 ---- 297 - 287 --- 296 - 288 --- 298 - 288 --- 307 - 288 --- 308 - 288 x--> 306 - 289 --- 299 - 289 --- 309 - 289 --- 310 - 289 x--> 306 - 290 --- 300 - 290 --- 311 - 290 --- 312 - 290 x--> 306 - 291 --- 301 - 291 --- 313 - 291 --- 314 - 291 x--> 306 - 292 --- 302 - 292 --- 315 - 292 --- 316 - 292 x--> 306 - 293 --- 303 - 293 --- 317 - 293 --- 318 - 293 x--> 306 - 294 --- 304 - 294 --- 319 - 294 --- 320 - 294 x--> 306 - 297 --- 298 - 297 --- 299 - 297 --- 300 - 297 --- 301 - 297 --- 302 - 297 --- 303 - 297 --- 304 - 297 --- 305 - 297 --- 306 - 297 --- 307 - 297 --- 308 - 297 --- 309 - 297 --- 310 - 297 --- 311 - 297 --- 312 - 297 --- 313 - 297 --- 314 - 297 --- 315 - 297 --- 316 - 297 --- 317 - 297 --- 318 - 297 --- 319 - 297 --- 320 - 307 <--x 298 - 307 <--x 305 - 308 <--x 298 - 308 <--x 299 - 309 <--x 299 - 309 <--x 305 - 310 <--x 299 - 310 <--x 300 - 311 <--x 300 - 311 <--x 305 - 312 <--x 300 - 312 <--x 301 - 313 <--x 301 - 313 <--x 305 - 314 <--x 301 - 314 <--x 302 - 315 <--x 302 - 315 <--x 305 - 316 <--x 302 - 316 <--x 303 - 317 <--x 303 - 317 <--x 305 - 318 <--x 303 - 318 <--x 304 - 319 <--x 304 - 319 <--x 305 - 320 <--x 298 - 320 <--x 304 - 321 --- 322 - 321 --- 323 - 321 --- 324 - 321 --- 325 - 321 --- 326 - 321 --- 327 - 321 --- 328 - 321 --- 329 - 321 ---- 331 - 321 --- 330 - 322 --- 338 - 322 --- 353 - 322 --- 354 - 322 x--> 340 - 323 --- 337 - 323 --- 351 - 323 --- 352 - 323 x--> 340 - 324 --- 336 - 324 --- 349 - 324 --- 350 - 324 x--> 340 - 325 --- 335 - 325 --- 347 - 325 --- 348 - 325 x--> 340 - 326 --- 334 - 326 --- 345 - 326 --- 346 - 326 x--> 340 - 327 --- 333 - 327 --- 343 - 327 --- 344 - 327 x--> 340 - 328 --- 332 - 328 --- 341 - 328 --- 342 - 328 x--> 340 - 331 --- 332 - 331 --- 333 - 331 --- 334 - 331 --- 335 - 331 --- 336 - 331 --- 337 - 331 --- 338 - 331 --- 339 - 331 --- 340 - 331 --- 341 - 331 --- 342 - 331 --- 343 - 331 --- 344 - 331 --- 345 - 331 --- 346 - 331 --- 347 - 331 --- 348 - 331 --- 349 - 331 --- 350 - 331 --- 351 - 331 --- 352 - 331 --- 353 - 331 --- 354 - 341 <--x 332 - 341 <--x 339 - 342 <--x 332 - 342 <--x 338 - 343 <--x 333 - 343 <--x 339 - 344 <--x 332 - 344 <--x 333 - 345 <--x 334 - 345 <--x 339 - 346 <--x 333 - 346 <--x 334 - 347 <--x 335 - 347 <--x 339 - 348 <--x 334 - 348 <--x 335 - 349 <--x 336 - 349 <--x 339 - 350 <--x 335 - 350 <--x 336 - 351 <--x 337 - 351 <--x 339 - 352 <--x 336 - 352 <--x 337 - 353 <--x 338 - 353 <--x 339 - 354 <--x 337 - 354 <--x 338 - 15 <--x 355 - 33 <--x 356 - 15 <--x 357 - 15 <--x 358 - 89 <--x 359 - 104 <--x 360 - 104 <--x 361 - 151 <--x 362 - 151 <--x 363 - 166 <--x 364 - 175 <--x 365 - 152 <--x 366 - 227 <--x 367 - 241 <--x 368 - 226 <--x 369 - 227 <--x 370 - 274 <--x 371 - 283 <--x 372 - 283 <--x 373 + 343["SweepEdge Adjacent"] + 344["EdgeCut Fillet
[321, 383, 10]"] + 345["EdgeCut Chamfer
[777, 1054, 8]"] + 346["EdgeCut Chamfer
[777, 1054, 8]"] + 347["EdgeCut Chamfer
[777, 1054, 8]"] + 348["EdgeCut Chamfer
[777, 1054, 8]"] + 349["EdgeCut Fillet
[958, 1020, 11]"] + 350["EdgeCut Fillet
[1261, 1323, 12]"] + 351["EdgeCut Fillet
[1106, 1168, 10]"] + 352["EdgeCut Fillet
[1294, 1355, 8]"] + 353["EdgeCut Fillet
[1351, 1413, 11]"] + 354["EdgeCut Fillet
[2001, 2063, 10]"] + 1 --- 7 + 2 --- 12 + 3 --- 13 + 4 --- 17 + 5 --- 18 + 6 --- 24 + 7 --- 32 + 7 --- 33 + 7 --- 34 + 7 --- 35 + 7 --- 36 + 7 --- 101 + 7 ---- 112 + 8 --- 37 + 8 --- 104 + 8 ---- 113 + 240 --- 8 + 9 --- 38 + 9 --- 96 + 9 ---- 114 + 241 --- 9 + 10 --- 39 + 10 --- 90 + 10 ---- 118 + 240 --- 10 + 11 --- 40 + 11 --- 87 + 11 ---- 122 + 240 --- 11 + 12 --- 41 + 12 --- 103 + 12 ---- 123 + 13 --- 42 + 13 --- 43 + 13 --- 44 + 13 --- 45 + 13 --- 46 + 13 --- 107 + 13 ---- 124 + 14 --- 47 + 14 --- 88 + 14 ---- 125 + 229 --- 14 + 15 --- 48 + 15 --- 111 + 15 ---- 126 + 244 --- 15 + 16 --- 49 + 16 --- 94 + 16 ---- 130 + 244 --- 16 + 17 --- 50 + 17 --- 105 + 17 ---- 131 + 18 --- 51 + 18 --- 52 + 18 --- 53 + 18 --- 54 + 18 --- 55 + 18 --- 95 + 18 ---- 132 + 19 --- 56 + 19 --- 89 + 19 ---- 133 + 213 --- 19 + 20 --- 57 + 20 --- 100 + 20 ---- 134 + 213 --- 20 + 21 --- 58 + 21 --- 106 + 21 ---- 136 + 235 --- 21 + 22 --- 59 + 22 --- 110 + 22 ---- 143 + 243 --- 22 + 23 --- 60 + 23 --- 102 + 23 ---- 147 + 225 --- 23 + 24 --- 61 + 24 --- 62 + 24 --- 63 + 24 --- 64 + 24 --- 65 + 24 --- 91 + 24 ---- 148 + 25 --- 66 + 25 --- 93 + 25 ---- 149 + 233 --- 25 + 26 --- 67 + 26 --- 98 + 26 ---- 156 + 228 --- 26 + 27 --- 68 + 27 --- 108 + 27 ---- 158 + 217 --- 27 + 28 --- 69 + 28 --- 97 + 28 ---- 159 + 233 --- 28 + 29 --- 70 + 29 --- 109 + 29 ---- 160 + 219 --- 29 + 30 --- 71 + 30 --- 72 + 30 --- 73 + 30 --- 74 + 30 --- 75 + 30 --- 76 + 30 --- 77 + 30 --- 78 + 30 --- 99 + 30 ---- 161 + 212 --- 30 + 31 --- 79 + 31 --- 80 + 31 --- 81 + 31 --- 82 + 31 --- 83 + 31 --- 84 + 31 --- 85 + 31 --- 86 + 31 --- 92 + 31 ---- 162 + 212 --- 31 + 32 --- 191 + 32 x--> 220 + 32 --- 276 + 32 --- 324 + 33 --- 192 + 33 x--> 220 + 33 --- 274 + 33 --- 322 + 34 --- 193 + 34 x--> 220 + 34 --- 273 + 34 --- 323 + 35 --- 190 + 35 x--> 220 + 35 --- 275 + 35 --- 325 + 37 --- 194 + 37 x--> 240 + 37 --- 277 + 37 --- 326 + 38 --- 170 + 38 x--> 241 + 38 --- 253 + 38 --- 302 + 39 --- 177 + 39 x--> 240 + 39 --- 260 + 39 --- 309 + 40 --- 204 + 40 x--> 240 + 40 --- 287 + 40 --- 336 + 41 --- 179 + 41 x--> 216 + 41 --- 262 + 41 --- 311 + 42 --- 174 + 42 x--> 215 + 42 --- 255 + 42 --- 304 + 43 --- 172 + 43 x--> 215 + 43 --- 257 + 43 --- 306 + 44 --- 173 + 44 x--> 215 + 44 --- 256 + 44 --- 307 + 45 --- 175 + 45 x--> 215 + 45 --- 258 + 45 --- 305 + 47 --- 203 + 47 x--> 229 + 47 --- 286 + 47 --- 335 + 48 --- 176 + 48 x--> 244 + 48 --- 259 + 48 --- 308 + 49 --- 188 + 49 x--> 244 + 49 --- 271 + 49 --- 320 + 50 --- 184 + 50 x--> 234 + 50 --- 267 + 50 --- 316 + 51 --- 166 + 51 x--> 225 + 51 --- 249 + 51 --- 298 + 52 --- 167 + 52 x--> 225 + 52 --- 251 + 52 --- 297 + 53 --- 168 + 53 x--> 225 + 53 --- 250 + 53 --- 300 + 54 --- 165 + 54 x--> 225 + 54 --- 248 + 54 --- 299 + 56 --- 185 + 56 x--> 213 + 56 --- 268 + 56 --- 317 + 57 --- 202 + 57 x--> 213 + 57 --- 285 + 57 --- 334 + 58 --- 178 + 58 x--> 235 + 58 --- 261 + 58 --- 310 + 59 --- 164 + 59 x--> 243 + 59 --- 247 + 59 --- 296 + 60 --- 189 + 60 x--> 225 + 60 --- 272 + 60 --- 321 + 61 --- 181 + 61 x--> 217 + 61 --- 264 + 61 --- 315 + 62 --- 182 + 62 x--> 217 + 62 --- 266 + 62 --- 313 + 63 --- 180 + 63 x--> 217 + 63 --- 265 + 63 --- 312 + 64 --- 183 + 64 x--> 217 + 64 --- 263 + 64 --- 314 + 66 --- 171 + 66 x--> 233 + 66 --- 254 + 66 --- 303 + 67 --- 186 + 67 x--> 228 + 67 --- 269 + 67 --- 318 + 68 --- 169 + 68 x--> 226 + 68 --- 252 + 68 --- 301 + 69 --- 187 + 69 x--> 237 + 69 --- 270 + 69 --- 319 + 70 --- 163 + 70 x--> 223 + 70 --- 246 + 70 --- 295 + 71 --- 201 + 71 x--> 242 + 71 --- 283 + 71 --- 333 + 72 --- 195 + 72 x--> 242 + 72 --- 282 + 72 --- 327 + 73 --- 197 + 73 x--> 242 + 73 --- 281 + 73 --- 331 + 74 --- 198 + 74 x--> 242 + 74 --- 278 + 74 --- 329 + 75 --- 200 + 75 x--> 242 + 75 --- 280 + 75 --- 330 + 76 --- 199 + 76 x--> 242 + 76 --- 284 + 76 --- 332 + 77 --- 196 + 77 x--> 242 + 77 --- 279 + 77 --- 328 + 79 --- 209 + 79 x--> 245 + 79 --- 292 + 79 --- 343 + 80 --- 205 + 80 x--> 245 + 80 --- 290 + 80 --- 341 + 81 --- 208 + 81 x--> 245 + 81 --- 291 + 81 --- 342 + 82 --- 206 + 82 x--> 245 + 82 --- 288 + 82 --- 337 + 83 --- 210 + 83 x--> 245 + 83 --- 294 + 83 --- 340 + 84 --- 211 + 84 x--> 245 + 84 --- 289 + 84 --- 338 + 85 --- 207 + 85 x--> 245 + 85 --- 293 + 85 --- 339 + 112 --- 190 + 112 --- 191 + 112 --- 192 + 112 --- 193 + 112 --- 220 + 112 --- 240 + 112 --- 273 + 112 --- 274 + 112 --- 275 + 112 --- 276 + 112 --- 322 + 112 --- 323 + 112 --- 324 + 112 --- 325 + 113 --- 194 + 113 --- 241 + 113 --- 277 + 113 --- 326 + 114 --- 170 + 114 --- 227 + 114 --- 253 + 114 --- 302 + 118 --- 177 + 118 --- 260 + 118 --- 309 + 122 --- 204 + 122 --- 287 + 122 --- 336 + 123 --- 179 + 123 --- 216 + 123 --- 232 + 123 --- 262 + 123 --- 311 + 124 --- 172 + 124 --- 173 + 124 --- 174 + 124 --- 175 + 124 --- 215 + 124 --- 229 + 124 --- 255 + 124 --- 256 + 124 --- 257 + 124 --- 258 + 124 --- 304 + 124 --- 305 + 124 --- 306 + 124 --- 307 + 125 --- 203 + 125 --- 244 + 125 --- 286 + 125 --- 335 + 126 --- 176 + 126 --- 230 + 126 --- 259 + 126 --- 308 + 130 --- 188 + 130 --- 238 + 130 --- 271 + 130 --- 320 + 131 --- 184 + 131 --- 218 + 131 --- 234 + 131 --- 267 + 131 --- 316 + 132 --- 165 + 132 --- 166 + 132 --- 167 + 132 --- 168 + 132 --- 213 + 132 --- 225 + 132 --- 248 + 132 --- 249 + 132 --- 250 + 132 --- 251 + 132 --- 297 + 132 --- 298 + 132 --- 299 + 132 --- 300 + 133 --- 185 + 133 --- 235 + 133 --- 268 + 133 --- 317 + 134 --- 202 + 134 --- 243 + 134 --- 285 + 134 --- 334 + 136 --- 178 + 136 --- 231 + 136 --- 261 + 136 --- 310 + 143 --- 164 + 143 --- 224 + 143 --- 247 + 143 --- 296 + 147 --- 189 + 147 --- 239 + 147 --- 272 + 147 --- 321 + 148 --- 180 + 148 --- 181 + 148 --- 182 + 148 --- 183 + 148 --- 217 + 148 --- 233 + 148 --- 263 + 148 --- 264 + 148 --- 265 + 148 --- 266 + 148 --- 312 + 148 --- 313 + 148 --- 314 + 148 --- 315 + 149 --- 171 + 149 --- 228 + 149 --- 254 + 149 --- 303 + 156 --- 186 + 156 --- 236 + 156 --- 269 + 156 --- 318 + 158 --- 169 + 158 --- 214 + 158 --- 226 + 158 --- 252 + 158 --- 301 + 159 --- 187 + 159 --- 219 + 159 --- 237 + 159 --- 270 + 159 --- 319 + 160 --- 163 + 160 --- 212 + 160 --- 223 + 160 --- 246 + 160 --- 295 + 161 --- 195 + 161 --- 196 + 161 --- 197 + 161 --- 198 + 161 --- 199 + 161 --- 200 + 161 --- 201 + 161 --- 221 + 161 --- 242 + 161 --- 278 + 161 --- 279 + 161 --- 280 + 161 --- 281 + 161 --- 282 + 161 --- 283 + 161 --- 284 + 161 --- 327 + 161 --- 328 + 161 --- 329 + 161 --- 330 + 161 --- 331 + 161 --- 332 + 161 --- 333 + 162 --- 205 + 162 --- 206 + 162 --- 207 + 162 --- 208 + 162 --- 209 + 162 --- 210 + 162 --- 211 + 162 --- 222 + 162 --- 245 + 162 --- 288 + 162 --- 289 + 162 --- 290 + 162 --- 291 + 162 --- 292 + 162 --- 293 + 162 --- 294 + 162 --- 337 + 162 --- 338 + 162 --- 339 + 162 --- 340 + 162 --- 341 + 162 --- 342 + 162 --- 343 + 246 <--x 163 + 295 <--x 163 + 247 <--x 164 + 296 <--x 164 + 248 <--x 165 + 299 <--x 165 + 300 <--x 165 + 249 <--x 166 + 298 <--x 166 + 299 <--x 166 + 251 <--x 167 + 297 <--x 167 + 298 <--x 167 + 250 <--x 168 + 297 <--x 168 + 300 <--x 168 + 252 <--x 169 + 301 <--x 169 + 253 <--x 170 + 302 <--x 170 + 303 <--x 171 + 257 <--x 172 + 304 <--x 172 + 306 <--x 172 + 256 <--x 173 + 306 <--x 173 + 307 <--x 173 + 255 <--x 174 + 304 <--x 174 + 305 <--x 174 + 258 <--x 175 + 305 <--x 175 + 307 <--x 175 + 259 <--x 176 + 308 <--x 176 + 260 <--x 177 + 309 <--x 177 + 261 <--x 178 + 310 <--x 178 + 311 <--x 179 + 265 <--x 180 + 312 <--x 180 + 313 <--x 180 + 264 <--x 181 + 314 <--x 181 + 315 <--x 181 + 266 <--x 182 + 313 <--x 182 + 315 <--x 182 + 263 <--x 183 + 312 <--x 183 + 314 <--x 183 + 267 <--x 184 + 316 <--x 184 + 317 <--x 185 + 269 <--x 186 + 318 <--x 186 + 270 <--x 187 + 319 <--x 187 + 320 <--x 188 + 272 <--x 189 + 321 <--x 189 + 275 <--x 190 + 276 <--x 191 + 274 <--x 192 + 273 <--x 193 + 326 <--x 194 + 282 <--x 195 + 327 <--x 195 + 333 <--x 195 + 279 <--x 196 + 328 <--x 196 + 332 <--x 196 + 281 <--x 197 + 327 <--x 197 + 331 <--x 197 + 278 <--x 198 + 329 <--x 198 + 331 <--x 198 + 284 <--x 199 + 330 <--x 199 + 332 <--x 199 + 280 <--x 200 + 329 <--x 200 + 330 <--x 200 + 283 <--x 201 + 328 <--x 201 + 333 <--x 201 + 334 <--x 202 + 335 <--x 203 + 287 <--x 204 + 336 <--x 204 + 290 <--x 205 + 341 <--x 205 + 343 <--x 205 + 288 <--x 206 + 337 <--x 206 + 342 <--x 206 + 293 <--x 207 + 338 <--x 207 + 339 <--x 207 + 291 <--x 208 + 341 <--x 208 + 342 <--x 208 + 292 <--x 209 + 339 <--x 209 + 343 <--x 209 + 294 <--x 210 + 337 <--x 210 + 340 <--x 210 + 289 <--x 211 + 338 <--x 211 + 340 <--x 211 + 246 <--x 212 + 248 <--x 213 + 249 <--x 213 + 250 <--x 213 + 251 <--x 213 + 252 <--x 214 + 267 <--x 218 + 270 <--x 219 + 260 <--x 220 + 287 <--x 220 + 278 <--x 221 + 279 <--x 221 + 280 <--x 221 + 281 <--x 221 + 282 <--x 221 + 283 <--x 221 + 284 <--x 221 + 288 <--x 222 + 289 <--x 222 + 290 <--x 222 + 291 <--x 222 + 292 <--x 222 + 293 <--x 222 + 294 <--x 222 + 247 <--x 224 + 253 <--x 227 + 255 <--x 229 + 256 <--x 229 + 257 <--x 229 + 258 <--x 229 + 259 <--x 230 + 261 <--x 231 + 263 <--x 233 + 264 <--x 233 + 265 <--x 233 + 266 <--x 233 + 269 <--x 236 + 272 <--x 239 + 273 <--x 240 + 274 <--x 240 + 275 <--x 240 + 276 <--x 240 + 254 <--x 350 + 262 <--x 344 + 268 <--x 349 + 271 <--x 354 + 277 <--x 352 + 285 <--x 353 + 286 <--x 351 + 322 <--x 346 + 323 <--x 347 + 324 <--x 345 + 325 <--x 348 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/ops.snap b/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/ops.snap index 1810c7121..353bec35e 100644 --- a/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/ops.snap @@ -12,478 +12,6 @@ description: Operations executed multi-axis-robot.kcl }, "sourceRange": [] }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "chamfer", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "tags": { - "value": { - "type": "Array", - "value": [ - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - } - ] - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "fillet", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "radius": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "tags": { - "value": { - "type": "Array", - "value": [ - { - "type": "Uuid", - "value": "[uuid]" - } - ] - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -493,1077 +21,6 @@ description: Operations executed multi-axis-robot.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 3.6, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 1.4, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "fillet", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "radius": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "tags": { - "value": { - "type": "Array", - "value": [ - { - "type": "Uuid", - "value": "[uuid]" - } - ] - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.984807753012208, - "ty": { - "type": "Known", - "type": "Length", - "type": "Inches" - } - }, - { - "type": "Number", - "value": 0.17364817766693041, - "ty": { - "type": "Known", - "type": "Length", - "type": "Inches" - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 1.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "fillet", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "radius": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "tags": { - "value": { - "type": "Array", - "value": [ - { - "type": "Uuid", - "value": "[uuid]" - } - ] - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.2, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.15, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "fillet", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "radius": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "tags": { - "value": { - "type": "Array", - "value": [ - { - "type": "Uuid", - "value": "[uuid]" - } - ] - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.984807753012208, - "ty": { - "type": "Known", - "type": "Length", - "type": "Inches" - } - }, - { - "type": "Number", - "value": 0.17364817766693041, - "ty": { - "type": "Known", - "type": "Length", - "type": "Inches" - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1573,894 +30,6 @@ description: Operations executed multi-axis-robot.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": -0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.984807753012208, - "ty": { - "type": "Known", - "type": "Length", - "type": "Inches" - } - }, - { - "type": "Number", - "value": 0.17364817766693041, - "ty": { - "type": "Known", - "type": "Length", - "type": "Inches" - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -2.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.15, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "fillet", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "radius": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "tags": { - "value": { - "type": "Array", - "value": [ - { - "type": "Uuid", - "value": "[uuid]" - } - ] - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "fillet", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "radius": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "tags": { - "value": { - "type": "Array", - "value": [ - { - "type": "Uuid", - "value": "[uuid]" - } - ] - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.15, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.15, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -2471,1381 +40,14 @@ description: Operations executed multi-axis-robot.kcl "sourceRange": [] }, { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Object", - "value": { - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "xAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.984807753012208, - "ty": { - "type": "Known", - "type": "Length", - "type": "Inches" - } - }, - { - "type": "Number", - "value": 0.17364817766693041, - "ty": { - "type": "Known", - "type": "Length", - "type": "Inches" - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "yAxis": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "type": "GroupEnd" }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 2.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.15, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "fillet", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "radius": { - "value": { - "type": "Number", - "value": 0.1, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "tags": { - "value": { - "type": "Array", - "value": [ - { - "type": "Uuid", - "value": "[uuid]" - } - ] - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.15, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.01, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -1.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -1.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/program_memory.snap index 1ccd6fb38..82305396a 100644 --- a/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/program_memory.snap @@ -5,11 +5,11 @@ description: Variables in memory after executing multi-axis-robot.kcl { "j2RobotArm": { "type": "Module", - "value": 10 + "value": 11 }, "j3RobotArm": { "type": "Module", - "value": 11 + "value": 12 }, "robotArmBase": { "type": "Module", @@ -17,6 +17,6 @@ description: Variables in memory after executing multi-axis-robot.kcl }, "rotatingBase": { "type": "Module", - "value": 9 + "value": 10 } } diff --git a/rust/kcl-lib/tests/kcl_samples/parametric-bearing-pillow-block/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/parametric-bearing-pillow-block/artifact_commands.snap index e8746c095..0a36e376f 100644 --- a/rust/kcl-lib/tests/kcl_samples/parametric-bearing-pillow-block/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/parametric-bearing-pillow-block/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands parametric-bearing-pillow-block.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -324,39 +379,12 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,28 +399,8 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -407,33 +415,6 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -22.86, - "y": -57.15, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -463,8 +444,27 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -22.86, + "y": -57.15, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -603,82 +603,24 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -6.35, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -708,83 +650,11 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -6.35, + "faces": null, + "opposite": "None" } }, { @@ -798,89 +668,6 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -896,7 +683,8 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -907,6 +695,158 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -920,7 +860,7 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -929,17 +869,16 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -958,9 +897,78 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -975,33 +983,6 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -26.987499999999997, - "y": -57.15, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1031,8 +1012,27 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -26.987499999999997, + "y": -57.15, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -1171,82 +1171,24 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -19.049999999999997, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -1276,83 +1218,11 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -19.049999999999997, + "faces": null, + "opposite": "None" } }, { @@ -1366,89 +1236,6 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -1464,7 +1251,8 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -1475,6 +1263,158 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1488,7 +1428,7 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1497,17 +1437,16 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1526,9 +1465,78 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -1543,33 +1551,6 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 38.099999999999994, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1599,8 +1580,27 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 38.099999999999994, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -1626,13 +1626,6 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1641,6 +1634,40 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1650,34 +1677,6 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1692,9 +1691,10 @@ description: Artifact commands parametric-bearing-pillow-block.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/parametric-bearing-pillow-block/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/parametric-bearing-pillow-block/artifact_graph_flowchart.snap.md index 4d519413f..71b21d328 100644 --- a/rust/kcl-lib/tests/kcl_samples/parametric-bearing-pillow-block/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/parametric-bearing-pillow-block/artifact_graph_flowchart.snap.md @@ -1,162 +1,162 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[773, 817, 0]"] - 3["Segment
[823, 867, 0]"] - 4["Segment
[873, 916, 0]"] - 5["Segment
[922, 966, 0]"] - 6["Segment
[972, 979, 0]"] - 7[Solid2d] + subgraph path5 [Path] + 5["Path
[773, 817, 0]"] + 9["Segment
[823, 867, 0]"] + 10["Segment
[873, 916, 0]"] + 11["Segment
[922, 966, 0]"] + 12["Segment
[972, 979, 0]"] + 19[Solid2d] end - subgraph path23 [Path] - 23["Path
[1066, 1213, 0]"] - 24["Segment
[1066, 1213, 0]"] - 25[Solid2d] + subgraph path6 [Path] + 6["Path
[1066, 1213, 0]"] + 13["Segment
[1066, 1213, 0]"] + 18[Solid2d] end - subgraph path34 [Path] - 34["Path
[1460, 1609, 0]"] - 35["Segment
[1460, 1609, 0]"] - 36[Solid2d] + subgraph path7 [Path] + 7["Path
[1460, 1609, 0]"] + 14["Segment
[1460, 1609, 0]"] + 17[Solid2d] end - subgraph path44 [Path] - 44["Path
[1861, 1909, 0]"] - 45["Segment
[1861, 1909, 0]"] - 46[Solid2d] + subgraph path8 [Path] + 8["Path
[1861, 1909, 0]"] + 15["Segment
[1861, 1909, 0]"] + 16[Solid2d] end 1["Plane
[750, 767, 0]"] - 8["Sweep Extrusion
[985, 1009, 0]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12[Wall] - 13["Cap Start"] - 14["Cap End"] - 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 26["Sweep Extrusion
[1378, 1407, 0]"] - 27[Wall] - 28["Cap Start"] - 29["SweepEdge Opposite"] - 30["SweepEdge Adjacent"] - 31["Sweep Extrusion
[1378, 1407, 0]"] - 32["Sweep Extrusion
[1378, 1407, 0]"] - 33["Sweep Extrusion
[1378, 1407, 0]"] - 37["Sweep Extrusion
[1774, 1809, 0]"] - 38[Wall] - 39["SweepEdge Opposite"] - 40["SweepEdge Adjacent"] - 41["Sweep Extrusion
[1774, 1809, 0]"] - 42["Sweep Extrusion
[1774, 1809, 0]"] - 43["Sweep Extrusion
[1774, 1809, 0]"] - 47["Sweep Extrusion
[1915, 1940, 0]"] - 48[Wall] - 49["SweepEdge Opposite"] + 2["StartSketchOnFace
[1824, 1855, 0]"] + 3["StartSketchOnFace
[1421, 1454, 0]"] + 4["StartSketchOnFace
[1029, 1060, 0]"] + 20["Sweep Extrusion
[985, 1009, 0]"] + 21["Sweep Extrusion
[1378, 1407, 0]"] + 22["Sweep Extrusion
[1378, 1407, 0]"] + 23["Sweep Extrusion
[1378, 1407, 0]"] + 24["Sweep Extrusion
[1378, 1407, 0]"] + 25["Sweep Extrusion
[1774, 1809, 0]"] + 26["Sweep Extrusion
[1774, 1809, 0]"] + 27["Sweep Extrusion
[1774, 1809, 0]"] + 28["Sweep Extrusion
[1774, 1809, 0]"] + 29["Sweep Extrusion
[1915, 1940, 0]"] + 30[Wall] + 31[Wall] + 32[Wall] + 33[Wall] + 34[Wall] + 35[Wall] + 36[Wall] + 37["Cap Start"] + 38["Cap Start"] + 39["Cap End"] + 40["SweepEdge Opposite"] + 41["SweepEdge Opposite"] + 42["SweepEdge Opposite"] + 43["SweepEdge Opposite"] + 44["SweepEdge Opposite"] + 45["SweepEdge Opposite"] + 46["SweepEdge Opposite"] + 47["SweepEdge Adjacent"] + 48["SweepEdge Adjacent"] + 49["SweepEdge Adjacent"] 50["SweepEdge Adjacent"] - 51["StartSketchOnFace
[1029, 1060, 0]"] - 52["StartSketchOnFace
[1421, 1454, 0]"] - 53["StartSketchOnFace
[1824, 1855, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 9 - 3 --- 15 - 3 --- 16 - 3 x--> 13 - 4 --- 10 - 4 --- 17 - 4 --- 18 - 4 x--> 13 + 51["SweepEdge Adjacent"] + 52["SweepEdge Adjacent"] + 53["SweepEdge Adjacent"] + 1 --- 5 + 39 x--> 2 + 37 x--> 3 + 39 x--> 4 + 5 --- 9 + 5 --- 10 5 --- 11 + 5 --- 12 5 --- 19 - 5 --- 20 - 5 x--> 13 - 6 --- 12 - 6 --- 21 - 6 --- 22 - 6 x--> 13 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 + 5 ---- 20 + 6 --- 13 + 6 --- 18 + 6 ---- 23 + 39 --- 6 + 7 --- 14 + 7 --- 17 + 7 ---- 26 + 37 --- 7 8 --- 15 8 --- 16 - 8 --- 17 - 8 --- 18 - 8 --- 19 - 8 --- 20 - 8 --- 21 - 8 --- 22 - 13 --- 34 - 14 --- 23 - 14 --- 44 - 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 10 - 17 <--x 10 - 17 <--x 14 - 18 <--x 10 - 18 <--x 11 - 19 <--x 11 - 19 <--x 14 - 20 <--x 11 - 20 <--x 12 - 21 <--x 12 - 21 <--x 14 - 22 <--x 9 - 22 <--x 12 - 23 --- 24 - 23 ---- 26 - 23 --- 25 - 24 --- 27 - 24 --- 29 - 24 --- 30 - 24 <--x 14 - 26 --- 27 - 26 --- 28 - 26 --- 29 + 8 ---- 29 + 39 --- 8 + 9 --- 34 + 9 x--> 37 + 9 --- 42 + 9 --- 48 + 10 --- 32 + 10 x--> 37 + 10 --- 41 + 10 --- 51 + 11 --- 31 + 11 x--> 37 + 11 --- 44 + 11 --- 50 + 12 --- 33 + 12 x--> 37 + 12 --- 43 + 12 --- 49 + 13 --- 35 + 13 x--> 39 + 13 --- 45 + 13 --- 52 + 14 --- 30 + 14 x--> 37 + 14 --- 40 + 14 --- 47 + 15 --- 36 + 15 x--> 39 + 15 --- 46 + 15 --- 53 + 20 --- 31 + 20 --- 32 + 20 --- 33 + 20 --- 34 + 20 --- 37 + 20 --- 39 + 20 --- 41 + 20 --- 42 + 20 --- 43 + 20 --- 44 + 20 --- 48 + 20 --- 49 + 20 --- 50 + 20 --- 51 + 23 --- 35 + 23 --- 38 + 23 --- 45 + 23 --- 52 26 --- 30 - 29 <--x 27 - 29 <--x 28 - 30 <--x 27 - 34 --- 35 - 34 ---- 37 - 34 --- 36 - 35 --- 38 - 35 --- 39 - 35 --- 40 - 35 <--x 13 - 37 --- 38 - 37 --- 39 - 37 --- 40 - 39 <--x 38 - 40 <--x 38 - 44 --- 45 - 44 ---- 47 - 44 --- 46 - 45 --- 48 - 45 --- 49 - 45 --- 50 - 45 <--x 14 - 47 --- 48 - 47 --- 49 - 47 --- 50 - 49 <--x 48 - 49 <--x 13 - 50 <--x 48 - 14 <--x 51 - 13 <--x 52 - 14 <--x 53 + 26 --- 40 + 26 --- 47 + 29 --- 36 + 29 --- 46 + 29 --- 53 + 40 <--x 30 + 47 <--x 30 + 44 <--x 31 + 50 <--x 31 + 51 <--x 31 + 41 <--x 32 + 48 <--x 32 + 51 <--x 32 + 43 <--x 33 + 49 <--x 33 + 50 <--x 33 + 42 <--x 34 + 48 <--x 34 + 49 <--x 34 + 45 <--x 35 + 52 <--x 35 + 46 <--x 36 + 53 <--x 36 + 46 <--x 37 + 45 <--x 38 + 41 <--x 39 + 42 <--x 39 + 43 <--x 39 + 44 <--x 39 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/artifact_commands.snap index f30cadf89..beb8c55d2 100644 --- a/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/artifact_commands.snap @@ -542,6 +542,14 @@ description: Artifact commands pipe-flange-assembly.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -558,33 +566,6 @@ description: Artifact commands pipe-flange-assembly.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 52.387499999999996, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -614,8 +595,27 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 52.387499999999996, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -645,13 +645,6 @@ description: Artifact commands pipe-flange-assembly.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -660,6 +653,40 @@ description: Artifact commands pipe-flange-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -669,34 +696,6 @@ description: Artifact commands pipe-flange-assembly.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -711,9 +710,18 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -728,33 +736,6 @@ description: Artifact commands pipe-flange-assembly.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 30.162499999999998, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -784,8 +765,27 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 30.162499999999998, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -811,13 +811,6 @@ description: Artifact commands pipe-flange-assembly.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -826,6 +819,40 @@ description: Artifact commands pipe-flange-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -835,34 +862,6 @@ description: Artifact commands pipe-flange-assembly.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -877,9 +876,10 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -924,6 +924,47 @@ description: Artifact commands pipe-flange-assembly.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -944,29 +985,18 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 9.524999999999999, - "y": 60.324999999999996, - "z": 0.0 + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -996,8 +1026,100 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 60.325 + }, + "radius": 9.524999999999999, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 9.524999999999999, + "y": 60.324999999999996, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 9.524999999999999, + "y": 60.324999999999996, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 3, + "arc_degrees": 360.0, + "rotate_duplicates": false } }, { @@ -1046,6 +1168,47 @@ description: Artifact commands pipe-flange-assembly.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1066,29 +1229,18 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 76.19999999999999, + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, "y": 0.0, - "z": 0.0 + "z": 1.0 } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1118,17 +1270,142 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 76.19999999999999, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 76.19999999999999, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 76.19999999999999, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -1153,9 +1430,9 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -1171,9 +1448,9 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -1189,9 +1466,43 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } } }, { @@ -1225,7 +1536,11 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 17.525999999999996, + "faces": null, + "opposite": "None" } }, { @@ -1236,6 +1551,298 @@ description: Artifact commands pipe-flange-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1249,26 +1856,7 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1287,39 +1875,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1334,39 +1895,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1381,39 +1915,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1428,39 +1935,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1475,9 +1955,126 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -1496,27 +2093,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 45.974, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -1548,8 +2130,91 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 45.974, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 45.974, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 45.974, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -1579,7 +2244,11 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 1.5239999999999998, + "faces": null, + "opposite": "None" } }, { @@ -1590,6 +2259,82 @@ description: Artifact commands pipe-flange-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1603,26 +2348,7 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1641,9 +2367,46 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -1662,27 +2425,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 38.862, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -1714,8 +2462,91 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 38.862, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 38.862, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 38.862, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -1745,7 +2576,11 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 6.35, + "faces": null, + "opposite": "None" } }, { @@ -1756,6 +2591,82 @@ description: Artifact commands pipe-flange-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1769,26 +2680,7 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1807,9 +2699,46 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -1828,27 +2757,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 30.987999999999996, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -1880,8 +2794,91 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 30.987999999999996, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 30.987999999999996, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 30.987999999999996, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -1911,7 +2908,11 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": -25.4, + "faces": null, + "opposite": "None" } }, { @@ -1922,6 +2923,82 @@ description: Artifact commands pipe-flange-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1935,26 +3012,7 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1973,9 +3031,47 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.7294118, + "g": 0.6901961, + "b": 0.6901961, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 } }, { @@ -2020,74 +3116,6 @@ description: Artifact commands pipe-flange-assembly.kcl "hide": true } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 9.524999999999999, - "y": 60.324999999999996, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 60.325 - }, - "radius": 9.524999999999999, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, { "cmdId": "[uuid]", "range": [], @@ -2096,52 +3124,6 @@ description: Artifact commands pipe-flange-assembly.kcl "path_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "entity_circular_pattern", - "entity_id": "[uuid]", - "axis": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "center": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "num_repetitions": 3, - "arc_degrees": 360.0, - "rotate_duplicates": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -2158,1007 +3140,6 @@ description: Artifact commands pipe-flange-assembly.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 76.19999999999999, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 76.19999999999999, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 17.525999999999996, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 45.974, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 45.974, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.5239999999999998, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 38.862, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 38.862, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 6.35, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 30.987999999999996, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 30.987999999999996, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -25.4, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.7294118, - "g": 0.6901961, - "b": 0.6901961, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 15.087599999999998, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3188,8 +3169,27 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 15.087599999999998, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -3219,13 +3219,6 @@ description: Artifact commands pipe-flange-assembly.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3234,6 +3227,40 @@ description: Artifact commands pipe-flange-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3243,34 +3270,6 @@ description: Artifact commands pipe-flange-assembly.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3285,9 +3284,18 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -3302,33 +3310,6 @@ description: Artifact commands pipe-flange-assembly.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 8.128, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3358,8 +3339,27 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 8.128, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -3385,13 +3385,6 @@ description: Artifact commands pipe-flange-assembly.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3400,6 +3393,40 @@ description: Artifact commands pipe-flange-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3409,34 +3436,6 @@ description: Artifact commands pipe-flange-assembly.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3451,9 +3450,10 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3498,6 +3498,14 @@ description: Artifact commands pipe-flange-assembly.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3514,33 +3522,6 @@ description: Artifact commands pipe-flange-assembly.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 11.9126, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3570,8 +3551,27 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 11.9126, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -3601,13 +3601,6 @@ description: Artifact commands pipe-flange-assembly.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3616,6 +3609,40 @@ description: Artifact commands pipe-flange-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3625,34 +3652,6 @@ description: Artifact commands pipe-flange-assembly.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3663,15 +3662,6 @@ description: Artifact commands pipe-flange-assembly.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3710,19 +3700,22 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -3745,6 +3738,13 @@ description: Artifact commands pipe-flange-assembly.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3861,6 +3861,14 @@ description: Artifact commands pipe-flange-assembly.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3872,8 +3880,162 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -3889,30 +4051,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3927,39 +4071,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3974,39 +4091,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4021,18 +4111,10 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4049,39 +4131,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4096,39 +4151,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4143,28 +4171,8 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -4179,33 +4187,6 @@ description: Artifact commands pipe-flange-assembly.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 7.9375, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4235,8 +4216,27 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 7.9375, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -4262,13 +4262,6 @@ description: Artifact commands pipe-flange-assembly.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4277,6 +4270,40 @@ description: Artifact commands pipe-flange-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4286,34 +4313,6 @@ description: Artifact commands pipe-flange-assembly.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4328,9 +4327,10 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4391,13 +4391,6 @@ description: Artifact commands pipe-flange-assembly.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4418,6 +4411,13 @@ description: Artifact commands pipe-flange-assembly.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4538,6 +4538,14 @@ description: Artifact commands pipe-flange-assembly.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4549,8 +4557,162 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -4566,30 +4728,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4604,39 +4748,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4651,39 +4768,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4698,18 +4788,10 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4726,39 +4808,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4773,39 +4828,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4820,28 +4848,8 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -4856,33 +4864,6 @@ description: Artifact commands pipe-flange-assembly.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 7.9375, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4912,8 +4893,27 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 7.9375, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -4939,13 +4939,6 @@ description: Artifact commands pipe-flange-assembly.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4954,6 +4947,40 @@ description: Artifact commands pipe-flange-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4963,34 +4990,6 @@ description: Artifact commands pipe-flange-assembly.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5005,9 +5004,10 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5052,363 +5052,6 @@ description: Artifact commands pipe-flange-assembly.kcl "hide": true } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 30.162499999999998, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 30.162499999999998, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 152.39999999999998, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 25.4, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 25.4, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -152.39999999999998, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.63529414, - "g": 0.30588236, - "b": 0.8156863, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, { "cmdId": "[uuid]", "range": [], @@ -5434,6 +5077,22 @@ description: Artifact commands pipe-flange-assembly.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5454,29 +5113,18 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 30.162499999999998, - "y": 0.0, + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, "z": 0.0 } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -5506,8 +5154,95 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 30.162499999999998, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 30.162499999999998, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 30.162499999999998, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { @@ -5541,7 +5276,11 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 152.39999999999998, + "faces": null, + "opposite": "None" } }, { @@ -5552,6 +5291,82 @@ description: Artifact commands pipe-flange-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5565,26 +5380,7 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -5603,9 +5399,46 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -5624,27 +5457,12 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 25.4, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -5676,8 +5494,91 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 25.4, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 25.4, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 25.4, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -5707,7 +5608,11 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": -152.39999999999998, + "faces": null, + "opposite": "None" } }, { @@ -5718,6 +5623,82 @@ description: Artifact commands pipe-flange-assembly.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -5731,26 +5712,7 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -5769,9 +5731,47 @@ description: Artifact commands pipe-flange-assembly.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.63529414, + "g": 0.30588236, + "b": 0.8156863, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 } }, { diff --git a/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/artifact_graph_flowchart.snap.md index aae694edb..72decd1b4 100644 --- a/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/artifact_graph_flowchart.snap.md @@ -1,746 +1,744 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[595, 688, 10]"] - 3["Segment
[595, 688, 10]"] - 4[Solid2d] - end - subgraph path6 [Path] - 6["Path
[917, 972, 10]"] - 7["Segment
[917, 972, 10]"] - 8[Solid2d] - end - subgraph path15 [Path] - 15["Path
[1202, 1261, 10]"] - 16["Segment
[1202, 1261, 10]"] - 17[Solid2d] - end subgraph path23 [Path] - 23["Path
[1368, 1428, 10]"] - 24["Segment
[1368, 1428, 10]"] - 25[Solid2d] + 23["Path
[422, 484, 9]"] + 46["Segment
[422, 484, 9]"] + 93[Solid2d] + end + subgraph path24 [Path] + 24["Path
[622, 682, 9]"] + 47["Segment
[622, 682, 9]"] + 84[Solid2d] + end + subgraph path25 [Path] + 25["Path
[595, 688, 10]"] + 48["Segment
[595, 688, 10]"] + 88[Solid2d] + end + subgraph path26 [Path] + 26["Path
[595, 688, 10]"] + 49["Segment
[595, 688, 10]"] + 90[Solid2d] + end + subgraph path27 [Path] + 27["Path
[917, 972, 10]"] + 51["Segment
[917, 972, 10]"] + 85[Solid2d] + end + subgraph path28 [Path] + 28["Path
[917, 972, 10]"] + 50["Segment
[917, 972, 10]"] + 100[Solid2d] + end + subgraph path29 [Path] + 29["Path
[1202, 1261, 10]"] + 53["Segment
[1202, 1261, 10]"] + 86[Solid2d] + end + subgraph path30 [Path] + 30["Path
[1202, 1261, 10]"] + 52["Segment
[1202, 1261, 10]"] + 99[Solid2d] end subgraph path31 [Path] - 31["Path
[1590, 1643, 10]"] - 32["Segment
[1590, 1643, 10]"] - 33[Solid2d] + 31["Path
[1368, 1428, 10]"] + 54["Segment
[1368, 1428, 10]"] + 82[Solid2d] end - subgraph path39 [Path] - 39["Path
[595, 688, 10]"] - 40["Segment
[595, 688, 10]"] - 41[Solid2d] - end - subgraph path43 [Path] - 43["Path
[917, 972, 10]"] - 44["Segment
[917, 972, 10]"] - 45[Solid2d] - end - subgraph path52 [Path] - 52["Path
[1202, 1261, 10]"] - 53["Segment
[1202, 1261, 10]"] - 54[Solid2d] - end - subgraph path60 [Path] - 60["Path
[1368, 1428, 10]"] - 61["Segment
[1368, 1428, 10]"] - 62[Solid2d] - end - subgraph path68 [Path] - 68["Path
[1590, 1643, 10]"] - 69["Segment
[1590, 1643, 10]"] - 70[Solid2d] - end - subgraph path76 [Path] - 76["Path
[422, 484, 9]"] - 77["Segment
[422, 484, 9]"] - 78[Solid2d] - end - subgraph path85 [Path] - 85["Path
[622, 682, 9]"] - 86["Segment
[622, 682, 9]"] - 87[Solid2d] - end - subgraph path93 [Path] - 93["Path
[411, 463, 11]"] - 94["Segment
[411, 463, 11]"] + subgraph path32 [Path] + 32["Path
[1368, 1428, 10]"] + 55["Segment
[1368, 1428, 10]"] 95[Solid2d] end - subgraph path102 [Path] - 102["Path
[601, 653, 11]"] - 103["Segment
[601, 653, 11]"] - 104[Solid2d] + subgraph path33 [Path] + 33["Path
[1590, 1643, 10]"] + 56["Segment
[1590, 1643, 10]"] + 81[Solid2d] end - subgraph path110 [Path] - 110["Path
[439, 509, 12]"] - 111["Segment
[439, 509, 12]"] - 112[Solid2d] + subgraph path34 [Path] + 34["Path
[1590, 1643, 10]"] + 57["Segment
[1590, 1643, 10]"] + 98[Solid2d] end - subgraph path121 [Path] - 121["Path
[778, 865, 12]"] - 122["Segment
[873, 924, 12]"] - 123["Segment
[932, 983, 12]"] - 124["Segment
[991, 1042, 12]"] - 125["Segment
[1050, 1100, 12]"] - 126["Segment
[1108, 1158, 12]"] - 127["Segment
[1166, 1173, 12]"] - 128[Solid2d] + subgraph path35 [Path] + 35["Path
[411, 463, 11]"] + 58["Segment
[411, 463, 11]"] + 94[Solid2d] end - subgraph path149 [Path] - 149["Path
[1312, 1381, 12]"] - 150["Segment
[1312, 1381, 12]"] - 151[Solid2d] + subgraph path36 [Path] + 36["Path
[601, 653, 11]"] + 59["Segment
[601, 653, 11]"] + 101[Solid2d] end - subgraph path158 [Path] - 158["Path
[425, 515, 13]"] - 159["Segment
[523, 573, 13]"] - 160["Segment
[581, 631, 13]"] - 161["Segment
[639, 689, 13]"] - 162["Segment
[697, 746, 13]"] - 163["Segment
[754, 803, 13]"] - 164["Segment
[811, 818, 13]"] - 165[Solid2d] + subgraph path37 [Path] + 37["Path
[439, 509, 12]"] + 60["Segment
[439, 509, 12]"] + 92[Solid2d] end - subgraph path187 [Path] - 187["Path
[967, 1019, 13]"] - 188["Segment
[967, 1019, 13]"] - 189[Solid2d] + subgraph path38 [Path] + 38["Path
[778, 865, 12]"] + 61["Segment
[873, 924, 12]"] + 62["Segment
[932, 983, 12]"] + 63["Segment
[991, 1042, 12]"] + 64["Segment
[1050, 1100, 12]"] + 65["Segment
[1108, 1158, 12]"] + 66["Segment
[1166, 1173, 12]"] + 83[Solid2d] end - subgraph path195 [Path] - 195["Path
[325, 383, 14]"] - 196["Segment
[325, 383, 14]"] - 197[Solid2d] + subgraph path39 [Path] + 39["Path
[1312, 1381, 12]"] + 67["Segment
[1312, 1381, 12]"] + 96[Solid2d] end - subgraph path204 [Path] - 204["Path
[527, 582, 14]"] - 205["Segment
[527, 582, 14]"] - 206[Solid2d] + subgraph path40 [Path] + 40["Path
[425, 515, 13]"] + 68["Segment
[523, 573, 13]"] + 69["Segment
[581, 631, 13]"] + 70["Segment
[639, 689, 13]"] + 71["Segment
[697, 746, 13]"] + 72["Segment
[754, 803, 13]"] + 73["Segment
[811, 818, 13]"] + 87[Solid2d] end - subgraph path212 [Path] - 212["Path
[325, 383, 14]"] - 213["Segment
[325, 383, 14]"] - 214[Solid2d] + subgraph path41 [Path] + 41["Path
[967, 1019, 13]"] + 74["Segment
[967, 1019, 13]"] + 97[Solid2d] end - subgraph path221 [Path] - 221["Path
[527, 582, 14]"] - 222["Segment
[527, 582, 14]"] - 223[Solid2d] + subgraph path42 [Path] + 42["Path
[325, 383, 14]"] + 75["Segment
[325, 383, 14]"] + 80[Solid2d] end - 1["Plane
[570, 587, 10]"] + subgraph path43 [Path] + 43["Path
[325, 383, 14]"] + 76["Segment
[325, 383, 14]"] + 91[Solid2d] + end + subgraph path44 [Path] + 44["Path
[527, 582, 14]"] + 78["Segment
[527, 582, 14]"] + 79[Solid2d] + end + subgraph path45 [Path] + 45["Path
[527, 582, 14]"] + 77["Segment
[527, 582, 14]"] + 89[Solid2d] + end + 1["Plane
[399, 416, 9]"] + 2["Plane
[570, 587, 10]"] + 3["Plane
[570, 587, 10]"] + 4["Plane
[892, 909, 10]"] 5["Plane
[892, 909, 10]"] - 9["Sweep Extrusion
[1020, 1060, 10]"] - 10[Wall] - 11["Cap Start"] - 12["Cap End"] - 13["SweepEdge Opposite"] - 14["SweepEdge Adjacent"] - 18["Sweep Extrusion
[1269, 1306, 10]"] - 19[Wall] - 20["Cap End"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 26["Sweep Extrusion
[1436, 1474, 10]"] - 27[Wall] - 28["Cap End"] - 29["SweepEdge Opposite"] - 30["SweepEdge Adjacent"] - 34["Sweep Extrusion
[1651, 1693, 10]"] - 35[Wall] - 36["SweepEdge Opposite"] - 37["SweepEdge Adjacent"] - 38["Plane
[570, 587, 10]"] - 42["Plane
[892, 909, 10]"] - 46["Sweep Extrusion
[1020, 1060, 10]"] - 47[Wall] - 48["Cap Start"] - 49["Cap End"] - 50["SweepEdge Opposite"] - 51["SweepEdge Adjacent"] - 55["Sweep Extrusion
[1269, 1306, 10]"] - 56[Wall] - 57["Cap End"] - 58["SweepEdge Opposite"] - 59["SweepEdge Adjacent"] - 63["Sweep Extrusion
[1436, 1474, 10]"] - 64[Wall] - 65["Cap End"] - 66["SweepEdge Opposite"] - 67["SweepEdge Adjacent"] - 71["Sweep Extrusion
[1651, 1693, 10]"] - 72[Wall] - 73["SweepEdge Opposite"] - 74["SweepEdge Adjacent"] - 75["Plane
[399, 416, 9]"] - 79["Sweep Extrusion
[490, 526, 9]"] - 80[Wall] - 81["Cap Start"] - 82["Cap End"] - 83["SweepEdge Opposite"] - 84["SweepEdge Adjacent"] - 88["Sweep Extrusion
[688, 725, 9]"] - 89[Wall] - 90["SweepEdge Opposite"] - 91["SweepEdge Adjacent"] - 92["Plane
[386, 403, 11]"] - 96["Sweep Extrusion
[471, 504, 11]"] - 97[Wall] - 98["Cap Start"] - 99["Cap End"] - 100["SweepEdge Opposite"] - 101["SweepEdge Adjacent"] - 105["Sweep Extrusion
[661, 698, 11]"] - 106[Wall] - 107["SweepEdge Opposite"] - 108["SweepEdge Adjacent"] - 109["Plane
[414, 431, 12]"] - 113["Sweep Extrusion
[517, 550, 12]"] - 114[Wall] - 115["Cap Start"] - 116["Cap End"] - 117["SweepEdge Opposite"] - 118["SweepEdge Adjacent"] - 119["EdgeCut Fillet
[558, 624, 12]"] - 120["EdgeCut Fillet
[558, 624, 12]"] - 129["Sweep Extrusion
[1181, 1221, 12]"] + 6["Plane
[386, 403, 11]"] + 7["Plane
[414, 431, 12]"] + 8["Plane
[400, 417, 13]"] + 9["Plane
[300, 317, 14]"] + 10["Plane
[300, 317, 14]"] + 11["StartSketchOnFace
[1323, 1360, 10]"] + 12["StartSketchOnFace
[1544, 1582, 10]"] + 13["StartSketchOnFace
[922, 959, 13]"] + 14["StartSketchOnFace
[484, 519, 14]"] + 15["StartSketchOnFace
[1544, 1582, 10]"] + 16["StartSketchOnFace
[1155, 1194, 10]"] + 17["StartSketchOnFace
[733, 770, 12]"] + 18["StartSketchOnFace
[1269, 1304, 12]"] + 19["StartSketchOnFace
[556, 593, 11]"] + 20["StartSketchOnFace
[1155, 1194, 10]"] + 21["StartSketchOnFace
[1323, 1360, 10]"] + 22["StartSketchOnFace
[484, 519, 14]"] + 102["Sweep Extrusion
[490, 526, 9]"] + 103["Sweep Extrusion
[688, 725, 9]"] + 104["Sweep Extrusion
[1020, 1060, 10]"] + 105["Sweep Extrusion
[1020, 1060, 10]"] + 106["Sweep Extrusion
[1269, 1306, 10]"] + 107["Sweep Extrusion
[1269, 1306, 10]"] + 108["Sweep Extrusion
[1436, 1474, 10]"] + 109["Sweep Extrusion
[1436, 1474, 10]"] + 110["Sweep Extrusion
[1651, 1693, 10]"] + 111["Sweep Extrusion
[1651, 1693, 10]"] + 112["Sweep Extrusion
[471, 504, 11]"] + 113["Sweep Extrusion
[661, 698, 11]"] + 114["Sweep Extrusion
[517, 550, 12]"] + 115["Sweep Extrusion
[1181, 1221, 12]"] + 116["Sweep Extrusion
[1389, 1417, 12]"] + 117["Sweep Extrusion
[826, 859, 13]"] + 118["Sweep Extrusion
[1027, 1064, 13]"] + 119["Sweep Extrusion
[391, 422, 14]"] + 120["Sweep Extrusion
[391, 422, 14]"] + 121["Sweep Extrusion
[590, 622, 14]"] + 122["Sweep Extrusion
[590, 622, 14]"] + 123[Wall] + 124[Wall] + 125[Wall] + 126[Wall] + 127[Wall] + 128[Wall] + 129[Wall] 130[Wall] 131[Wall] 132[Wall] 133[Wall] 134[Wall] 135[Wall] - 136["Cap Start"] - 137["SweepEdge Opposite"] - 138["SweepEdge Adjacent"] - 139["SweepEdge Opposite"] - 140["SweepEdge Adjacent"] - 141["SweepEdge Opposite"] - 142["SweepEdge Adjacent"] - 143["SweepEdge Opposite"] - 144["SweepEdge Adjacent"] - 145["SweepEdge Opposite"] - 146["SweepEdge Adjacent"] - 147["SweepEdge Opposite"] - 148["SweepEdge Adjacent"] - 152["Sweep Extrusion
[1389, 1417, 12]"] + 136[Wall] + 137[Wall] + 138[Wall] + 139[Wall] + 140[Wall] + 141[Wall] + 142[Wall] + 143[Wall] + 144[Wall] + 145[Wall] + 146[Wall] + 147[Wall] + 148[Wall] + 149[Wall] + 150[Wall] + 151[Wall] + 152[Wall] 153[Wall] - 154["Cap End"] - 155["SweepEdge Opposite"] - 156["SweepEdge Adjacent"] - 157["Plane
[400, 417, 13]"] - 166["Sweep Extrusion
[826, 859, 13]"] - 167[Wall] - 168[Wall] - 169[Wall] - 170[Wall] - 171[Wall] - 172[Wall] - 173["Cap Start"] + 154["Cap Start"] + 155["Cap Start"] + 156["Cap Start"] + 157["Cap Start"] + 158["Cap Start"] + 159["Cap Start"] + 160["Cap Start"] + 161["Cap Start"] + 162["Cap Start"] + 163["Cap End"] + 164["Cap End"] + 165["Cap End"] + 166["Cap End"] + 167["Cap End"] + 168["Cap End"] + 169["Cap End"] + 170["Cap End"] + 171["Cap End"] + 172["Cap End"] + 173["Cap End"] 174["Cap End"] - 175["SweepEdge Opposite"] - 176["SweepEdge Adjacent"] + 175["Cap End"] + 176["SweepEdge Opposite"] 177["SweepEdge Opposite"] - 178["SweepEdge Adjacent"] + 178["SweepEdge Opposite"] 179["SweepEdge Opposite"] - 180["SweepEdge Adjacent"] + 180["SweepEdge Opposite"] 181["SweepEdge Opposite"] - 182["SweepEdge Adjacent"] + 182["SweepEdge Opposite"] 183["SweepEdge Opposite"] - 184["SweepEdge Adjacent"] + 184["SweepEdge Opposite"] 185["SweepEdge Opposite"] - 186["SweepEdge Adjacent"] - 190["Sweep Extrusion
[1027, 1064, 13]"] - 191[Wall] + 186["SweepEdge Opposite"] + 187["SweepEdge Opposite"] + 188["SweepEdge Opposite"] + 189["SweepEdge Opposite"] + 190["SweepEdge Opposite"] + 191["SweepEdge Opposite"] 192["SweepEdge Opposite"] - 193["SweepEdge Adjacent"] - 194["Plane
[300, 317, 14]"] - 198["Sweep Extrusion
[391, 422, 14]"] - 199[Wall] - 200["Cap Start"] - 201["Cap End"] + 193["SweepEdge Opposite"] + 194["SweepEdge Opposite"] + 195["SweepEdge Opposite"] + 196["SweepEdge Opposite"] + 197["SweepEdge Opposite"] + 198["SweepEdge Opposite"] + 199["SweepEdge Opposite"] + 200["SweepEdge Opposite"] + 201["SweepEdge Opposite"] 202["SweepEdge Opposite"] - 203["SweepEdge Adjacent"] - 207["Sweep Extrusion
[590, 622, 14]"] - 208[Wall] - 209["SweepEdge Opposite"] + 203["SweepEdge Opposite"] + 204["SweepEdge Opposite"] + 205["SweepEdge Opposite"] + 206["SweepEdge Opposite"] + 207["SweepEdge Adjacent"] + 208["SweepEdge Adjacent"] + 209["SweepEdge Adjacent"] 210["SweepEdge Adjacent"] - 211["Plane
[300, 317, 14]"] - 215["Sweep Extrusion
[391, 422, 14]"] - 216[Wall] - 217["Cap Start"] - 218["Cap End"] - 219["SweepEdge Opposite"] + 211["SweepEdge Adjacent"] + 212["SweepEdge Adjacent"] + 213["SweepEdge Adjacent"] + 214["SweepEdge Adjacent"] + 215["SweepEdge Adjacent"] + 216["SweepEdge Adjacent"] + 217["SweepEdge Adjacent"] + 218["SweepEdge Adjacent"] + 219["SweepEdge Adjacent"] 220["SweepEdge Adjacent"] - 224["Sweep Extrusion
[590, 622, 14]"] - 225[Wall] - 226["SweepEdge Opposite"] + 221["SweepEdge Adjacent"] + 222["SweepEdge Adjacent"] + 223["SweepEdge Adjacent"] + 224["SweepEdge Adjacent"] + 225["SweepEdge Adjacent"] + 226["SweepEdge Adjacent"] 227["SweepEdge Adjacent"] - 228["StartSketchOnFace
[1155, 1194, 10]"] - 229["StartSketchOnFace
[1323, 1360, 10]"] - 230["StartSketchOnFace
[1544, 1582, 10]"] - 231["StartSketchOnFace
[1155, 1194, 10]"] - 232["StartSketchOnFace
[1323, 1360, 10]"] - 233["StartSketchOnFace
[1544, 1582, 10]"] - 234["StartSketchOnFace
[579, 616, 9]"] - 235["StartSketchOnFace
[556, 593, 11]"] - 236["StartSketchOnFace
[733, 770, 12]"] - 237["StartSketchOnFace
[1269, 1304, 12]"] - 238["StartSketchOnFace
[922, 959, 13]"] - 239["StartSketchOnFace
[484, 519, 14]"] - 240["StartSketchOnFace
[484, 519, 14]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 5 --- 6 - 6 --- 7 - 6 ---- 9 - 6 --- 8 - 7 --- 10 - 7 --- 13 - 7 --- 14 - 7 x--> 11 - 9 --- 10 - 9 --- 11 - 9 --- 12 - 9 --- 13 - 9 --- 14 - 11 --- 15 - 12 --- 23 - 13 <--x 10 - 13 <--x 12 - 14 <--x 10 - 15 --- 16 - 15 ---- 18 - 15 --- 17 - 16 --- 19 - 16 --- 21 - 16 --- 22 - 16 <--x 11 - 18 --- 19 - 18 --- 20 - 18 --- 21 - 18 --- 22 - 21 <--x 19 - 21 <--x 20 - 22 <--x 19 - 23 --- 24 - 23 ---- 26 - 23 --- 25 - 24 --- 27 - 24 --- 29 - 24 --- 30 - 24 <--x 12 - 26 --- 27 - 26 --- 28 - 26 --- 29 - 26 --- 30 - 28 --- 31 - 29 <--x 27 - 29 <--x 28 - 30 <--x 27 - 31 --- 32 - 31 ---- 34 - 31 --- 33 - 32 --- 35 - 32 --- 36 - 32 --- 37 - 32 <--x 28 - 34 --- 35 - 34 --- 36 - 34 --- 37 - 36 <--x 35 - 36 <--x 20 - 37 <--x 35 - 38 --- 39 - 39 --- 40 - 39 --- 41 - 42 --- 43 - 43 --- 44 - 43 ---- 46 - 43 --- 45 - 44 --- 47 - 44 --- 50 - 44 --- 51 - 44 x--> 48 - 46 --- 47 - 46 --- 48 - 46 --- 49 - 46 --- 50 - 46 --- 51 - 48 --- 52 - 49 --- 60 - 50 <--x 47 - 50 <--x 49 - 51 <--x 47 - 52 --- 53 - 52 ---- 55 - 52 --- 54 - 53 --- 56 - 53 --- 58 - 53 --- 59 - 53 <--x 48 - 55 --- 56 - 55 --- 57 - 55 --- 58 - 55 --- 59 - 58 <--x 56 - 58 <--x 57 - 59 <--x 56 - 60 --- 61 - 60 ---- 63 - 60 --- 62 - 61 --- 64 - 61 --- 66 - 61 --- 67 - 61 <--x 49 - 63 --- 64 - 63 --- 65 - 63 --- 66 - 63 --- 67 - 65 --- 68 - 66 <--x 64 - 66 <--x 65 - 67 <--x 64 - 68 --- 69 - 68 ---- 71 - 68 --- 70 - 69 --- 72 - 69 --- 73 - 69 --- 74 - 69 <--x 65 - 71 --- 72 - 71 --- 73 - 71 --- 74 - 73 <--x 72 - 73 <--x 57 - 74 <--x 72 - 75 --- 76 - 76 --- 77 - 76 ---- 79 - 76 --- 78 - 77 --- 80 - 77 --- 83 - 77 --- 84 - 77 x--> 81 - 79 --- 80 - 79 --- 81 - 79 --- 82 - 79 --- 83 - 79 --- 84 - 82 --- 85 - 83 <--x 80 - 83 <--x 82 - 84 <--x 80 - 85 --- 86 - 85 ---- 88 - 85 --- 87 - 86 --- 89 - 86 --- 90 - 86 --- 91 - 86 <--x 82 - 88 --- 89 - 88 --- 90 - 88 --- 91 - 90 <--x 89 - 90 <--x 81 - 91 <--x 89 - 92 --- 93 - 93 --- 94 - 93 ---- 96 - 93 --- 95 - 94 --- 97 - 94 --- 100 - 94 --- 101 - 94 x--> 98 - 96 --- 97 - 96 --- 98 - 96 --- 99 - 96 --- 100 - 96 --- 101 - 99 --- 102 - 100 <--x 97 - 100 <--x 99 - 101 <--x 97 - 102 --- 103 - 102 ---- 105 - 102 --- 104 - 103 --- 106 - 103 --- 107 - 103 --- 108 - 103 <--x 99 - 105 --- 106 - 105 --- 107 - 105 --- 108 - 107 <--x 106 - 107 <--x 98 - 108 <--x 106 - 109 --- 110 - 110 --- 111 - 110 ---- 113 - 110 --- 112 - 111 --- 114 - 111 --- 117 - 111 --- 118 - 111 --- 119 - 111 x--> 116 - 113 --- 114 - 113 --- 115 - 113 --- 116 - 113 --- 117 - 113 --- 118 - 115 --- 121 - 116 --- 149 - 118 <--x 114 - 117 <--x 120 - 121 --- 122 - 121 --- 123 - 121 --- 124 - 121 --- 125 - 121 --- 126 - 121 --- 127 - 121 ---- 129 - 121 --- 128 - 122 --- 135 - 122 --- 147 - 122 --- 148 - 122 <--x 115 - 123 --- 134 - 123 --- 145 - 123 --- 146 - 123 <--x 115 - 124 --- 133 - 124 --- 143 - 124 --- 144 - 124 <--x 115 - 125 --- 132 - 125 --- 141 - 125 --- 142 - 125 <--x 115 - 126 --- 131 - 126 --- 139 - 126 --- 140 - 126 <--x 115 - 127 --- 130 - 127 --- 137 - 127 --- 138 - 127 <--x 115 - 129 --- 130 - 129 --- 131 - 129 --- 132 - 129 --- 133 - 129 --- 134 - 129 --- 135 - 129 --- 136 - 129 --- 137 - 129 --- 138 - 129 --- 139 - 129 --- 140 - 129 --- 141 - 129 --- 142 - 129 --- 143 - 129 --- 144 - 129 --- 145 - 129 --- 146 - 129 --- 147 - 129 --- 148 - 137 <--x 130 - 137 <--x 136 - 138 <--x 130 - 138 <--x 135 - 139 <--x 131 - 139 <--x 136 - 140 <--x 130 - 140 <--x 131 - 141 <--x 132 - 141 <--x 136 - 142 <--x 131 - 142 <--x 132 - 143 <--x 133 - 143 <--x 136 - 144 <--x 132 - 144 <--x 133 - 145 <--x 134 - 145 <--x 136 - 146 <--x 133 - 146 <--x 134 - 147 <--x 135 - 147 <--x 136 - 148 <--x 134 - 148 <--x 135 - 149 --- 150 - 149 ---- 152 - 149 --- 151 - 150 --- 153 - 150 --- 155 - 150 --- 156 - 150 <--x 116 - 152 --- 153 - 152 --- 154 - 152 --- 155 - 152 --- 156 - 155 <--x 153 - 155 <--x 154 - 156 <--x 153 - 157 --- 158 - 158 --- 159 - 158 --- 160 - 158 --- 161 - 158 --- 162 - 158 --- 163 - 158 --- 164 - 158 ---- 166 - 158 --- 165 - 159 --- 172 - 159 --- 185 - 159 --- 186 - 159 x--> 173 - 160 --- 171 - 160 --- 183 - 160 --- 184 - 160 x--> 173 - 161 --- 170 - 161 --- 181 - 161 --- 182 - 161 x--> 173 - 162 --- 169 - 162 --- 179 - 162 --- 180 - 162 x--> 173 - 163 --- 168 - 163 --- 177 - 163 --- 178 - 163 x--> 173 - 164 --- 167 - 164 --- 175 - 164 --- 176 - 164 x--> 173 - 166 --- 167 - 166 --- 168 - 166 --- 169 - 166 --- 170 - 166 --- 171 - 166 --- 172 - 166 --- 173 - 166 --- 174 - 166 --- 175 - 166 --- 176 - 166 --- 177 - 166 --- 178 - 166 --- 179 - 166 --- 180 - 166 --- 181 - 166 --- 182 - 166 --- 183 - 166 --- 184 - 166 --- 185 - 166 --- 186 - 174 --- 187 - 175 <--x 167 - 175 <--x 174 - 176 <--x 167 - 176 <--x 172 - 177 <--x 168 - 177 <--x 174 - 178 <--x 167 - 178 <--x 168 - 179 <--x 169 - 179 <--x 174 - 180 <--x 168 - 180 <--x 169 - 181 <--x 170 - 181 <--x 174 - 182 <--x 169 - 182 <--x 170 - 183 <--x 171 - 183 <--x 174 - 184 <--x 170 - 184 <--x 171 - 185 <--x 172 - 185 <--x 174 - 186 <--x 171 - 186 <--x 172 - 187 --- 188 - 187 ---- 190 - 187 --- 189 - 188 --- 191 - 188 --- 192 - 188 --- 193 - 188 <--x 174 - 190 --- 191 - 190 --- 192 - 190 --- 193 - 192 <--x 191 - 192 <--x 173 - 193 <--x 191 - 194 --- 195 - 195 --- 196 - 195 ---- 198 - 195 --- 197 - 196 --- 199 - 196 --- 202 - 196 --- 203 - 196 x--> 200 - 198 --- 199 - 198 --- 200 - 198 --- 201 - 198 --- 202 - 198 --- 203 - 201 --- 204 - 202 <--x 199 - 202 <--x 201 - 203 <--x 199 - 204 --- 205 - 204 ---- 207 - 204 --- 206 - 205 --- 208 - 205 --- 209 - 205 --- 210 - 205 <--x 201 - 207 --- 208 - 207 --- 209 - 207 --- 210 - 209 <--x 208 - 209 <--x 200 - 210 <--x 208 - 211 --- 212 - 212 --- 213 - 212 ---- 215 - 212 --- 214 - 213 --- 216 - 213 --- 219 - 213 --- 220 - 213 x--> 217 - 215 --- 216 - 215 --- 217 - 215 --- 218 - 215 --- 219 - 215 --- 220 - 218 --- 221 - 219 <--x 216 - 219 <--x 218 - 220 <--x 216 - 221 --- 222 - 221 ---- 224 - 221 --- 223 - 222 --- 225 - 222 --- 226 - 222 --- 227 - 222 <--x 218 - 224 --- 225 - 224 --- 226 - 224 --- 227 - 226 <--x 225 - 226 <--x 217 - 227 <--x 225 - 11 <--x 228 - 12 <--x 229 - 28 <--x 230 - 48 <--x 231 - 49 <--x 232 - 65 <--x 233 - 82 <--x 234 - 99 <--x 235 - 115 <--x 236 - 116 <--x 237 - 174 <--x 238 - 201 <--x 239 - 218 <--x 240 + 228["SweepEdge Adjacent"] + 229["SweepEdge Adjacent"] + 230["SweepEdge Adjacent"] + 231["SweepEdge Adjacent"] + 232["SweepEdge Adjacent"] + 233["SweepEdge Adjacent"] + 234["SweepEdge Adjacent"] + 235["SweepEdge Adjacent"] + 236["SweepEdge Adjacent"] + 237["SweepEdge Adjacent"] + 238["EdgeCut Fillet
[558, 624, 12]"] + 239["EdgeCut Fillet
[558, 624, 12]"] + 1 --- 23 + 2 --- 25 + 3 --- 26 + 4 --- 28 + 5 --- 27 + 6 --- 35 + 7 --- 37 + 8 --- 40 + 9 --- 42 + 10 --- 43 + 175 x--> 11 + 165 x--> 12 + 170 x--> 13 + 168 x--> 14 + 169 x--> 15 + 162 x--> 16 + 156 x--> 17 + 167 x--> 18 + 164 x--> 19 + 155 x--> 20 + 166 x--> 21 + 171 x--> 22 + 23 --- 46 + 23 --- 93 + 23 ---- 102 + 24 --- 47 + 24 --- 84 + 24 ---- 103 + 174 --- 24 + 25 --- 48 + 25 --- 88 + 26 --- 49 + 26 --- 90 + 27 --- 51 + 27 --- 85 + 27 ---- 104 + 28 --- 50 + 28 --- 100 + 28 ---- 105 + 29 --- 53 + 29 --- 86 + 29 ---- 107 + 155 --- 29 + 30 --- 52 + 30 --- 99 + 30 ---- 106 + 162 --- 30 + 31 --- 54 + 31 --- 82 + 31 ---- 109 + 166 --- 31 + 32 --- 55 + 32 --- 95 + 32 ---- 108 + 175 --- 32 + 33 --- 56 + 33 --- 81 + 33 ---- 110 + 169 --- 33 + 34 --- 57 + 34 --- 98 + 34 ---- 111 + 165 --- 34 + 35 --- 58 + 35 --- 94 + 35 ---- 112 + 36 --- 59 + 36 --- 101 + 36 ---- 113 + 164 --- 36 + 37 --- 60 + 37 --- 92 + 37 ---- 114 + 38 --- 61 + 38 --- 62 + 38 --- 63 + 38 --- 64 + 38 --- 65 + 38 --- 66 + 38 --- 83 + 38 ---- 115 + 156 --- 38 + 39 --- 67 + 39 --- 96 + 39 ---- 116 + 167 --- 39 + 40 --- 68 + 40 --- 69 + 40 --- 70 + 40 --- 71 + 40 --- 72 + 40 --- 73 + 40 --- 87 + 40 ---- 117 + 41 --- 74 + 41 --- 97 + 41 ---- 118 + 170 --- 41 + 42 --- 75 + 42 --- 80 + 42 ---- 120 + 43 --- 76 + 43 --- 91 + 43 ---- 119 + 44 --- 78 + 44 --- 79 + 44 ---- 121 + 168 --- 44 + 45 --- 77 + 45 --- 89 + 45 ---- 122 + 171 --- 45 + 46 --- 152 + 46 x--> 161 + 46 --- 205 + 46 --- 236 + 47 --- 145 + 47 x--> 174 + 47 --- 198 + 47 --- 229 + 50 --- 153 + 50 x--> 162 + 50 --- 206 + 50 --- 237 + 51 --- 127 + 51 x--> 155 + 51 --- 180 + 51 --- 211 + 52 --- 143 + 52 x--> 162 + 52 --- 196 + 52 --- 227 + 53 --- 144 + 53 x--> 155 + 53 --- 197 + 53 --- 228 + 54 --- 134 + 54 x--> 166 + 54 --- 187 + 54 --- 218 + 55 --- 125 + 55 x--> 175 + 55 --- 178 + 55 --- 209 + 56 --- 126 + 56 x--> 169 + 56 --- 179 + 56 --- 210 + 57 --- 142 + 57 x--> 165 + 57 --- 195 + 57 --- 226 + 58 --- 124 + 58 x--> 154 + 58 --- 177 + 58 --- 208 + 59 --- 129 + 59 x--> 164 + 59 --- 182 + 59 --- 213 + 60 --- 128 + 60 x--> 167 + 60 --- 181 + 60 --- 212 + 60 --- 238 + 61 --- 147 + 61 x--> 156 + 61 --- 201 + 61 --- 235 + 62 --- 151 + 62 x--> 156 + 62 --- 202 + 62 --- 232 + 63 --- 150 + 63 x--> 156 + 63 --- 200 + 63 --- 234 + 64 --- 149 + 64 x--> 156 + 64 --- 204 + 64 --- 233 + 65 --- 146 + 65 x--> 156 + 65 --- 199 + 65 --- 231 + 66 --- 148 + 66 x--> 156 + 66 --- 203 + 66 --- 230 + 67 --- 123 + 67 x--> 167 + 67 --- 176 + 67 --- 207 + 68 --- 135 + 68 x--> 158 + 68 --- 189 + 68 --- 223 + 69 --- 138 + 69 x--> 158 + 69 --- 188 + 69 --- 221 + 70 --- 139 + 70 x--> 158 + 70 --- 193 + 70 --- 222 + 71 --- 137 + 71 x--> 158 + 71 --- 190 + 71 --- 224 + 72 --- 136 + 72 x--> 158 + 72 --- 192 + 72 --- 220 + 73 --- 140 + 73 x--> 158 + 73 --- 191 + 73 --- 219 + 74 --- 132 + 74 x--> 170 + 74 --- 185 + 74 --- 216 + 75 --- 141 + 75 x--> 159 + 75 --- 194 + 75 --- 225 + 76 --- 131 + 76 x--> 157 + 76 --- 184 + 76 --- 215 + 77 --- 133 + 77 x--> 171 + 77 --- 186 + 77 --- 217 + 78 --- 130 + 78 x--> 168 + 78 --- 183 + 78 --- 214 + 102 --- 152 + 102 --- 161 + 102 --- 174 + 102 --- 205 + 102 --- 236 + 103 --- 145 + 103 --- 198 + 103 --- 229 + 104 --- 127 + 104 --- 155 + 104 --- 166 + 104 --- 180 + 104 --- 211 + 105 --- 153 + 105 --- 162 + 105 --- 175 + 105 --- 206 + 105 --- 237 + 106 --- 143 + 106 --- 172 + 106 --- 196 + 106 --- 227 + 107 --- 144 + 107 --- 173 + 107 --- 197 + 107 --- 228 + 108 --- 125 + 108 --- 165 + 108 --- 178 + 108 --- 209 + 109 --- 134 + 109 --- 169 + 109 --- 187 + 109 --- 218 + 110 --- 126 + 110 --- 179 + 110 --- 210 + 111 --- 142 + 111 --- 195 + 111 --- 226 + 112 --- 124 + 112 --- 154 + 112 --- 164 + 112 --- 177 + 112 --- 208 + 113 --- 129 + 113 --- 182 + 113 --- 213 + 114 --- 128 + 114 --- 156 + 114 --- 167 + 114 --- 181 + 114 --- 212 + 115 --- 146 + 115 --- 147 + 115 --- 148 + 115 --- 149 + 115 --- 150 + 115 --- 151 + 115 --- 160 + 115 --- 199 + 115 --- 200 + 115 --- 201 + 115 --- 202 + 115 --- 203 + 115 --- 204 + 115 --- 230 + 115 --- 231 + 115 --- 232 + 115 --- 233 + 115 --- 234 + 115 --- 235 + 116 --- 123 + 116 --- 163 + 116 --- 176 + 116 --- 207 + 117 --- 135 + 117 --- 136 + 117 --- 137 + 117 --- 138 + 117 --- 139 + 117 --- 140 + 117 --- 158 + 117 --- 170 + 117 --- 188 + 117 --- 189 + 117 --- 190 + 117 --- 191 + 117 --- 192 + 117 --- 193 + 117 --- 219 + 117 --- 220 + 117 --- 221 + 117 --- 222 + 117 --- 223 + 117 --- 224 + 118 --- 132 + 118 --- 185 + 118 --- 216 + 119 --- 131 + 119 --- 157 + 119 --- 168 + 119 --- 184 + 119 --- 215 + 120 --- 141 + 120 --- 159 + 120 --- 171 + 120 --- 194 + 120 --- 225 + 121 --- 130 + 121 --- 183 + 121 --- 214 + 122 --- 133 + 122 --- 186 + 122 --- 217 + 176 <--x 123 + 207 <--x 123 + 177 <--x 124 + 208 <--x 124 + 178 <--x 125 + 209 <--x 125 + 179 <--x 126 + 210 <--x 126 + 180 <--x 127 + 211 <--x 127 + 212 <--x 128 + 182 <--x 129 + 213 <--x 129 + 183 <--x 130 + 214 <--x 130 + 184 <--x 131 + 215 <--x 131 + 185 <--x 132 + 216 <--x 132 + 186 <--x 133 + 217 <--x 133 + 187 <--x 134 + 218 <--x 134 + 189 <--x 135 + 219 <--x 135 + 223 <--x 135 + 192 <--x 136 + 220 <--x 136 + 224 <--x 136 + 190 <--x 137 + 222 <--x 137 + 224 <--x 137 + 188 <--x 138 + 221 <--x 138 + 223 <--x 138 + 193 <--x 139 + 221 <--x 139 + 222 <--x 139 + 191 <--x 140 + 219 <--x 140 + 220 <--x 140 + 194 <--x 141 + 225 <--x 141 + 195 <--x 142 + 226 <--x 142 + 196 <--x 143 + 227 <--x 143 + 197 <--x 144 + 228 <--x 144 + 198 <--x 145 + 229 <--x 145 + 199 <--x 146 + 231 <--x 146 + 233 <--x 146 + 201 <--x 147 + 230 <--x 147 + 235 <--x 147 + 203 <--x 148 + 230 <--x 148 + 231 <--x 148 + 204 <--x 149 + 233 <--x 149 + 234 <--x 149 + 200 <--x 150 + 232 <--x 150 + 234 <--x 150 + 202 <--x 151 + 232 <--x 151 + 235 <--x 151 + 205 <--x 152 + 236 <--x 152 + 206 <--x 153 + 237 <--x 153 + 182 <--x 154 + 183 <--x 157 + 185 <--x 158 + 186 <--x 159 + 199 <--x 160 + 200 <--x 160 + 201 <--x 160 + 202 <--x 160 + 203 <--x 160 + 204 <--x 160 + 198 <--x 161 + 176 <--x 163 + 177 <--x 164 + 178 <--x 165 + 180 <--x 166 + 184 <--x 168 + 187 <--x 169 + 188 <--x 170 + 189 <--x 170 + 190 <--x 170 + 191 <--x 170 + 192 <--x 170 + 193 <--x 170 + 194 <--x 171 + 195 <--x 172 + 196 <--x 172 + 179 <--x 173 + 197 <--x 173 + 205 <--x 174 + 206 <--x 175 + 181 <--x 239 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/ops.snap b/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/ops.snap index 861ca6cbf..fbb5cad4a 100644 --- a/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/ops.snap @@ -7,30 +7,13 @@ description: Operations executed pipe-flange-assembly.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "flange", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -42,573 +25,6 @@ description: Operations executed pipe-flange-assembly.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.69, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.06, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.25, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "flange", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.69, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.06, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.25, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -618,111 +34,6 @@ description: Operations executed pipe-flange-assembly.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.031, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.031, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -734,111 +45,6 @@ description: Operations executed pipe-flange-assembly.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.032, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.032, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "arcDegrees": { @@ -1117,6 +323,989 @@ description: Operations executed pipe-flange-assembly.kcl }, "sourceRange": [] }, + { + "labeledArgs": { + "arcDegrees": { + "value": { + "type": "Number", + "value": 360.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "axis": { + "value": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "sourceRange": [] + }, + "center": { + "value": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "sourceRange": [] + }, + "instances": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "rotateDuplicates": { + "value": { + "type": "Bool", + "value": false + }, + "sourceRange": [] + } + }, + "name": "patternCircular3d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "hexNut", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "arcDegrees": { + "value": { + "type": "Number", + "value": 360.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "axis": { + "value": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "sourceRange": [] + }, + "center": { + "value": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "sourceRange": [] + }, + "instances": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "rotateDuplicates": { + "value": { + "type": "Bool", + "value": false + }, + "sourceRange": [] + } + }, + "name": "patternCircular3d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pipe", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "pipe", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.69, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.69, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "start" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "start" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.06, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.06, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.25, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.25, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -1.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.032, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": -0.032, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, { "labeledArgs": { "planeOrSolid": { @@ -1323,169 +1512,6 @@ description: Operations executed pipe-flange-assembly.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "arcDegrees": { - "value": { - "type": "Number", - "value": 360.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "axis": { - "value": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "sourceRange": [] - }, - "center": { - "value": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "sourceRange": [] - }, - "instances": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "rotateDuplicates": { - "value": { - "type": "Bool", - "value": false - }, - "sourceRange": [] - } - }, - "name": "patternCircular3d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "hexNut", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -1588,168 +1614,20 @@ description: Operations executed pipe-flange-assembly.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, { "labeledArgs": { - "arcDegrees": { + "planeOrSolid": { "value": { - "type": "Number", - "value": 360.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "axis": { - "value": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "sourceRange": [] - }, - "center": { - "value": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "sourceRange": [] - }, - "instances": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "rotateDuplicates": { - "value": { - "type": "Bool", - "value": false + "type": "Plane", + "artifact_id": "[uuid]" }, "sourceRange": [] } }, - "name": "patternCircular3d", + "name": "startSketchOn", "sourceRange": [], "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pipe", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "unlabeledArg": null }, { "labeledArgs": { @@ -1798,6 +1676,61 @@ description: Operations executed pipe-flange-assembly.kcl "sourceRange": [] } }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 6.0, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "face": { + "value": { + "type": "String", + "value": "end" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, { "labeledArgs": { "face": { @@ -1853,90 +1786,6 @@ description: Operations executed pipe-flange-assembly.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "pipe", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 6.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "labeledArgs": { "length": { @@ -1969,6 +1818,27 @@ description: Operations executed pipe-flange-assembly.kcl "sourceRange": [] } }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/artifact_commands.snap index 13f4b2f81..ed982e3ab 100644 --- a/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/artifact_commands.snap @@ -54,6 +54,14 @@ description: Artifact commands pipe-with-bend.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -70,33 +78,6 @@ description: Artifact commands pipe-with-bend.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 1016.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -122,6 +103,33 @@ description: Artifact commands pipe-with-bend.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 1016.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -146,33 +154,6 @@ description: Artifact commands pipe-with-bend.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 889.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -202,8 +183,36 @@ description: Artifact commands pipe-with-bend.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 889.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true } }, { @@ -219,9 +228,8 @@ description: Artifact commands pipe-with-bend.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -253,8 +261,27 @@ description: Artifact commands pipe-with-bend.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -266,34 +293,6 @@ description: Artifact commands pipe-with-bend.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -308,9 +307,10 @@ description: Artifact commands pipe-with-bend.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/artifact_graph_flowchart.snap.md index d7a19f49f..72790dcae 100644 --- a/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/artifact_graph_flowchart.snap.md @@ -2,12 +2,12 @@ flowchart LR subgraph path2 [Path] 2["Path
[428, 499, 0]"] - 3["Segment
[428, 499, 0]"] - 4[Solid2d] + 4["Segment
[428, 499, 0]"] + 6[Solid2d] end - subgraph path5 [Path] - 5["Path
[559, 630, 0]"] - 6["Segment
[559, 630, 0]"] + subgraph path3 [Path] + 3["Path
[559, 630, 0]"] + 5["Segment
[559, 630, 0]"] 7[Solid2d] end 1["Plane
[351, 368, 0]"] @@ -18,22 +18,22 @@ flowchart LR 12["SweepEdge Opposite"] 13["SweepEdge Adjacent"] 1 --- 2 - 1 --- 5 - 2 --- 3 - 2 ---- 8 + 1 --- 3 2 --- 4 - 3 --- 9 - 3 --- 12 - 3 --- 13 - 3 x--> 10 - 5 --- 6 - 5 --- 7 + 2 --- 6 + 2 ---- 8 + 3 --- 5 + 3 --- 7 + 4 --- 9 + 4 x--> 10 + 4 --- 12 + 4 --- 13 8 --- 9 8 --- 10 8 --- 11 8 --- 12 8 --- 13 12 <--x 9 - 12 <--x 11 13 <--x 9 + 12 <--x 11 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/pipe/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/pipe/artifact_commands.snap index 26f77b45d..17551d75b 100644 --- a/rust/kcl-lib/tests/kcl_samples/pipe/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/pipe/artifact_commands.snap @@ -54,6 +54,14 @@ description: Artifact commands pipe.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -70,33 +78,6 @@ description: Artifact commands pipe.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 30.162499999999998, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -126,8 +107,27 @@ description: Artifact commands pipe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 30.162499999999998, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -157,13 +157,6 @@ description: Artifact commands pipe.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -172,6 +165,40 @@ description: Artifact commands pipe.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -181,34 +208,6 @@ description: Artifact commands pipe.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -223,9 +222,18 @@ description: Artifact commands pipe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -240,33 +248,6 @@ description: Artifact commands pipe.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 25.4, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,8 +277,27 @@ description: Artifact commands pipe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 25.4, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -323,13 +323,6 @@ description: Artifact commands pipe.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -338,6 +331,40 @@ description: Artifact commands pipe.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -347,34 +374,6 @@ description: Artifact commands pipe.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -389,9 +388,10 @@ description: Artifact commands pipe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { diff --git a/rust/kcl-lib/tests/kcl_samples/pipe/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/pipe/artifact_graph_flowchart.snap.md index f5e6429ce..068d4c3cd 100644 --- a/rust/kcl-lib/tests/kcl_samples/pipe/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/pipe/artifact_graph_flowchart.snap.md @@ -1,56 +1,56 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[241, 299, 0]"] - 3["Segment
[241, 299, 0]"] - 4[Solid2d] + subgraph path3 [Path] + 3["Path
[241, 299, 0]"] + 5["Segment
[241, 299, 0]"] + 8[Solid2d] end - subgraph path11 [Path] - 11["Path
[435, 490, 0]"] - 12["Segment
[435, 490, 0]"] - 13[Solid2d] + subgraph path4 [Path] + 4["Path
[435, 490, 0]"] + 6["Segment
[435, 490, 0]"] + 7[Solid2d] end 1["Plane
[218, 235, 0]"] - 5["Sweep Extrusion
[305, 336, 0]"] - 6[Wall] - 7["Cap Start"] - 8["Cap End"] - 9["SweepEdge Opposite"] - 10["SweepEdge Adjacent"] - 14["Sweep Extrusion
[496, 528, 0]"] - 15[Wall] + 2["StartSketchOnFace
[394, 429, 0]"] + 9["Sweep Extrusion
[305, 336, 0]"] + 10["Sweep Extrusion
[496, 528, 0]"] + 11[Wall] + 12[Wall] + 13["Cap Start"] + 14["Cap End"] + 15["SweepEdge Opposite"] 16["SweepEdge Opposite"] 17["SweepEdge Adjacent"] - 18["StartSketchOnFace
[394, 429, 0]"] - 1 --- 2 - 2 --- 3 - 2 ---- 5 - 2 --- 4 - 3 --- 6 - 3 --- 9 - 3 --- 10 - 3 x--> 7 - 5 --- 6 - 5 --- 7 - 5 --- 8 - 5 --- 9 - 5 --- 10 - 8 --- 11 - 9 <--x 6 - 9 <--x 8 - 10 <--x 6 - 11 --- 12 - 11 ---- 14 - 11 --- 13 - 12 --- 15 - 12 --- 16 - 12 --- 17 - 12 <--x 8 - 14 --- 15 - 14 --- 16 - 14 --- 17 - 16 <--x 15 - 16 <--x 7 - 17 <--x 15 - 8 <--x 18 + 18["SweepEdge Adjacent"] + 1 --- 3 + 14 x--> 2 + 3 --- 5 + 3 --- 8 + 3 ---- 9 + 4 --- 6 + 4 --- 7 + 4 ---- 10 + 14 --- 4 + 5 --- 11 + 5 x--> 13 + 5 --- 15 + 5 --- 17 + 6 --- 12 + 6 x--> 14 + 6 --- 16 + 6 --- 18 + 9 --- 11 + 9 --- 13 + 9 --- 14 + 9 --- 15 + 9 --- 17 + 10 --- 12 + 10 --- 16 + 10 --- 18 + 15 <--x 11 + 17 <--x 11 + 16 <--x 12 + 18 <--x 12 + 16 <--x 13 + 15 <--x 14 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/poopy-shoe/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/poopy-shoe/artifact_commands.snap index 93f660989..d44acc7b2 100644 --- a/rust/kcl-lib/tests/kcl_samples/poopy-shoe/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/poopy-shoe/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands poopy-shoe.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands poopy-shoe.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -309,6 +309,14 @@ description: Artifact commands poopy-shoe.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -338,8 +346,351 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -355,30 +706,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -393,39 +726,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -440,39 +746,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -487,39 +766,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -534,39 +786,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -581,39 +806,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -628,18 +826,10 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -656,39 +846,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -703,39 +866,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -750,39 +886,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -797,39 +906,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -844,39 +926,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -887,43 +942,6 @@ description: Artifact commands poopy-shoe.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -938,30 +956,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1003,13 +1003,6 @@ description: Artifact commands poopy-shoe.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1030,6 +1023,13 @@ description: Artifact commands poopy-shoe.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1269,6 +1269,14 @@ description: Artifact commands poopy-shoe.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1280,8 +1288,351 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1297,30 +1648,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1335,39 +1668,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1382,39 +1688,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1429,39 +1708,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1476,39 +1728,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1523,39 +1748,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1570,18 +1768,10 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1598,39 +1788,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1645,39 +1808,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1692,39 +1828,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1739,39 +1848,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1786,39 +1868,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1829,43 +1884,6 @@ description: Artifact commands poopy-shoe.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1880,30 +1898,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1945,13 +1945,6 @@ description: Artifact commands poopy-shoe.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1965,6 +1958,15 @@ description: Artifact commands poopy-shoe.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -1972,6 +1974,13 @@ description: Artifact commands poopy-shoe.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2040,6 +2049,14 @@ description: Artifact commands poopy-shoe.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2051,8 +2068,81 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -2068,30 +2158,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2106,18 +2178,10 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2130,43 +2194,6 @@ description: Artifact commands poopy-shoe.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2181,30 +2208,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2217,13 +2226,6 @@ description: Artifact commands poopy-shoe.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2244,6 +2246,13 @@ description: Artifact commands poopy-shoe.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2462,6 +2471,14 @@ description: Artifact commands poopy-shoe.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2473,8 +2490,324 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -2490,30 +2823,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2528,39 +2843,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2575,39 +2863,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2622,39 +2883,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2669,39 +2903,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2716,39 +2923,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2763,18 +2943,10 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2791,39 +2963,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2838,39 +2983,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2885,39 +3003,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2932,39 +3023,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2975,43 +3039,6 @@ description: Artifact commands poopy-shoe.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3026,30 +3053,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3091,13 +3100,6 @@ description: Artifact commands poopy-shoe.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3111,6 +3113,15 @@ description: Artifact commands poopy-shoe.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -3118,6 +3129,13 @@ description: Artifact commands poopy-shoe.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3238,6 +3256,14 @@ description: Artifact commands poopy-shoe.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3249,8 +3275,162 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -3266,30 +3446,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3304,39 +3466,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3351,39 +3486,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3398,18 +3506,10 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3426,39 +3526,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3469,43 +3542,6 @@ description: Artifact commands poopy-shoe.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3520,30 +3556,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3556,13 +3574,6 @@ description: Artifact commands poopy-shoe.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3583,6 +3594,13 @@ description: Artifact commands poopy-shoe.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3665,6 +3683,14 @@ description: Artifact commands poopy-shoe.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3676,8 +3702,108 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -3693,30 +3819,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3731,39 +3839,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3778,18 +3859,10 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -3802,43 +3875,6 @@ description: Artifact commands poopy-shoe.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3853,30 +3889,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3889,13 +3907,6 @@ description: Artifact commands poopy-shoe.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3916,6 +3927,13 @@ description: Artifact commands poopy-shoe.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3998,6 +4016,14 @@ description: Artifact commands poopy-shoe.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4009,8 +4035,108 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -4026,30 +4152,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4064,39 +4172,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4111,18 +4192,10 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4135,43 +4208,6 @@ description: Artifact commands poopy-shoe.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4186,30 +4222,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4251,13 +4269,6 @@ description: Artifact commands poopy-shoe.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4271,6 +4282,15 @@ description: Artifact commands poopy-shoe.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -4278,6 +4298,13 @@ description: Artifact commands poopy-shoe.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4364,6 +4391,14 @@ description: Artifact commands poopy-shoe.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4375,8 +4410,108 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -4392,30 +4527,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4430,39 +4547,12 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4477,18 +4567,10 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4501,43 +4583,6 @@ description: Artifact commands poopy-shoe.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4552,55 +4597,10 @@ description: Artifact commands poopy-shoe.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/poopy-shoe/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/poopy-shoe/artifact_graph_flowchart.snap.md index a0b2d3509..4e4b70c7d 100644 --- a/rust/kcl-lib/tests/kcl_samples/poopy-shoe/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/poopy-shoe/artifact_graph_flowchart.snap.md @@ -1,1039 +1,1039 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[362, 400, 0]"] - 3["Segment
[406, 439, 0]"] - 4["Segment
[445, 508, 0]"] - 5["Segment
[514, 541, 0]"] - 6["Segment
[547, 577, 0]"] - 7["Segment
[583, 618, 0]"] - 8["Segment
[624, 697, 0]"] - 9["Segment
[703, 733, 0]"] - 10["Segment
[739, 797, 0]"] - 11["Segment
[803, 830, 0]"] - 12["Segment
[836, 858, 0]"] - 13["Segment
[864, 899, 0]"] - 14["Segment
[905, 951, 0]"] - 15["Segment
[957, 964, 0]"] - 16[Solid2d] + subgraph path9 [Path] + 9["Path
[362, 400, 0]"] + 17["Segment
[406, 439, 0]"] + 18["Segment
[445, 508, 0]"] + 19["Segment
[514, 541, 0]"] + 20["Segment
[547, 577, 0]"] + 21["Segment
[583, 618, 0]"] + 22["Segment
[624, 697, 0]"] + 23["Segment
[703, 733, 0]"] + 24["Segment
[739, 797, 0]"] + 25["Segment
[803, 830, 0]"] + 26["Segment
[836, 858, 0]"] + 27["Segment
[864, 899, 0]"] + 28["Segment
[905, 951, 0]"] + 29["Segment
[957, 964, 0]"] + 81[Solid2d] end - subgraph path59 [Path] - 59["Path
[1129, 1167, 0]"] - 60["Segment
[1173, 1206, 0]"] - 61["Segment
[1212, 1275, 0]"] - 62["Segment
[1281, 1308, 0]"] - 63["Segment
[1314, 1344, 0]"] - 64["Segment
[1350, 1385, 0]"] - 65["Segment
[1391, 1464, 0]"] - 66["Segment
[1470, 1500, 0]"] - 67["Segment
[1506, 1564, 0]"] - 68["Segment
[1570, 1597, 0]"] - 69["Segment
[1603, 1625, 0]"] - 70["Segment
[1631, 1666, 0]"] - 71["Segment
[1672, 1718, 0]"] - 72["Segment
[1724, 1731, 0]"] - 73[Solid2d] + subgraph path10 [Path] + 10["Path
[1129, 1167, 0]"] + 30["Segment
[1173, 1206, 0]"] + 31["Segment
[1212, 1275, 0]"] + 32["Segment
[1281, 1308, 0]"] + 33["Segment
[1314, 1344, 0]"] + 34["Segment
[1350, 1385, 0]"] + 35["Segment
[1391, 1464, 0]"] + 36["Segment
[1470, 1500, 0]"] + 37["Segment
[1506, 1564, 0]"] + 38["Segment
[1570, 1597, 0]"] + 39["Segment
[1603, 1625, 0]"] + 40["Segment
[1631, 1666, 0]"] + 41["Segment
[1672, 1718, 0]"] + 42["Segment
[1724, 1731, 0]"] + 79[Solid2d] end - subgraph path117 [Path] - 117["Path
[1995, 2020, 0]"] - 118["Segment
[2026, 2068, 0]"] - 119["Segment
[2074, 2114, 0]"] - 120["Segment
[2120, 2127, 0]"] - 121[Solid2d] + subgraph path11 [Path] + 11["Path
[1995, 2020, 0]"] + 43["Segment
[2026, 2068, 0]"] + 44["Segment
[2074, 2114, 0]"] + 45["Segment
[2120, 2127, 0]"] + 76[Solid2d] end - subgraph path134 [Path] - 134["Path
[2261, 2286, 0]"] - 135["Segment
[2292, 2319, 0]"] - 136["Segment
[2325, 2359, 0]"] - 137["Segment
[2365, 2400, 0]"] - 138["Segment
[2406, 2487, 0]"] - 139["Segment
[2493, 2522, 0]"] - 140["Segment
[2528, 2581, 0]"] - 141["Segment
[2587, 2614, 0]"] - 142["Segment
[2620, 2649, 0]"] - 143["Segment
[2655, 2788, 0]"] - 144["Segment
[2794, 2848, 0]"] - 145["Segment
[2854, 2876, 0]"] - 146["Segment
[2882, 2901, 0]"] - 147[Solid2d] + subgraph path12 [Path] + 12["Path
[2261, 2286, 0]"] + 46["Segment
[2292, 2319, 0]"] + 47["Segment
[2325, 2359, 0]"] + 48["Segment
[2365, 2400, 0]"] + 49["Segment
[2406, 2487, 0]"] + 50["Segment
[2493, 2522, 0]"] + 51["Segment
[2528, 2581, 0]"] + 52["Segment
[2587, 2614, 0]"] + 53["Segment
[2620, 2649, 0]"] + 54["Segment
[2655, 2788, 0]"] + 55["Segment
[2794, 2848, 0]"] + 56["Segment
[2854, 2876, 0]"] + 57["Segment
[2882, 2901, 0]"] + 77[Solid2d] end - subgraph path188 [Path] - 188["Path
[3161, 3186, 0]"] - 189["Segment
[3192, 3219, 0]"] - 190["Segment
[3225, 3257, 0]"] - 191["Segment
[3263, 3403, 0]"] - 192["Segment
[3409, 3464, 0]"] - 193["Segment
[3470, 3506, 0]"] - 194["Segment
[3512, 3519, 0]"] - 195[Solid2d] + subgraph path13 [Path] + 13["Path
[3161, 3186, 0]"] + 58["Segment
[3192, 3219, 0]"] + 59["Segment
[3225, 3257, 0]"] + 60["Segment
[3263, 3403, 0]"] + 61["Segment
[3409, 3464, 0]"] + 62["Segment
[3470, 3506, 0]"] + 63["Segment
[3512, 3519, 0]"] + 78[Solid2d] end - subgraph path217 [Path] - 217["Path
[3614, 3664, 0]"] - 218["Segment
[3670, 3702, 0]"] - 219["Segment
[3708, 3735, 0]"] - 220["Segment
[3741, 3763, 0]"] - 221["Segment
[3769, 3776, 0]"] - 222[Solid2d] + subgraph path14 [Path] + 14["Path
[3614, 3664, 0]"] + 64["Segment
[3670, 3702, 0]"] + 65["Segment
[3708, 3735, 0]"] + 66["Segment
[3741, 3763, 0]"] + 67["Segment
[3769, 3776, 0]"] + 83[Solid2d] end - subgraph path238 [Path] - 238["Path
[3869, 3894, 0]"] - 239["Segment
[3900, 3934, 0]"] - 240["Segment
[3940, 3967, 0]"] - 241["Segment
[3973, 3995, 0]"] - 242["Segment
[4001, 4008, 0]"] - 243[Solid2d] + subgraph path15 [Path] + 15["Path
[3869, 3894, 0]"] + 68["Segment
[3900, 3934, 0]"] + 69["Segment
[3940, 3967, 0]"] + 70["Segment
[3973, 3995, 0]"] + 71["Segment
[4001, 4008, 0]"] + 80[Solid2d] end - subgraph path260 [Path] - 260["Path
[4301, 4350, 0]"] - 261["Segment
[4356, 4388, 0]"] - 262["Segment
[4394, 4442, 0]"] - 263["Segment
[4448, 4482, 0]"] - 264["Segment
[4488, 4495, 0]"] - 265[Solid2d] + subgraph path16 [Path] + 16["Path
[4301, 4350, 0]"] + 72["Segment
[4356, 4388, 0]"] + 73["Segment
[4394, 4442, 0]"] + 74["Segment
[4448, 4482, 0]"] + 75["Segment
[4488, 4495, 0]"] + 82[Solid2d] end 1["Plane
[338, 356, 0]"] - 17["Sweep Revolve
[975, 1091, 0]"] - 18[Wall] - 19[Wall] - 20[Wall] - 21[Wall] - 22[Wall] - 23[Wall] - 24[Wall] - 25[Wall] - 26[Wall] - 27[Wall] - 28[Wall] - 29[Wall] - 30[Wall] - 31["Cap Start"] - 32["SweepEdge Opposite"] - 33["SweepEdge Adjacent"] - 34["SweepEdge Opposite"] - 35["SweepEdge Adjacent"] - 36["SweepEdge Opposite"] - 37["SweepEdge Adjacent"] - 38["SweepEdge Opposite"] - 39["SweepEdge Adjacent"] - 40["SweepEdge Opposite"] - 41["SweepEdge Adjacent"] - 42["SweepEdge Opposite"] - 43["SweepEdge Adjacent"] - 44["SweepEdge Opposite"] - 45["SweepEdge Adjacent"] - 46["SweepEdge Opposite"] - 47["SweepEdge Adjacent"] - 48["SweepEdge Opposite"] - 49["SweepEdge Adjacent"] - 50["SweepEdge Opposite"] - 51["SweepEdge Adjacent"] - 52["SweepEdge Opposite"] - 53["SweepEdge Adjacent"] - 54["SweepEdge Opposite"] - 55["SweepEdge Adjacent"] - 56["SweepEdge Opposite"] - 57["SweepEdge Adjacent"] - 58["Plane
[1105, 1123, 0]"] - 74["Sweep Extrusion
[1737, 1774, 0]"] - 75[Wall] - 76[Wall] - 77[Wall] - 78[Wall] - 79[Wall] - 80[Wall] - 81[Wall] - 82[Wall] - 83[Wall] - 84[Wall] - 85[Wall] - 86[Wall] - 87[Wall] - 88["Cap Start"] - 89["Cap End"] - 90["SweepEdge Opposite"] - 91["SweepEdge Adjacent"] - 92["SweepEdge Opposite"] - 93["SweepEdge Adjacent"] - 94["SweepEdge Opposite"] - 95["SweepEdge Adjacent"] - 96["SweepEdge Opposite"] - 97["SweepEdge Adjacent"] - 98["SweepEdge Opposite"] - 99["SweepEdge Adjacent"] - 100["SweepEdge Opposite"] - 101["SweepEdge Adjacent"] - 102["SweepEdge Opposite"] - 103["SweepEdge Adjacent"] - 104["SweepEdge Opposite"] - 105["SweepEdge Adjacent"] - 106["SweepEdge Opposite"] - 107["SweepEdge Adjacent"] - 108["SweepEdge Opposite"] - 109["SweepEdge Adjacent"] - 110["SweepEdge Opposite"] - 111["SweepEdge Adjacent"] - 112["SweepEdge Opposite"] - 113["SweepEdge Adjacent"] - 114["SweepEdge Opposite"] - 115["SweepEdge Adjacent"] - 116["Plane
[1963, 1989, 0]"] - 122["Sweep Extrusion
[2133, 2164, 0]"] + 2["Plane
[1105, 1123, 0]"] + 3["Plane
[1963, 1989, 0]"] + 4["Plane
[3128, 3155, 0]"] + 5["Plane
[4268, 4295, 0]"] + 6["StartSketchOnFace
[2219, 2255, 0]"] + 7["StartSketchOnFace
[3827, 3863, 0]"] + 8["StartSketchOnFace
[3570, 3608, 0]"] + 84["Sweep Revolve
[975, 1091, 0]"] + 85["Sweep Extrusion
[1737, 1774, 0]"] + 86["Sweep Extrusion
[2133, 2164, 0]"] + 87["Sweep Extrusion
[2907, 2938, 0]"] + 88["Sweep Extrusion
[3525, 3556, 0]"] + 89["Sweep Extrusion
[3782, 3813, 0]"] + 90["Sweep Extrusion
[4014, 4064, 0]"] + 91["Sweep Extrusion
[4501, 4533, 0]"] + 92[Wall] + 93[Wall] + 94[Wall] + 95[Wall] + 96[Wall] + 97[Wall] + 98[Wall] + 99[Wall] + 100[Wall] + 101[Wall] + 102[Wall] + 103[Wall] + 104[Wall] + 105[Wall] + 106[Wall] + 107[Wall] + 108[Wall] + 109[Wall] + 110[Wall] + 111[Wall] + 112[Wall] + 113[Wall] + 114[Wall] + 115[Wall] + 116[Wall] + 117[Wall] + 118[Wall] + 119[Wall] + 120[Wall] + 121[Wall] + 122[Wall] 123[Wall] 124[Wall] 125[Wall] - 126["Cap Start"] - 127["Cap End"] - 128["SweepEdge Opposite"] - 129["SweepEdge Adjacent"] - 130["SweepEdge Opposite"] - 131["SweepEdge Adjacent"] - 132["SweepEdge Opposite"] - 133["SweepEdge Adjacent"] - 148["Sweep Extrusion
[2907, 2938, 0]"] + 126[Wall] + 127[Wall] + 128[Wall] + 129[Wall] + 130[Wall] + 131[Wall] + 132[Wall] + 133[Wall] + 134[Wall] + 135[Wall] + 136[Wall] + 137[Wall] + 138[Wall] + 139[Wall] + 140[Wall] + 141[Wall] + 142[Wall] + 143[Wall] + 144[Wall] + 145[Wall] + 146[Wall] + 147[Wall] + 148[Wall] 149[Wall] 150[Wall] - 151[Wall] - 152[Wall] - 153[Wall] - 154[Wall] - 155[Wall] - 156[Wall] - 157[Wall] - 158[Wall] - 159[Wall] - 160[Wall] - 161["Cap Start"] + 151["Cap Start"] + 152["Cap Start"] + 153["Cap Start"] + 154["Cap Start"] + 155["Cap Start"] + 156["Cap Start"] + 157["Cap Start"] + 158["Cap Start"] + 159["Cap End"] + 160["Cap End"] + 161["Cap End"] 162["Cap End"] - 163["SweepEdge Opposite"] - 164["SweepEdge Adjacent"] - 165["SweepEdge Opposite"] - 166["SweepEdge Adjacent"] + 163["Cap End"] + 164["Cap End"] + 165["Cap End"] + 166["SweepEdge Opposite"] 167["SweepEdge Opposite"] - 168["SweepEdge Adjacent"] + 168["SweepEdge Opposite"] 169["SweepEdge Opposite"] - 170["SweepEdge Adjacent"] + 170["SweepEdge Opposite"] 171["SweepEdge Opposite"] - 172["SweepEdge Adjacent"] + 172["SweepEdge Opposite"] 173["SweepEdge Opposite"] - 174["SweepEdge Adjacent"] + 174["SweepEdge Opposite"] 175["SweepEdge Opposite"] - 176["SweepEdge Adjacent"] + 176["SweepEdge Opposite"] 177["SweepEdge Opposite"] - 178["SweepEdge Adjacent"] + 178["SweepEdge Opposite"] 179["SweepEdge Opposite"] - 180["SweepEdge Adjacent"] + 180["SweepEdge Opposite"] 181["SweepEdge Opposite"] - 182["SweepEdge Adjacent"] + 182["SweepEdge Opposite"] 183["SweepEdge Opposite"] - 184["SweepEdge Adjacent"] + 184["SweepEdge Opposite"] 185["SweepEdge Opposite"] - 186["SweepEdge Adjacent"] - 187["Plane
[3128, 3155, 0]"] - 196["Sweep Extrusion
[3525, 3556, 0]"] - 197[Wall] - 198[Wall] - 199[Wall] - 200[Wall] - 201[Wall] - 202[Wall] - 203["Cap Start"] - 204["Cap End"] + 186["SweepEdge Opposite"] + 187["SweepEdge Opposite"] + 188["SweepEdge Opposite"] + 189["SweepEdge Opposite"] + 190["SweepEdge Opposite"] + 191["SweepEdge Opposite"] + 192["SweepEdge Opposite"] + 193["SweepEdge Opposite"] + 194["SweepEdge Opposite"] + 195["SweepEdge Opposite"] + 196["SweepEdge Opposite"] + 197["SweepEdge Opposite"] + 198["SweepEdge Opposite"] + 199["SweepEdge Opposite"] + 200["SweepEdge Opposite"] + 201["SweepEdge Opposite"] + 202["SweepEdge Opposite"] + 203["SweepEdge Opposite"] + 204["SweepEdge Opposite"] 205["SweepEdge Opposite"] - 206["SweepEdge Adjacent"] + 206["SweepEdge Opposite"] 207["SweepEdge Opposite"] - 208["SweepEdge Adjacent"] + 208["SweepEdge Opposite"] 209["SweepEdge Opposite"] - 210["SweepEdge Adjacent"] + 210["SweepEdge Opposite"] 211["SweepEdge Opposite"] - 212["SweepEdge Adjacent"] + 212["SweepEdge Opposite"] 213["SweepEdge Opposite"] - 214["SweepEdge Adjacent"] + 214["SweepEdge Opposite"] 215["SweepEdge Opposite"] - 216["SweepEdge Adjacent"] - 223["Sweep Extrusion
[3782, 3813, 0]"] - 224[Wall] - 225[Wall] - 226[Wall] - 227[Wall] - 228["Cap Start"] - 229["Cap End"] - 230["SweepEdge Opposite"] + 216["SweepEdge Opposite"] + 217["SweepEdge Opposite"] + 218["SweepEdge Opposite"] + 219["SweepEdge Opposite"] + 220["SweepEdge Opposite"] + 221["SweepEdge Opposite"] + 222["SweepEdge Opposite"] + 223["SweepEdge Opposite"] + 224["SweepEdge Opposite"] + 225["SweepEdge Adjacent"] + 226["SweepEdge Adjacent"] + 227["SweepEdge Adjacent"] + 228["SweepEdge Adjacent"] + 229["SweepEdge Adjacent"] + 230["SweepEdge Adjacent"] 231["SweepEdge Adjacent"] - 232["SweepEdge Opposite"] + 232["SweepEdge Adjacent"] 233["SweepEdge Adjacent"] - 234["SweepEdge Opposite"] + 234["SweepEdge Adjacent"] 235["SweepEdge Adjacent"] - 236["SweepEdge Opposite"] + 236["SweepEdge Adjacent"] 237["SweepEdge Adjacent"] - 244["Sweep Extrusion
[4014, 4064, 0]"] - 245[Wall] - 246[Wall] - 247[Wall] - 248[Wall] - 249["Cap Start"] - 250["Cap End"] - 251["SweepEdge Opposite"] + 238["SweepEdge Adjacent"] + 239["SweepEdge Adjacent"] + 240["SweepEdge Adjacent"] + 241["SweepEdge Adjacent"] + 242["SweepEdge Adjacent"] + 243["SweepEdge Adjacent"] + 244["SweepEdge Adjacent"] + 245["SweepEdge Adjacent"] + 246["SweepEdge Adjacent"] + 247["SweepEdge Adjacent"] + 248["SweepEdge Adjacent"] + 249["SweepEdge Adjacent"] + 250["SweepEdge Adjacent"] + 251["SweepEdge Adjacent"] 252["SweepEdge Adjacent"] - 253["SweepEdge Opposite"] + 253["SweepEdge Adjacent"] 254["SweepEdge Adjacent"] - 255["SweepEdge Opposite"] + 255["SweepEdge Adjacent"] 256["SweepEdge Adjacent"] - 257["SweepEdge Opposite"] + 257["SweepEdge Adjacent"] 258["SweepEdge Adjacent"] - 259["Plane
[4268, 4295, 0]"] - 266["Sweep Extrusion
[4501, 4533, 0]"] - 267[Wall] - 268[Wall] - 269[Wall] - 270[Wall] - 271["Cap Start"] - 272["Cap End"] - 273["SweepEdge Opposite"] + 259["SweepEdge Adjacent"] + 260["SweepEdge Adjacent"] + 261["SweepEdge Adjacent"] + 262["SweepEdge Adjacent"] + 263["SweepEdge Adjacent"] + 264["SweepEdge Adjacent"] + 265["SweepEdge Adjacent"] + 266["SweepEdge Adjacent"] + 267["SweepEdge Adjacent"] + 268["SweepEdge Adjacent"] + 269["SweepEdge Adjacent"] + 270["SweepEdge Adjacent"] + 271["SweepEdge Adjacent"] + 272["SweepEdge Adjacent"] + 273["SweepEdge Adjacent"] 274["SweepEdge Adjacent"] - 275["SweepEdge Opposite"] + 275["SweepEdge Adjacent"] 276["SweepEdge Adjacent"] - 277["SweepEdge Opposite"] + 277["SweepEdge Adjacent"] 278["SweepEdge Adjacent"] - 279["SweepEdge Opposite"] + 279["SweepEdge Adjacent"] 280["SweepEdge Adjacent"] - 281["StartSketchOnFace
[2219, 2255, 0]"] - 282["StartSketchOnFace
[3570, 3608, 0]"] - 283["StartSketchOnFace
[3827, 3863, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 --- 8 - 2 --- 9 + 281["SweepEdge Adjacent"] + 282["SweepEdge Adjacent"] + 283["SweepEdge Adjacent"] + 1 --- 9 2 --- 10 - 2 --- 11 - 2 --- 12 - 2 --- 13 - 2 --- 14 - 2 --- 15 - 2 ---- 17 - 2 --- 16 - 3 --- 18 - 3 --- 32 - 3 --- 33 - 3 x--> 31 - 4 --- 19 - 4 --- 34 - 4 --- 35 - 4 x--> 31 - 5 --- 20 - 5 --- 36 - 5 --- 37 - 5 x--> 31 - 6 --- 21 - 6 --- 38 - 6 --- 39 - 6 x--> 31 - 7 --- 22 - 7 --- 40 - 7 --- 41 - 7 x--> 31 - 8 --- 23 - 8 --- 42 - 8 --- 43 - 8 x--> 31 + 3 --- 11 + 4 --- 13 + 5 --- 16 + 160 x--> 6 + 159 x--> 7 + 142 x--> 8 + 9 --- 17 + 9 --- 18 + 9 --- 19 + 9 --- 20 + 9 --- 21 + 9 --- 22 + 9 --- 23 9 --- 24 - 9 --- 44 - 9 --- 45 - 9 x--> 31 - 10 --- 25 - 10 --- 46 - 10 --- 47 - 10 x--> 31 - 11 --- 26 - 11 --- 48 - 11 --- 49 - 11 x--> 31 - 12 --- 27 + 9 --- 25 + 9 --- 26 + 9 --- 27 + 9 --- 28 + 9 --- 29 + 9 --- 81 + 9 ---- 84 + 10 --- 30 + 10 --- 31 + 10 --- 32 + 10 --- 33 + 10 --- 34 + 10 --- 35 + 10 --- 36 + 10 --- 37 + 10 --- 38 + 10 --- 39 + 10 --- 40 + 10 --- 41 + 10 --- 42 + 10 --- 79 + 10 ---- 85 + 11 --- 43 + 11 --- 44 + 11 --- 45 + 11 --- 76 + 11 ---- 86 + 12 --- 46 + 12 --- 47 + 12 --- 48 + 12 --- 49 12 --- 50 12 --- 51 - 12 x--> 31 - 13 --- 28 - 13 --- 52 - 13 --- 53 - 13 x--> 31 - 14 --- 29 - 14 --- 54 - 14 --- 55 - 14 x--> 31 - 15 --- 30 - 15 --- 56 - 15 --- 57 - 15 x--> 31 - 17 --- 18 - 17 --- 19 - 17 --- 20 - 17 --- 21 - 17 --- 22 - 17 --- 23 - 17 --- 24 - 17 --- 25 - 17 --- 26 - 17 --- 27 - 17 --- 28 - 17 --- 29 - 17 --- 30 - 17 --- 31 - 17 --- 32 - 17 --- 33 - 17 --- 34 - 17 --- 35 - 17 --- 36 - 17 --- 37 - 17 --- 38 - 17 --- 39 - 17 --- 40 - 17 --- 41 - 17 --- 42 - 17 --- 43 - 17 --- 44 - 17 --- 45 - 17 --- 46 - 17 --- 47 - 17 --- 48 - 17 --- 49 - 17 --- 50 - 17 --- 51 - 17 --- 52 - 17 --- 53 - 17 --- 54 - 17 --- 55 - 17 --- 56 - 17 --- 57 - 32 <--x 18 - 33 <--x 18 - 33 <--x 19 - 34 <--x 19 - 35 <--x 19 - 35 <--x 20 - 36 <--x 20 - 37 <--x 20 - 37 <--x 21 - 38 <--x 21 - 39 <--x 21 - 39 <--x 22 - 40 <--x 22 - 41 <--x 22 - 41 <--x 23 - 42 <--x 23 - 43 <--x 23 - 43 <--x 24 - 44 <--x 24 - 45 <--x 24 - 45 <--x 25 - 46 <--x 25 - 47 <--x 25 - 47 <--x 26 - 48 <--x 26 - 49 <--x 26 - 49 <--x 27 - 50 <--x 27 - 51 <--x 27 - 51 <--x 28 - 52 <--x 28 - 53 <--x 28 - 53 <--x 29 - 54 <--x 29 - 55 <--x 29 - 55 <--x 30 - 56 <--x 30 - 57 <--x 30 - 57 <--x 18 - 58 --- 59 - 59 --- 60 - 59 --- 61 - 59 --- 62 - 59 --- 63 - 59 --- 64 - 59 --- 65 - 59 --- 66 - 59 --- 67 - 59 --- 68 - 59 --- 69 - 59 --- 70 - 59 --- 71 - 59 --- 72 - 59 ---- 74 - 59 --- 73 - 60 --- 75 - 60 --- 90 - 60 --- 91 - 60 x--> 88 - 61 --- 76 - 61 --- 92 - 61 --- 93 - 61 x--> 88 - 62 --- 77 - 62 --- 94 - 62 --- 95 - 62 x--> 88 - 63 --- 78 - 63 --- 96 - 63 --- 97 - 63 x--> 88 - 64 --- 79 - 64 --- 98 - 64 --- 99 - 64 x--> 88 - 65 --- 80 - 65 --- 100 - 65 --- 101 - 65 x--> 88 - 66 --- 81 - 66 --- 102 - 66 --- 103 - 66 x--> 88 - 67 --- 82 - 67 --- 104 - 67 --- 105 - 67 x--> 88 - 68 --- 83 - 68 --- 106 - 68 --- 107 - 68 x--> 88 - 69 --- 84 - 69 --- 108 - 69 --- 109 - 69 x--> 88 - 70 --- 85 - 70 --- 110 - 70 --- 111 - 70 x--> 88 - 71 --- 86 - 71 --- 112 - 71 --- 113 - 71 x--> 88 - 72 --- 87 - 72 --- 114 - 72 --- 115 - 72 x--> 88 - 74 --- 75 - 74 --- 76 - 74 --- 77 - 74 --- 78 - 74 --- 79 - 74 --- 80 - 74 --- 81 - 74 --- 82 - 74 --- 83 - 74 --- 84 - 74 --- 85 - 74 --- 86 - 74 --- 87 - 74 --- 88 - 74 --- 89 - 74 --- 90 - 74 --- 91 - 74 --- 92 - 74 --- 93 - 74 --- 94 - 74 --- 95 - 74 --- 96 - 74 --- 97 - 74 --- 98 - 74 --- 99 - 74 --- 100 - 74 --- 101 - 74 --- 102 - 74 --- 103 - 74 --- 104 - 74 --- 105 - 74 --- 106 - 74 --- 107 - 74 --- 108 - 74 --- 109 - 74 --- 110 - 74 --- 111 - 74 --- 112 - 74 --- 113 - 74 --- 114 - 74 --- 115 - 89 --- 134 - 90 <--x 75 - 90 <--x 89 - 91 <--x 75 - 91 <--x 76 - 92 <--x 76 - 92 <--x 89 - 93 <--x 76 - 93 <--x 77 - 94 <--x 77 - 94 <--x 89 - 95 <--x 77 - 95 <--x 78 - 96 <--x 78 - 96 <--x 89 - 97 <--x 78 - 97 <--x 79 - 98 <--x 79 - 98 <--x 89 - 99 <--x 79 - 99 <--x 80 - 100 <--x 80 - 100 <--x 89 - 101 <--x 80 - 101 <--x 81 - 102 <--x 81 - 102 <--x 89 - 103 <--x 81 - 103 <--x 82 - 104 <--x 82 - 104 <--x 89 - 105 <--x 82 - 105 <--x 83 - 106 <--x 83 - 106 <--x 89 - 107 <--x 83 - 107 <--x 84 - 108 <--x 84 - 108 <--x 89 - 109 <--x 84 - 109 <--x 85 - 110 <--x 85 - 110 <--x 89 - 111 <--x 85 - 111 <--x 86 - 112 <--x 86 - 112 <--x 89 - 113 <--x 86 - 113 <--x 87 - 114 <--x 87 - 114 <--x 89 - 115 <--x 75 - 115 <--x 87 - 116 --- 117 - 117 --- 118 - 117 --- 119 - 117 --- 120 - 117 ---- 122 - 117 --- 121 - 118 --- 125 - 118 --- 132 - 118 --- 133 - 118 x--> 126 - 119 --- 124 - 119 --- 130 - 119 --- 131 - 119 x--> 126 - 120 --- 123 - 120 --- 128 - 120 --- 129 - 120 x--> 126 - 122 --- 123 - 122 --- 124 - 122 --- 125 - 122 --- 126 - 122 --- 127 - 122 --- 128 - 122 --- 129 - 122 --- 130 - 122 --- 131 - 122 --- 132 - 122 --- 133 - 128 <--x 123 - 128 <--x 127 - 129 <--x 123 - 129 <--x 125 - 130 <--x 124 - 130 <--x 127 - 131 <--x 123 - 131 <--x 124 - 132 <--x 125 - 132 <--x 127 - 133 <--x 124 - 133 <--x 125 - 134 --- 135 - 134 --- 136 - 134 --- 137 - 134 --- 138 - 134 --- 139 - 134 --- 140 - 134 --- 141 - 134 --- 142 - 134 --- 143 - 134 --- 144 - 134 --- 145 - 134 --- 146 - 134 ---- 148 - 134 --- 147 - 135 --- 160 - 135 --- 185 - 135 --- 186 - 135 x--> 161 - 136 --- 159 - 136 --- 183 - 136 --- 184 - 136 x--> 161 - 137 --- 158 - 137 --- 181 - 137 --- 182 - 137 x--> 161 - 138 --- 157 - 138 --- 179 - 138 --- 180 - 138 x--> 161 - 139 --- 156 - 139 --- 177 - 139 --- 178 - 139 x--> 161 - 140 --- 155 - 140 --- 175 - 140 --- 176 - 140 x--> 161 - 141 --- 154 - 141 --- 173 - 141 --- 174 - 141 x--> 161 - 142 --- 153 - 142 --- 171 - 142 --- 172 - 142 x--> 161 - 143 --- 152 - 143 --- 169 - 143 --- 170 - 143 x--> 161 - 144 --- 151 - 144 --- 167 - 144 --- 168 - 144 x--> 161 - 145 --- 150 - 145 --- 165 - 145 --- 166 - 145 x--> 161 - 146 --- 149 - 146 --- 163 - 146 --- 164 - 146 x--> 161 - 148 --- 149 - 148 --- 150 - 148 --- 151 - 148 --- 152 - 148 --- 153 - 148 --- 154 - 148 --- 155 - 148 --- 156 - 148 --- 157 - 148 --- 158 - 148 --- 159 - 148 --- 160 - 148 --- 161 - 148 --- 162 - 148 --- 163 - 148 --- 164 - 148 --- 165 - 148 --- 166 - 148 --- 167 - 148 --- 168 - 148 --- 169 - 148 --- 170 - 148 --- 171 - 148 --- 172 - 148 --- 173 - 148 --- 174 - 148 --- 175 - 148 --- 176 - 148 --- 177 - 148 --- 178 - 148 --- 179 - 148 --- 180 - 148 --- 181 - 148 --- 182 - 148 --- 183 - 148 --- 184 - 148 --- 185 - 148 --- 186 - 162 --- 238 - 163 <--x 149 - 163 <--x 162 - 164 <--x 149 - 164 <--x 160 - 165 <--x 150 - 165 <--x 162 - 166 <--x 149 - 166 <--x 150 - 167 <--x 151 - 167 <--x 162 - 168 <--x 150 - 168 <--x 151 - 169 <--x 152 - 169 <--x 162 - 170 <--x 151 - 170 <--x 152 - 171 <--x 153 - 171 <--x 162 - 172 <--x 152 - 172 <--x 153 - 173 <--x 154 - 173 <--x 162 - 174 <--x 153 - 174 <--x 154 - 175 <--x 155 - 175 <--x 162 - 176 <--x 154 - 176 <--x 155 - 177 <--x 156 - 177 <--x 162 - 178 <--x 155 - 178 <--x 156 - 179 <--x 157 - 179 <--x 162 - 180 <--x 156 - 180 <--x 157 - 181 <--x 158 - 181 <--x 162 - 182 <--x 157 - 182 <--x 158 - 183 <--x 159 - 183 <--x 162 - 184 <--x 158 - 184 <--x 159 - 185 <--x 160 - 185 <--x 162 - 186 <--x 159 - 186 <--x 160 - 187 --- 188 - 188 --- 189 - 188 --- 190 - 188 --- 191 - 188 --- 192 - 188 --- 193 - 188 --- 194 - 188 ---- 196 - 188 --- 195 - 189 --- 197 - 189 --- 205 - 189 --- 206 - 189 x--> 203 - 190 --- 198 - 190 --- 207 - 190 --- 208 - 190 x--> 203 - 191 --- 199 - 191 --- 209 - 191 --- 210 - 191 x--> 203 - 192 --- 200 - 192 --- 211 - 192 --- 212 - 192 x--> 203 - 193 --- 201 - 193 --- 213 - 193 --- 214 - 193 x--> 203 - 194 --- 202 - 194 --- 215 - 194 --- 216 - 194 x--> 203 - 196 --- 197 - 196 --- 198 - 196 --- 199 - 196 --- 200 - 196 --- 201 - 196 --- 202 - 196 --- 203 - 196 --- 204 - 196 --- 205 - 196 --- 206 - 196 --- 207 - 196 --- 208 - 196 --- 209 - 196 --- 210 - 196 --- 211 - 196 --- 212 - 196 --- 213 - 196 --- 214 - 196 --- 215 - 196 --- 216 - 201 --- 217 - 205 <--x 197 - 205 <--x 204 - 206 <--x 197 - 206 <--x 198 - 207 <--x 198 - 207 <--x 204 - 208 <--x 198 - 208 <--x 199 - 209 <--x 199 - 209 <--x 204 - 210 <--x 199 - 210 <--x 200 - 211 <--x 200 - 211 <--x 204 - 212 <--x 200 - 212 <--x 201 - 213 <--x 201 - 213 <--x 204 - 214 <--x 201 - 214 <--x 202 - 215 <--x 202 - 215 <--x 204 - 216 <--x 197 - 216 <--x 202 - 217 --- 218 - 217 --- 219 - 217 --- 220 - 217 --- 221 - 217 ---- 223 - 217 --- 222 - 218 --- 224 - 218 --- 230 - 218 --- 231 - 218 x--> 228 - 219 --- 225 - 219 --- 232 - 219 --- 233 - 219 x--> 228 - 220 --- 226 - 220 --- 234 - 220 --- 235 - 220 x--> 228 - 221 --- 227 - 221 --- 236 - 221 --- 237 - 221 x--> 228 - 223 --- 224 - 223 --- 225 - 223 --- 226 - 223 --- 227 - 223 --- 228 - 223 --- 229 - 223 --- 230 - 223 --- 231 - 223 --- 232 - 223 --- 233 - 223 --- 234 - 223 --- 235 - 223 --- 236 - 223 --- 237 - 230 <--x 224 - 230 <--x 229 - 231 <--x 224 - 231 <--x 225 - 232 <--x 225 - 232 <--x 229 - 233 <--x 225 - 233 <--x 226 - 234 <--x 226 - 234 <--x 229 - 235 <--x 226 - 235 <--x 227 - 236 <--x 227 - 236 <--x 229 - 237 <--x 224 - 237 <--x 227 - 238 --- 239 - 238 --- 240 - 238 --- 241 - 238 --- 242 - 238 ---- 244 - 238 --- 243 - 239 --- 245 - 239 --- 251 - 239 --- 252 - 239 x--> 249 - 240 --- 246 - 240 --- 253 - 240 --- 254 - 240 x--> 249 - 241 --- 247 - 241 --- 255 - 241 --- 256 - 241 x--> 249 - 242 --- 248 - 242 --- 257 - 242 --- 258 - 242 x--> 249 - 244 --- 245 - 244 --- 246 - 244 --- 247 - 244 --- 248 - 244 --- 249 - 244 --- 250 - 244 --- 251 - 244 --- 252 - 244 --- 253 - 244 --- 254 - 244 --- 255 - 244 --- 256 - 244 --- 257 - 244 --- 258 - 251 <--x 245 - 251 <--x 250 - 252 <--x 245 - 252 <--x 246 - 253 <--x 246 - 253 <--x 250 - 254 <--x 246 - 254 <--x 247 - 255 <--x 247 - 255 <--x 250 - 256 <--x 247 - 256 <--x 248 - 257 <--x 248 - 257 <--x 250 - 258 <--x 245 - 258 <--x 248 - 259 --- 260 - 260 --- 261 - 260 --- 262 - 260 --- 263 - 260 --- 264 - 260 ---- 266 - 260 --- 265 - 261 --- 267 - 261 --- 273 - 261 --- 274 - 261 x--> 272 - 262 --- 268 - 262 --- 275 - 262 --- 276 - 262 x--> 272 - 263 --- 269 - 263 --- 277 - 263 --- 278 - 263 x--> 272 - 264 --- 270 - 264 --- 279 - 264 --- 280 - 264 x--> 272 - 266 --- 267 - 266 --- 268 - 266 --- 269 - 266 --- 270 - 266 --- 271 - 266 --- 272 - 266 --- 273 - 266 --- 274 - 266 --- 275 - 266 --- 276 - 266 --- 277 - 266 --- 278 - 266 --- 279 - 266 --- 280 - 273 <--x 267 - 273 <--x 271 - 274 <--x 267 - 274 <--x 268 - 275 <--x 268 - 275 <--x 271 - 276 <--x 268 - 276 <--x 269 - 277 <--x 269 - 277 <--x 271 - 278 <--x 269 - 278 <--x 270 - 279 <--x 270 - 279 <--x 271 - 280 <--x 267 - 280 <--x 270 - 89 <--x 281 - 201 <--x 282 - 162 <--x 283 + 12 --- 52 + 12 --- 53 + 12 --- 54 + 12 --- 55 + 12 --- 56 + 12 --- 57 + 12 --- 77 + 12 ---- 87 + 160 --- 12 + 13 --- 58 + 13 --- 59 + 13 --- 60 + 13 --- 61 + 13 --- 62 + 13 --- 63 + 13 --- 78 + 13 ---- 88 + 14 --- 64 + 14 --- 65 + 14 --- 66 + 14 --- 67 + 14 --- 83 + 14 ---- 89 + 142 --- 14 + 15 --- 68 + 15 --- 69 + 15 --- 70 + 15 --- 71 + 15 --- 80 + 15 ---- 90 + 159 --- 15 + 16 --- 72 + 16 --- 73 + 16 --- 74 + 16 --- 75 + 16 --- 82 + 16 ---- 91 + 17 --- 110 + 17 x--> 152 + 17 --- 189 + 17 --- 240 + 18 --- 109 + 18 x--> 152 + 18 --- 182 + 18 --- 244 + 19 --- 111 + 19 x--> 152 + 19 --- 188 + 19 --- 239 + 20 --- 107 + 20 x--> 152 + 20 --- 183 + 20 --- 241 + 21 --- 106 + 21 x--> 152 + 21 --- 181 + 21 --- 247 + 22 --- 113 + 22 x--> 152 + 22 --- 187 + 22 --- 246 + 23 --- 115 + 23 x--> 152 + 23 --- 179 + 23 --- 243 + 24 --- 114 + 24 x--> 152 + 24 --- 186 + 24 --- 249 + 25 --- 104 + 25 x--> 152 + 25 --- 184 + 25 --- 248 + 26 --- 105 + 26 x--> 152 + 26 --- 185 + 26 --- 237 + 27 --- 116 + 27 x--> 152 + 27 --- 178 + 27 --- 245 + 28 --- 112 + 28 x--> 152 + 28 --- 190 + 28 --- 238 + 29 --- 108 + 29 x--> 152 + 29 --- 180 + 29 --- 242 + 30 --- 124 + 30 x--> 153 + 30 --- 201 + 30 --- 260 + 31 --- 123 + 31 x--> 153 + 31 --- 198 + 31 --- 259 + 32 --- 119 + 32 x--> 153 + 32 --- 202 + 32 --- 252 + 33 --- 120 + 33 x--> 153 + 33 --- 192 + 33 --- 256 + 34 --- 118 + 34 x--> 153 + 34 --- 196 + 34 --- 253 + 35 --- 128 + 35 x--> 153 + 35 --- 197 + 35 --- 254 + 36 --- 121 + 36 x--> 153 + 36 --- 203 + 36 --- 250 + 37 --- 127 + 37 x--> 153 + 37 --- 194 + 37 --- 262 + 38 --- 129 + 38 x--> 153 + 38 --- 193 + 38 --- 255 + 39 --- 125 + 39 x--> 153 + 39 --- 195 + 39 --- 261 + 40 --- 117 + 40 x--> 153 + 40 --- 191 + 40 --- 257 + 41 --- 122 + 41 x--> 153 + 41 --- 199 + 41 --- 251 + 42 --- 126 + 42 x--> 153 + 42 --- 200 + 42 --- 258 + 43 --- 131 + 43 x--> 154 + 43 --- 205 + 43 --- 264 + 44 --- 130 + 44 x--> 154 + 44 --- 204 + 44 --- 265 + 45 --- 132 + 45 x--> 154 + 45 --- 206 + 45 --- 263 + 46 --- 93 + 46 x--> 151 + 46 --- 170 + 46 --- 229 + 47 --- 101 + 47 x--> 151 + 47 --- 172 + 47 --- 233 + 48 --- 98 + 48 x--> 151 + 48 --- 168 + 48 --- 227 + 49 --- 99 + 49 x--> 151 + 49 --- 171 + 49 --- 225 + 50 --- 95 + 50 x--> 151 + 50 --- 177 + 50 --- 231 + 51 --- 103 + 51 x--> 151 + 51 --- 175 + 51 --- 232 + 52 --- 100 + 52 x--> 151 + 52 --- 169 + 52 --- 236 + 53 --- 96 + 53 x--> 151 + 53 --- 167 + 53 --- 228 + 54 --- 92 + 54 x--> 151 + 54 --- 173 + 54 --- 234 + 55 --- 102 + 55 x--> 151 + 55 --- 166 + 55 --- 226 + 56 --- 97 + 56 x--> 151 + 56 --- 174 + 56 --- 235 + 57 --- 94 + 57 x--> 151 + 57 --- 176 + 57 --- 230 + 58 --- 139 + 58 x--> 156 + 58 --- 216 + 58 --- 272 + 59 --- 137 + 59 x--> 156 + 59 --- 211 + 59 --- 275 + 60 --- 140 + 60 x--> 156 + 60 --- 212 + 60 --- 273 + 61 --- 141 + 61 x--> 156 + 61 --- 214 + 61 --- 270 + 62 --- 142 + 62 x--> 156 + 62 --- 215 + 62 --- 271 + 63 --- 138 + 63 x--> 156 + 63 --- 213 + 63 --- 274 + 64 --- 146 + 64 x--> 157 + 64 --- 220 + 64 --- 278 + 65 --- 145 + 65 x--> 157 + 65 --- 219 + 65 --- 279 + 66 --- 143 + 66 x--> 157 + 66 --- 217 + 66 --- 276 + 67 --- 144 + 67 x--> 157 + 67 --- 218 + 67 --- 277 + 68 --- 134 + 68 x--> 155 + 68 --- 208 + 68 --- 266 + 69 --- 133 + 69 x--> 155 + 69 --- 209 + 69 --- 267 + 70 --- 135 + 70 x--> 155 + 70 --- 210 + 70 --- 268 + 71 --- 136 + 71 x--> 155 + 71 --- 207 + 71 --- 269 + 72 --- 150 + 72 x--> 165 + 72 --- 224 + 72 --- 280 + 73 --- 147 + 73 x--> 165 + 73 --- 222 + 73 --- 282 + 74 --- 149 + 74 x--> 165 + 74 --- 223 + 74 --- 283 + 75 --- 148 + 75 x--> 165 + 75 --- 221 + 75 --- 281 + 84 --- 104 + 84 --- 105 + 84 --- 106 + 84 --- 107 + 84 --- 108 + 84 --- 109 + 84 --- 110 + 84 --- 111 + 84 --- 112 + 84 --- 113 + 84 --- 114 + 84 --- 115 + 84 --- 116 + 84 --- 152 + 84 --- 178 + 84 --- 179 + 84 --- 180 + 84 --- 181 + 84 --- 182 + 84 --- 183 + 84 --- 184 + 84 --- 185 + 84 --- 186 + 84 --- 187 + 84 --- 188 + 84 --- 189 + 84 --- 190 + 84 --- 237 + 84 --- 238 + 84 --- 239 + 84 --- 240 + 84 --- 241 + 84 --- 242 + 84 --- 243 + 84 --- 244 + 84 --- 245 + 84 --- 246 + 84 --- 247 + 84 --- 248 + 84 --- 249 + 85 --- 117 + 85 --- 118 + 85 --- 119 + 85 --- 120 + 85 --- 121 + 85 --- 122 + 85 --- 123 + 85 --- 124 + 85 --- 125 + 85 --- 126 + 85 --- 127 + 85 --- 128 + 85 --- 129 + 85 --- 153 + 85 --- 160 + 85 --- 191 + 85 --- 192 + 85 --- 193 + 85 --- 194 + 85 --- 195 + 85 --- 196 + 85 --- 197 + 85 --- 198 + 85 --- 199 + 85 --- 200 + 85 --- 201 + 85 --- 202 + 85 --- 203 + 85 --- 250 + 85 --- 251 + 85 --- 252 + 85 --- 253 + 85 --- 254 + 85 --- 255 + 85 --- 256 + 85 --- 257 + 85 --- 258 + 85 --- 259 + 85 --- 260 + 85 --- 261 + 85 --- 262 + 86 --- 130 + 86 --- 131 + 86 --- 132 + 86 --- 154 + 86 --- 161 + 86 --- 204 + 86 --- 205 + 86 --- 206 + 86 --- 263 + 86 --- 264 + 86 --- 265 + 87 --- 92 + 87 --- 93 + 87 --- 94 + 87 --- 95 + 87 --- 96 + 87 --- 97 + 87 --- 98 + 87 --- 99 + 87 --- 100 + 87 --- 101 + 87 --- 102 + 87 --- 103 + 87 --- 151 + 87 --- 159 + 87 --- 166 + 87 --- 167 + 87 --- 168 + 87 --- 169 + 87 --- 170 + 87 --- 171 + 87 --- 172 + 87 --- 173 + 87 --- 174 + 87 --- 175 + 87 --- 176 + 87 --- 177 + 87 --- 225 + 87 --- 226 + 87 --- 227 + 87 --- 228 + 87 --- 229 + 87 --- 230 + 87 --- 231 + 87 --- 232 + 87 --- 233 + 87 --- 234 + 87 --- 235 + 87 --- 236 + 88 --- 137 + 88 --- 138 + 88 --- 139 + 88 --- 140 + 88 --- 141 + 88 --- 142 + 88 --- 156 + 88 --- 163 + 88 --- 211 + 88 --- 212 + 88 --- 213 + 88 --- 214 + 88 --- 215 + 88 --- 216 + 88 --- 270 + 88 --- 271 + 88 --- 272 + 88 --- 273 + 88 --- 274 + 88 --- 275 + 89 --- 143 + 89 --- 144 + 89 --- 145 + 89 --- 146 + 89 --- 157 + 89 --- 164 + 89 --- 217 + 89 --- 218 + 89 --- 219 + 89 --- 220 + 89 --- 276 + 89 --- 277 + 89 --- 278 + 89 --- 279 + 90 --- 133 + 90 --- 134 + 90 --- 135 + 90 --- 136 + 90 --- 155 + 90 --- 162 + 90 --- 207 + 90 --- 208 + 90 --- 209 + 90 --- 210 + 90 --- 266 + 90 --- 267 + 90 --- 268 + 90 --- 269 + 91 --- 147 + 91 --- 148 + 91 --- 149 + 91 --- 150 + 91 --- 158 + 91 --- 165 + 91 --- 221 + 91 --- 222 + 91 --- 223 + 91 --- 224 + 91 --- 280 + 91 --- 281 + 91 --- 282 + 91 --- 283 + 173 <--x 92 + 228 <--x 92 + 234 <--x 92 + 170 <--x 93 + 229 <--x 93 + 230 <--x 93 + 176 <--x 94 + 230 <--x 94 + 235 <--x 94 + 177 <--x 95 + 225 <--x 95 + 231 <--x 95 + 167 <--x 96 + 228 <--x 96 + 236 <--x 96 + 174 <--x 97 + 226 <--x 97 + 235 <--x 97 + 168 <--x 98 + 227 <--x 98 + 233 <--x 98 + 171 <--x 99 + 225 <--x 99 + 227 <--x 99 + 169 <--x 100 + 232 <--x 100 + 236 <--x 100 + 172 <--x 101 + 229 <--x 101 + 233 <--x 101 + 166 <--x 102 + 226 <--x 102 + 234 <--x 102 + 175 <--x 103 + 231 <--x 103 + 232 <--x 103 + 184 <--x 104 + 248 <--x 104 + 249 <--x 104 + 185 <--x 105 + 237 <--x 105 + 248 <--x 105 + 181 <--x 106 + 241 <--x 106 + 247 <--x 106 + 183 <--x 107 + 239 <--x 107 + 241 <--x 107 + 180 <--x 108 + 238 <--x 108 + 242 <--x 108 + 182 <--x 109 + 240 <--x 109 + 244 <--x 109 + 189 <--x 110 + 240 <--x 110 + 242 <--x 110 + 188 <--x 111 + 239 <--x 111 + 244 <--x 111 + 190 <--x 112 + 238 <--x 112 + 245 <--x 112 + 187 <--x 113 + 246 <--x 113 + 247 <--x 113 + 186 <--x 114 + 243 <--x 114 + 249 <--x 114 + 179 <--x 115 + 243 <--x 115 + 246 <--x 115 + 178 <--x 116 + 237 <--x 116 + 245 <--x 116 + 191 <--x 117 + 257 <--x 117 + 261 <--x 117 + 196 <--x 118 + 253 <--x 118 + 256 <--x 118 + 202 <--x 119 + 252 <--x 119 + 259 <--x 119 + 192 <--x 120 + 252 <--x 120 + 256 <--x 120 + 203 <--x 121 + 250 <--x 121 + 254 <--x 121 + 199 <--x 122 + 251 <--x 122 + 257 <--x 122 + 198 <--x 123 + 259 <--x 123 + 260 <--x 123 + 201 <--x 124 + 258 <--x 124 + 260 <--x 124 + 195 <--x 125 + 255 <--x 125 + 261 <--x 125 + 200 <--x 126 + 251 <--x 126 + 258 <--x 126 + 194 <--x 127 + 250 <--x 127 + 262 <--x 127 + 197 <--x 128 + 253 <--x 128 + 254 <--x 128 + 193 <--x 129 + 255 <--x 129 + 262 <--x 129 + 204 <--x 130 + 264 <--x 130 + 265 <--x 130 + 205 <--x 131 + 263 <--x 131 + 264 <--x 131 + 206 <--x 132 + 263 <--x 132 + 265 <--x 132 + 209 <--x 133 + 266 <--x 133 + 267 <--x 133 + 208 <--x 134 + 266 <--x 134 + 269 <--x 134 + 210 <--x 135 + 267 <--x 135 + 268 <--x 135 + 207 <--x 136 + 268 <--x 136 + 269 <--x 136 + 211 <--x 137 + 272 <--x 137 + 275 <--x 137 + 213 <--x 138 + 271 <--x 138 + 274 <--x 138 + 216 <--x 139 + 272 <--x 139 + 274 <--x 139 + 212 <--x 140 + 273 <--x 140 + 275 <--x 140 + 214 <--x 141 + 270 <--x 141 + 273 <--x 141 + 215 <--x 142 + 270 <--x 142 + 271 <--x 142 + 217 <--x 143 + 276 <--x 143 + 279 <--x 143 + 218 <--x 144 + 276 <--x 144 + 277 <--x 144 + 219 <--x 145 + 278 <--x 145 + 279 <--x 145 + 220 <--x 146 + 277 <--x 146 + 278 <--x 146 + 222 <--x 147 + 280 <--x 147 + 282 <--x 147 + 221 <--x 148 + 281 <--x 148 + 283 <--x 148 + 223 <--x 149 + 282 <--x 149 + 283 <--x 149 + 224 <--x 150 + 280 <--x 150 + 281 <--x 150 + 221 <--x 158 + 222 <--x 158 + 223 <--x 158 + 224 <--x 158 + 166 <--x 159 + 167 <--x 159 + 168 <--x 159 + 169 <--x 159 + 170 <--x 159 + 171 <--x 159 + 172 <--x 159 + 173 <--x 159 + 174 <--x 159 + 175 <--x 159 + 176 <--x 159 + 177 <--x 159 + 191 <--x 160 + 192 <--x 160 + 193 <--x 160 + 194 <--x 160 + 195 <--x 160 + 196 <--x 160 + 197 <--x 160 + 198 <--x 160 + 199 <--x 160 + 200 <--x 160 + 201 <--x 160 + 202 <--x 160 + 203 <--x 160 + 204 <--x 161 + 205 <--x 161 + 206 <--x 161 + 207 <--x 162 + 208 <--x 162 + 209 <--x 162 + 210 <--x 162 + 211 <--x 163 + 212 <--x 163 + 213 <--x 163 + 214 <--x 163 + 215 <--x 163 + 216 <--x 163 + 217 <--x 164 + 218 <--x 164 + 219 <--x 164 + 220 <--x 164 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/router-template-cross-bar/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/router-template-cross-bar/artifact_commands.snap index e479738aa..657a4c709 100644 --- a/rust/kcl-lib/tests/kcl_samples/router-template-cross-bar/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/router-template-cross-bar/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands router-template-cross-bar.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands router-template-cross-bar.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -488,6 +488,14 @@ description: Artifact commands router-template-cross-bar.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -499,8 +507,513 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -516,30 +1029,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -554,39 +1049,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -601,39 +1069,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -648,39 +1089,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -695,39 +1109,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -742,39 +1129,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -789,39 +1149,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -836,39 +1169,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -883,39 +1189,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -930,18 +1209,10 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -958,39 +1229,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1005,39 +1249,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1052,39 +1269,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1099,39 +1289,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1146,39 +1309,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1193,39 +1329,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1240,39 +1349,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1287,39 +1369,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1330,43 +1385,6 @@ description: Artifact commands router-template-cross-bar.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1381,30 +1399,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1417,13 +1417,6 @@ description: Artifact commands router-template-cross-bar.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1444,6 +1437,13 @@ description: Artifact commands router-template-cross-bar.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1543,6 +1543,14 @@ description: Artifact commands router-template-cross-bar.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1554,8 +1562,108 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1571,30 +1679,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1609,39 +1699,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1656,18 +1719,10 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1680,43 +1735,6 @@ description: Artifact commands router-template-cross-bar.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1731,30 +1749,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1767,13 +1767,6 @@ description: Artifact commands router-template-cross-bar.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1794,6 +1787,13 @@ description: Artifact commands router-template-cross-bar.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1893,6 +1893,14 @@ description: Artifact commands router-template-cross-bar.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1904,8 +1912,108 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1921,30 +2029,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1959,39 +2049,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2006,18 +2069,10 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2030,43 +2085,6 @@ description: Artifact commands router-template-cross-bar.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2081,30 +2099,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2117,13 +2117,6 @@ description: Artifact commands router-template-cross-bar.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2144,6 +2137,13 @@ description: Artifact commands router-template-cross-bar.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2243,6 +2243,14 @@ description: Artifact commands router-template-cross-bar.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2254,8 +2262,108 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -2271,30 +2379,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2309,39 +2399,12 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2356,18 +2419,10 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2380,43 +2435,6 @@ description: Artifact commands router-template-cross-bar.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2431,28 +2449,10 @@ description: Artifact commands router-template-cross-bar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/router-template-cross-bar/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/router-template-cross-bar/artifact_graph_flowchart.snap.md index 4d312f123..22de0fdaa 100644 --- a/rust/kcl-lib/tests/kcl_samples/router-template-cross-bar/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/router-template-cross-bar/artifact_graph_flowchart.snap.md @@ -1,564 +1,564 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[540, 583, 0]"] - 3["Segment
[589, 642, 0]"] - 4["Segment
[648, 759, 0]"] - 5["Segment
[765, 818, 0]"] - 6["Segment
[824, 871, 0]"] - 7["Segment
[877, 973, 0]"] - 8["Segment
[979, 1050, 0]"] - 9["Segment
[1056, 1107, 0]"] - 10["Segment
[1113, 1166, 0]"] - 11["Segment
[1172, 1241, 0]"] - 12["Segment
[1247, 1283, 0]"] - 13["Segment
[1289, 1319, 0]"] - 14["Segment
[1325, 1355, 0]"] - 15["Segment
[1361, 1391, 0]"] - 16["Segment
[1397, 1427, 0]"] - 17["Segment
[1433, 1462, 0]"] - 18["Segment
[1468, 1498, 0]"] - 19["Segment
[1504, 1533, 0]"] - 20["Segment
[1539, 1568, 0]"] - 21["Segment
[1574, 1637, 0]"] - 22["Segment
[1643, 1699, 0]"] - 23["Segment
[1705, 1712, 0]"] - 24[Solid2d] + subgraph path5 [Path] + 5["Path
[540, 583, 0]"] + 9["Segment
[589, 642, 0]"] + 10["Segment
[648, 759, 0]"] + 11["Segment
[765, 818, 0]"] + 12["Segment
[824, 871, 0]"] + 13["Segment
[877, 973, 0]"] + 14["Segment
[979, 1050, 0]"] + 15["Segment
[1056, 1107, 0]"] + 16["Segment
[1113, 1166, 0]"] + 17["Segment
[1172, 1241, 0]"] + 18["Segment
[1247, 1283, 0]"] + 19["Segment
[1289, 1319, 0]"] + 20["Segment
[1325, 1355, 0]"] + 21["Segment
[1361, 1391, 0]"] + 22["Segment
[1397, 1427, 0]"] + 23["Segment
[1433, 1462, 0]"] + 24["Segment
[1468, 1498, 0]"] + 25["Segment
[1504, 1533, 0]"] + 26["Segment
[1539, 1568, 0]"] + 27["Segment
[1574, 1637, 0]"] + 28["Segment
[1643, 1699, 0]"] + 29["Segment
[1705, 1712, 0]"] + 47[Solid2d] end - subgraph path85 [Path] - 85["Path
[1872, 1916, 0]"] - 86["Segment
[1922, 2002, 0]"] - 87["Segment
[2008, 2118, 0]"] - 88["Segment
[2124, 2241, 0]"] - 89["Segment
[2247, 2303, 0]"] - 90["Segment
[2309, 2316, 0]"] - 91[Solid2d] + subgraph path6 [Path] + 6["Path
[1872, 1916, 0]"] + 30["Segment
[1922, 2002, 0]"] + 31["Segment
[2008, 2118, 0]"] + 32["Segment
[2124, 2241, 0]"] + 33["Segment
[2247, 2303, 0]"] + 34["Segment
[2309, 2316, 0]"] + 45[Solid2d] end - subgraph path107 [Path] - 107["Path
[2477, 2522, 0]"] - 108["Segment
[2528, 2606, 0]"] - 109["Segment
[2612, 2722, 0]"] - 110["Segment
[2728, 2845, 0]"] - 111["Segment
[2851, 2907, 0]"] - 112["Segment
[2913, 2920, 0]"] - 113[Solid2d] + subgraph path7 [Path] + 7["Path
[2477, 2522, 0]"] + 35["Segment
[2528, 2606, 0]"] + 36["Segment
[2612, 2722, 0]"] + 37["Segment
[2728, 2845, 0]"] + 38["Segment
[2851, 2907, 0]"] + 39["Segment
[2913, 2920, 0]"] + 46[Solid2d] end - subgraph path129 [Path] - 129["Path
[3079, 3124, 0]"] - 130["Segment
[3130, 3215, 0]"] - 131["Segment
[3221, 3331, 0]"] - 132["Segment
[3337, 3454, 0]"] - 133["Segment
[3460, 3516, 0]"] - 134["Segment
[3522, 3529, 0]"] - 135[Solid2d] + subgraph path8 [Path] + 8["Path
[3079, 3124, 0]"] + 40["Segment
[3130, 3215, 0]"] + 41["Segment
[3221, 3331, 0]"] + 42["Segment
[3337, 3454, 0]"] + 43["Segment
[3460, 3516, 0]"] + 44["Segment
[3522, 3529, 0]"] + 48[Solid2d] end 1["Plane
[517, 534, 0]"] - 25["Sweep Extrusion
[1755, 1785, 0]"] - 26[Wall] - 27[Wall] - 28[Wall] - 29[Wall] - 30[Wall] - 31[Wall] - 32[Wall] - 33[Wall] - 34[Wall] - 35[Wall] - 36[Wall] - 37[Wall] - 38[Wall] - 39[Wall] - 40[Wall] - 41[Wall] - 42[Wall] - 43[Wall] - 44[Wall] - 45["Cap Start"] - 46["Cap End"] - 47["SweepEdge Opposite"] - 48["SweepEdge Adjacent"] - 49["SweepEdge Opposite"] - 50["SweepEdge Adjacent"] - 51["SweepEdge Opposite"] - 52["SweepEdge Adjacent"] - 53["SweepEdge Opposite"] - 54["SweepEdge Adjacent"] - 55["SweepEdge Opposite"] - 56["SweepEdge Adjacent"] - 57["SweepEdge Opposite"] - 58["SweepEdge Adjacent"] - 59["SweepEdge Opposite"] - 60["SweepEdge Adjacent"] - 61["SweepEdge Opposite"] - 62["SweepEdge Adjacent"] - 63["SweepEdge Opposite"] - 64["SweepEdge Adjacent"] - 65["SweepEdge Opposite"] - 66["SweepEdge Adjacent"] - 67["SweepEdge Opposite"] - 68["SweepEdge Adjacent"] - 69["SweepEdge Opposite"] - 70["SweepEdge Adjacent"] - 71["SweepEdge Opposite"] - 72["SweepEdge Adjacent"] - 73["SweepEdge Opposite"] - 74["SweepEdge Adjacent"] - 75["SweepEdge Opposite"] - 76["SweepEdge Adjacent"] - 77["SweepEdge Opposite"] - 78["SweepEdge Adjacent"] - 79["SweepEdge Opposite"] - 80["SweepEdge Adjacent"] - 81["SweepEdge Opposite"] - 82["SweepEdge Adjacent"] - 83["SweepEdge Opposite"] - 84["SweepEdge Adjacent"] - 92["Sweep Extrusion
[2360, 2391, 0]"] - 93[Wall] - 94[Wall] - 95[Wall] - 96[Wall] - 97["Cap Start"] - 98["Cap End"] + 2["StartSketchOnFace
[2432, 2471, 0]"] + 3["StartSketchOnFace
[1827, 1866, 0]"] + 4["StartSketchOnFace
[3036, 3073, 0]"] + 49["Sweep Extrusion
[1755, 1785, 0]"] + 50["Sweep Extrusion
[2360, 2391, 0]"] + 51["Sweep Extrusion
[2963, 2994, 0]"] + 52["Sweep Extrusion
[3573, 3603, 0]"] + 53[Wall] + 54[Wall] + 55[Wall] + 56[Wall] + 57[Wall] + 58[Wall] + 59[Wall] + 60[Wall] + 61[Wall] + 62[Wall] + 63[Wall] + 64[Wall] + 65[Wall] + 66[Wall] + 67[Wall] + 68[Wall] + 69[Wall] + 70[Wall] + 71[Wall] + 72[Wall] + 73[Wall] + 74[Wall] + 75[Wall] + 76[Wall] + 77[Wall] + 78[Wall] + 79[Wall] + 80[Wall] + 81[Wall] + 82[Wall] + 83[Wall] + 84["Cap Start"] + 85["Cap Start"] + 86["Cap Start"] + 87["Cap Start"] + 88["Cap End"] + 89["Cap End"] + 90["Cap End"] + 91["Cap End"] + 92["SweepEdge Opposite"] + 93["SweepEdge Opposite"] + 94["SweepEdge Opposite"] + 95["SweepEdge Opposite"] + 96["SweepEdge Opposite"] + 97["SweepEdge Opposite"] + 98["SweepEdge Opposite"] 99["SweepEdge Opposite"] - 100["SweepEdge Adjacent"] + 100["SweepEdge Opposite"] 101["SweepEdge Opposite"] - 102["SweepEdge Adjacent"] + 102["SweepEdge Opposite"] 103["SweepEdge Opposite"] - 104["SweepEdge Adjacent"] + 104["SweepEdge Opposite"] 105["SweepEdge Opposite"] - 106["SweepEdge Adjacent"] - 114["Sweep Extrusion
[2963, 2994, 0]"] - 115[Wall] - 116[Wall] - 117[Wall] - 118[Wall] - 119["Cap Start"] - 120["Cap End"] + 106["SweepEdge Opposite"] + 107["SweepEdge Opposite"] + 108["SweepEdge Opposite"] + 109["SweepEdge Opposite"] + 110["SweepEdge Opposite"] + 111["SweepEdge Opposite"] + 112["SweepEdge Opposite"] + 113["SweepEdge Opposite"] + 114["SweepEdge Opposite"] + 115["SweepEdge Opposite"] + 116["SweepEdge Opposite"] + 117["SweepEdge Opposite"] + 118["SweepEdge Opposite"] + 119["SweepEdge Opposite"] + 120["SweepEdge Opposite"] 121["SweepEdge Opposite"] - 122["SweepEdge Adjacent"] - 123["SweepEdge Opposite"] + 122["SweepEdge Opposite"] + 123["SweepEdge Adjacent"] 124["SweepEdge Adjacent"] - 125["SweepEdge Opposite"] + 125["SweepEdge Adjacent"] 126["SweepEdge Adjacent"] - 127["SweepEdge Opposite"] + 127["SweepEdge Adjacent"] 128["SweepEdge Adjacent"] - 136["Sweep Extrusion
[3573, 3603, 0]"] - 137[Wall] - 138[Wall] - 139[Wall] - 140[Wall] - 141["Cap Start"] - 142["Cap End"] - 143["SweepEdge Opposite"] + 129["SweepEdge Adjacent"] + 130["SweepEdge Adjacent"] + 131["SweepEdge Adjacent"] + 132["SweepEdge Adjacent"] + 133["SweepEdge Adjacent"] + 134["SweepEdge Adjacent"] + 135["SweepEdge Adjacent"] + 136["SweepEdge Adjacent"] + 137["SweepEdge Adjacent"] + 138["SweepEdge Adjacent"] + 139["SweepEdge Adjacent"] + 140["SweepEdge Adjacent"] + 141["SweepEdge Adjacent"] + 142["SweepEdge Adjacent"] + 143["SweepEdge Adjacent"] 144["SweepEdge Adjacent"] - 145["SweepEdge Opposite"] + 145["SweepEdge Adjacent"] 146["SweepEdge Adjacent"] - 147["SweepEdge Opposite"] + 147["SweepEdge Adjacent"] 148["SweepEdge Adjacent"] - 149["SweepEdge Opposite"] + 149["SweepEdge Adjacent"] 150["SweepEdge Adjacent"] - 151["StartSketchOnFace
[1827, 1866, 0]"] - 152["StartSketchOnFace
[2432, 2471, 0]"] - 153["StartSketchOnFace
[3036, 3073, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 --- 8 - 2 --- 9 - 2 --- 10 - 2 --- 11 - 2 --- 12 - 2 --- 13 - 2 --- 14 - 2 --- 15 - 2 --- 16 - 2 --- 17 - 2 --- 18 - 2 --- 19 - 2 --- 20 - 2 --- 21 - 2 --- 22 - 2 --- 23 - 2 ---- 25 - 2 --- 24 - 3 --- 26 - 3 --- 47 - 3 --- 48 - 3 x--> 45 - 4 --- 27 - 4 --- 49 - 4 --- 50 - 4 x--> 45 + 151["SweepEdge Adjacent"] + 152["SweepEdge Adjacent"] + 153["SweepEdge Adjacent"] + 1 --- 5 + 85 x--> 2 + 85 x--> 3 + 90 x--> 4 + 5 --- 9 + 5 --- 10 + 5 --- 11 + 5 --- 12 + 5 --- 13 + 5 --- 14 + 5 --- 15 + 5 --- 16 + 5 --- 17 + 5 --- 18 + 5 --- 19 + 5 --- 20 + 5 --- 21 + 5 --- 22 + 5 --- 23 + 5 --- 24 + 5 --- 25 + 5 --- 26 + 5 --- 27 5 --- 28 - 5 --- 51 - 5 --- 52 - 5 x--> 45 - 6 --- 29 - 6 --- 53 - 6 --- 54 - 6 x--> 45 - 7 --- 30 - 7 --- 55 - 7 --- 56 - 7 x--> 45 - 8 --- 31 - 8 --- 57 - 8 --- 58 - 8 x--> 45 - 9 --- 32 - 9 --- 59 - 9 --- 60 - 9 x--> 45 - 10 --- 33 - 10 --- 61 - 10 --- 62 - 10 x--> 45 - 11 --- 34 - 11 --- 63 + 5 --- 29 + 5 --- 47 + 5 ---- 49 + 6 --- 30 + 6 --- 31 + 6 --- 32 + 6 --- 33 + 6 --- 34 + 6 --- 45 + 6 ---- 50 + 85 --- 6 + 7 --- 35 + 7 --- 36 + 7 --- 37 + 7 --- 38 + 7 --- 39 + 7 --- 46 + 7 ---- 51 + 85 --- 7 + 8 --- 40 + 8 --- 41 + 8 --- 42 + 8 --- 43 + 8 --- 44 + 8 --- 48 + 8 ---- 52 + 90 --- 8 + 9 --- 71 + 9 x--> 85 + 9 --- 96 + 9 --- 144 + 10 --- 65 + 10 x--> 85 + 10 --- 104 + 10 --- 139 11 --- 64 - 11 x--> 45 - 12 --- 35 - 12 --- 65 - 12 --- 66 - 12 x--> 45 - 14 --- 36 - 14 --- 67 - 14 --- 68 - 14 x--> 45 - 15 --- 37 - 15 --- 69 + 11 x--> 85 + 11 --- 106 + 11 --- 134 + 12 --- 67 + 12 x--> 85 + 12 --- 100 + 12 --- 143 + 13 --- 62 + 13 x--> 85 + 13 --- 109 + 13 --- 128 + 14 --- 61 + 14 x--> 85 + 14 --- 105 + 14 --- 142 15 --- 70 - 15 x--> 45 - 16 --- 38 - 16 --- 71 - 16 --- 72 - 16 x--> 45 - 17 --- 39 + 15 x--> 85 + 15 --- 103 + 15 --- 140 + 16 --- 74 + 16 x--> 85 + 16 --- 108 + 16 --- 141 17 --- 73 - 17 --- 74 - 17 x--> 45 - 18 --- 40 - 18 --- 75 - 18 --- 76 - 18 x--> 45 - 19 --- 41 - 19 --- 77 - 19 --- 78 - 19 x--> 45 - 20 --- 42 - 20 --- 79 - 20 --- 80 - 20 x--> 45 - 21 --- 43 - 21 --- 81 - 21 --- 82 - 21 x--> 45 - 22 --- 44 - 22 --- 83 - 22 --- 84 - 22 x--> 45 - 25 --- 26 - 25 --- 27 - 25 --- 28 - 25 --- 29 - 25 --- 30 - 25 --- 31 - 25 --- 32 - 25 --- 33 - 25 --- 34 - 25 --- 35 - 25 --- 36 - 25 --- 37 - 25 --- 38 - 25 --- 39 - 25 --- 40 - 25 --- 41 - 25 --- 42 - 25 --- 43 - 25 --- 44 - 25 --- 45 - 25 --- 46 - 25 --- 47 - 25 --- 48 - 25 --- 49 - 25 --- 50 - 25 --- 51 - 25 --- 52 - 25 --- 53 - 25 --- 54 - 25 --- 55 - 25 --- 56 - 25 --- 57 - 25 --- 58 + 17 x--> 85 + 17 --- 101 + 17 --- 127 + 18 --- 60 + 18 x--> 85 + 18 --- 110 + 18 --- 145 + 20 --- 75 + 20 x--> 85 + 20 --- 102 + 20 --- 131 + 21 --- 68 + 21 x--> 85 + 21 --- 99 + 21 --- 135 + 22 --- 63 + 22 x--> 85 + 22 --- 113 + 22 --- 132 + 23 --- 58 + 23 x--> 85 + 23 --- 97 + 23 --- 129 + 24 --- 69 + 24 x--> 85 + 24 --- 112 + 24 --- 136 25 --- 59 - 25 --- 60 - 25 --- 61 - 25 --- 62 - 25 --- 63 - 25 --- 64 - 25 --- 65 - 25 --- 66 - 25 --- 67 - 25 --- 68 - 25 --- 69 - 25 --- 70 - 25 --- 71 - 25 --- 72 - 25 --- 73 - 25 --- 74 - 25 --- 75 - 25 --- 76 - 25 --- 77 - 25 --- 78 - 25 --- 79 - 25 --- 80 - 25 --- 81 - 25 --- 82 - 25 --- 83 - 25 --- 84 - 45 --- 85 - 45 --- 107 - 47 <--x 26 - 47 <--x 46 - 48 <--x 26 - 48 <--x 27 - 49 <--x 27 - 49 <--x 46 - 50 <--x 27 - 50 <--x 28 - 51 <--x 28 - 51 <--x 46 - 52 <--x 28 - 52 <--x 29 - 53 <--x 29 - 53 <--x 46 - 54 <--x 29 - 54 <--x 30 - 55 <--x 30 - 55 <--x 46 - 56 <--x 30 - 56 <--x 31 - 57 <--x 31 - 57 <--x 46 - 58 <--x 31 - 58 <--x 32 - 59 <--x 32 - 59 <--x 46 - 60 <--x 32 - 60 <--x 33 - 61 <--x 33 - 61 <--x 46 - 62 <--x 33 - 62 <--x 34 - 63 <--x 34 - 63 <--x 46 - 64 <--x 34 - 64 <--x 35 - 65 <--x 35 - 65 <--x 46 - 66 <--x 35 - 66 <--x 36 - 67 <--x 36 - 67 <--x 46 - 68 <--x 36 - 68 <--x 37 - 69 <--x 37 - 69 <--x 46 - 70 <--x 37 - 70 <--x 38 - 71 <--x 38 - 71 <--x 46 - 72 <--x 38 - 72 <--x 39 - 73 <--x 39 - 73 <--x 46 - 74 <--x 39 - 74 <--x 40 - 75 <--x 40 - 75 <--x 46 - 76 <--x 40 - 76 <--x 41 - 77 <--x 41 - 77 <--x 46 - 78 <--x 41 - 78 <--x 42 - 79 <--x 42 - 79 <--x 46 - 80 <--x 42 - 80 <--x 43 - 81 <--x 43 - 81 <--x 46 - 82 <--x 43 - 82 <--x 44 - 83 <--x 44 - 83 <--x 46 - 84 <--x 26 - 84 <--x 44 - 85 --- 86 - 85 --- 87 - 85 --- 88 - 85 --- 89 - 85 --- 90 - 85 ---- 92 - 85 --- 91 - 86 --- 93 - 86 --- 99 - 86 --- 100 - 86 x--> 97 - 87 --- 94 - 87 --- 101 - 87 --- 102 - 87 x--> 97 - 88 --- 95 - 88 --- 103 - 88 --- 104 - 88 x--> 97 - 89 --- 96 - 89 --- 105 - 89 --- 106 - 89 x--> 97 - 92 --- 93 - 92 --- 94 - 92 --- 95 - 92 --- 96 - 92 --- 97 - 92 --- 98 - 92 --- 99 - 92 --- 100 - 92 --- 101 - 92 --- 102 - 92 --- 103 - 92 --- 104 - 92 --- 105 - 92 --- 106 - 98 --- 129 - 99 <--x 93 - 99 <--x 98 - 100 <--x 93 - 100 <--x 94 - 101 <--x 94 - 101 <--x 98 - 102 <--x 94 - 102 <--x 95 - 103 <--x 95 - 103 <--x 98 - 104 <--x 95 - 104 <--x 96 - 105 <--x 96 - 105 <--x 98 - 106 <--x 93 - 106 <--x 96 - 107 --- 108 - 107 --- 109 - 107 --- 110 - 107 --- 111 - 107 --- 112 - 107 ---- 114 - 107 --- 113 - 108 --- 118 - 108 --- 127 - 108 --- 128 - 108 x--> 119 - 109 --- 117 - 109 --- 125 - 109 --- 126 - 109 x--> 119 - 110 --- 116 - 110 --- 123 - 110 --- 124 - 110 x--> 119 - 111 --- 115 - 111 --- 121 - 111 --- 122 - 111 x--> 119 - 114 --- 115 - 114 --- 116 - 114 --- 117 - 114 --- 118 - 114 --- 119 - 114 --- 120 - 114 --- 121 - 114 --- 122 - 114 --- 123 - 114 --- 124 - 114 --- 125 - 114 --- 126 - 114 --- 127 - 114 --- 128 - 121 <--x 115 - 121 <--x 120 - 122 <--x 115 - 122 <--x 116 - 123 <--x 116 - 123 <--x 120 - 124 <--x 116 - 124 <--x 117 - 125 <--x 117 - 125 <--x 120 - 126 <--x 117 - 126 <--x 118 - 127 <--x 118 - 127 <--x 120 - 128 <--x 115 - 128 <--x 118 - 129 --- 130 - 129 --- 131 - 129 --- 132 - 129 --- 133 - 129 --- 134 - 129 ---- 136 - 129 --- 135 - 130 --- 140 - 130 --- 149 - 130 --- 150 - 130 x--> 141 - 131 --- 139 - 131 --- 147 - 131 --- 148 - 131 x--> 141 - 132 --- 138 - 132 --- 145 - 132 --- 146 - 132 x--> 141 - 133 --- 137 - 133 --- 143 - 133 --- 144 - 133 x--> 141 - 136 --- 137 - 136 --- 138 - 136 --- 139 - 136 --- 140 - 136 --- 141 - 136 --- 142 - 136 --- 143 - 136 --- 144 - 136 --- 145 - 136 --- 146 - 136 --- 147 - 136 --- 148 - 136 --- 149 - 136 --- 150 - 143 <--x 137 - 143 <--x 142 - 144 <--x 137 - 144 <--x 138 - 145 <--x 138 - 145 <--x 142 - 146 <--x 138 - 146 <--x 139 - 147 <--x 139 - 147 <--x 142 - 148 <--x 139 - 148 <--x 140 - 149 <--x 140 - 149 <--x 142 - 150 <--x 137 - 150 <--x 140 - 45 <--x 151 - 45 <--x 152 - 98 <--x 153 + 25 x--> 85 + 25 --- 98 + 25 --- 133 + 26 --- 72 + 26 x--> 85 + 26 --- 111 + 26 --- 138 + 27 --- 57 + 27 x--> 85 + 27 --- 107 + 27 --- 137 + 28 --- 66 + 28 x--> 85 + 28 --- 114 + 28 --- 130 + 30 --- 78 + 30 x--> 86 + 30 --- 118 + 30 --- 146 + 31 --- 77 + 31 x--> 86 + 31 --- 116 + 31 --- 149 + 32 --- 79 + 32 x--> 86 + 32 --- 115 + 32 --- 147 + 33 --- 76 + 33 x--> 86 + 33 --- 117 + 33 --- 148 + 35 --- 83 + 35 x--> 87 + 35 --- 121 + 35 --- 153 + 36 --- 80 + 36 x--> 87 + 36 --- 122 + 36 --- 151 + 37 --- 81 + 37 x--> 87 + 37 --- 119 + 37 --- 150 + 38 --- 82 + 38 x--> 87 + 38 --- 120 + 38 --- 152 + 40 --- 54 + 40 x--> 84 + 40 --- 92 + 40 --- 123 + 41 --- 53 + 41 x--> 84 + 41 --- 95 + 41 --- 125 + 42 --- 56 + 42 x--> 84 + 42 --- 93 + 42 --- 126 + 43 --- 55 + 43 x--> 84 + 43 --- 94 + 43 --- 124 + 49 --- 57 + 49 --- 58 + 49 --- 59 + 49 --- 60 + 49 --- 61 + 49 --- 62 + 49 --- 63 + 49 --- 64 + 49 --- 65 + 49 --- 66 + 49 --- 67 + 49 --- 68 + 49 --- 69 + 49 --- 70 + 49 --- 71 + 49 --- 72 + 49 --- 73 + 49 --- 74 + 49 --- 75 + 49 --- 85 + 49 --- 89 + 49 --- 96 + 49 --- 97 + 49 --- 98 + 49 --- 99 + 49 --- 100 + 49 --- 101 + 49 --- 102 + 49 --- 103 + 49 --- 104 + 49 --- 105 + 49 --- 106 + 49 --- 107 + 49 --- 108 + 49 --- 109 + 49 --- 110 + 49 --- 111 + 49 --- 112 + 49 --- 113 + 49 --- 114 + 49 --- 127 + 49 --- 128 + 49 --- 129 + 49 --- 130 + 49 --- 131 + 49 --- 132 + 49 --- 133 + 49 --- 134 + 49 --- 135 + 49 --- 136 + 49 --- 137 + 49 --- 138 + 49 --- 139 + 49 --- 140 + 49 --- 141 + 49 --- 142 + 49 --- 143 + 49 --- 144 + 49 --- 145 + 50 --- 76 + 50 --- 77 + 50 --- 78 + 50 --- 79 + 50 --- 86 + 50 --- 90 + 50 --- 115 + 50 --- 116 + 50 --- 117 + 50 --- 118 + 50 --- 146 + 50 --- 147 + 50 --- 148 + 50 --- 149 + 51 --- 80 + 51 --- 81 + 51 --- 82 + 51 --- 83 + 51 --- 87 + 51 --- 91 + 51 --- 119 + 51 --- 120 + 51 --- 121 + 51 --- 122 + 51 --- 150 + 51 --- 151 + 51 --- 152 + 51 --- 153 + 52 --- 53 + 52 --- 54 + 52 --- 55 + 52 --- 56 + 52 --- 84 + 52 --- 88 + 52 --- 92 + 52 --- 93 + 52 --- 94 + 52 --- 95 + 52 --- 123 + 52 --- 124 + 52 --- 125 + 52 --- 126 + 95 <--x 53 + 125 <--x 53 + 126 <--x 53 + 92 <--x 54 + 123 <--x 54 + 125 <--x 54 + 94 <--x 55 + 123 <--x 55 + 124 <--x 55 + 93 <--x 56 + 124 <--x 56 + 126 <--x 56 + 107 <--x 57 + 137 <--x 57 + 138 <--x 57 + 97 <--x 58 + 129 <--x 58 + 132 <--x 58 + 98 <--x 59 + 133 <--x 59 + 136 <--x 59 + 110 <--x 60 + 127 <--x 60 + 145 <--x 60 + 105 <--x 61 + 128 <--x 61 + 142 <--x 61 + 109 <--x 62 + 128 <--x 62 + 143 <--x 62 + 113 <--x 63 + 132 <--x 63 + 135 <--x 63 + 106 <--x 64 + 134 <--x 64 + 139 <--x 64 + 104 <--x 65 + 139 <--x 65 + 144 <--x 65 + 114 <--x 66 + 130 <--x 66 + 137 <--x 66 + 100 <--x 67 + 134 <--x 67 + 143 <--x 67 + 99 <--x 68 + 131 <--x 68 + 135 <--x 68 + 112 <--x 69 + 129 <--x 69 + 136 <--x 69 + 103 <--x 70 + 140 <--x 70 + 142 <--x 70 + 96 <--x 71 + 130 <--x 71 + 144 <--x 71 + 111 <--x 72 + 133 <--x 72 + 138 <--x 72 + 101 <--x 73 + 127 <--x 73 + 141 <--x 73 + 108 <--x 74 + 140 <--x 74 + 141 <--x 74 + 102 <--x 75 + 131 <--x 75 + 145 <--x 75 + 117 <--x 76 + 147 <--x 76 + 148 <--x 76 + 116 <--x 77 + 146 <--x 77 + 149 <--x 77 + 118 <--x 78 + 146 <--x 78 + 148 <--x 78 + 115 <--x 79 + 147 <--x 79 + 149 <--x 79 + 122 <--x 80 + 150 <--x 80 + 151 <--x 80 + 119 <--x 81 + 150 <--x 81 + 152 <--x 81 + 120 <--x 82 + 152 <--x 82 + 153 <--x 82 + 121 <--x 83 + 151 <--x 83 + 153 <--x 83 + 92 <--x 88 + 93 <--x 88 + 94 <--x 88 + 95 <--x 88 + 96 <--x 89 + 97 <--x 89 + 98 <--x 89 + 99 <--x 89 + 100 <--x 89 + 101 <--x 89 + 102 <--x 89 + 103 <--x 89 + 104 <--x 89 + 105 <--x 89 + 106 <--x 89 + 107 <--x 89 + 108 <--x 89 + 109 <--x 89 + 110 <--x 89 + 111 <--x 89 + 112 <--x 89 + 113 <--x 89 + 114 <--x 89 + 115 <--x 90 + 116 <--x 90 + 117 <--x 90 + 118 <--x 90 + 119 <--x 91 + 120 <--x 91 + 121 <--x 91 + 122 <--x 91 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/router-template-slate/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/router-template-slate/artifact_commands.snap index 02cbb8c7e..66547a1b1 100644 --- a/rust/kcl-lib/tests/kcl_samples/router-template-slate/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/router-template-slate/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands router-template-slate.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands router-template-slate.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -352,6 +352,14 @@ description: Artifact commands router-template-slate.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -363,8 +371,297 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -380,30 +677,12 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -418,39 +697,12 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -465,39 +717,12 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -512,39 +737,12 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -559,39 +757,12 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -606,18 +777,10 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -634,39 +797,12 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -681,39 +817,12 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -728,39 +837,12 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -775,39 +857,12 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -818,43 +873,6 @@ description: Artifact commands router-template-slate.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -869,30 +887,12 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -905,13 +905,6 @@ description: Artifact commands router-template-slate.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -932,6 +925,13 @@ description: Artifact commands router-template-slate.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1031,6 +1031,14 @@ description: Artifact commands router-template-slate.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1042,8 +1050,108 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1059,30 +1167,12 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1097,39 +1187,12 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1144,18 +1207,10 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1168,43 +1223,6 @@ description: Artifact commands router-template-slate.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1219,30 +1237,12 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1255,13 +1255,6 @@ description: Artifact commands router-template-slate.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1282,6 +1275,13 @@ description: Artifact commands router-template-slate.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1381,6 +1381,14 @@ description: Artifact commands router-template-slate.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1392,8 +1400,108 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1409,30 +1517,12 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1447,39 +1537,12 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1494,18 +1557,10 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1518,43 +1573,6 @@ description: Artifact commands router-template-slate.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1569,28 +1587,10 @@ description: Artifact commands router-template-slate.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/router-template-slate/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/router-template-slate/artifact_graph_flowchart.snap.md index 8191502b7..2830b4175 100644 --- a/rust/kcl-lib/tests/kcl_samples/router-template-slate/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/router-template-slate/artifact_graph_flowchart.snap.md @@ -1,352 +1,352 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[539, 582, 0]"] - 3["Segment
[588, 627, 0]"] - 4["Segment
[633, 698, 0]"] - 5["Segment
[704, 780, 0]"] - 6["Segment
[786, 855, 0]"] - 7["Segment
[861, 901, 0]"] - 8["Segment
[907, 943, 0]"] - 9["Segment
[983, 1013, 0]"] - 10["Segment
[1019, 1048, 0]"] - 11["Segment
[1054, 1083, 0]"] - 12["Segment
[1089, 1118, 0]"] - 13["Segment
[1124, 1191, 0]"] - 14["Segment
[1197, 1253, 0]"] - 15["Segment
[1259, 1266, 0]"] - 16[Solid2d] + subgraph path4 [Path] + 4["Path
[539, 582, 0]"] + 7["Segment
[588, 627, 0]"] + 8["Segment
[633, 698, 0]"] + 9["Segment
[704, 780, 0]"] + 10["Segment
[786, 855, 0]"] + 11["Segment
[861, 901, 0]"] + 12["Segment
[907, 943, 0]"] + 13["Segment
[983, 1013, 0]"] + 14["Segment
[1019, 1048, 0]"] + 15["Segment
[1054, 1083, 0]"] + 16["Segment
[1089, 1118, 0]"] + 17["Segment
[1124, 1191, 0]"] + 18["Segment
[1197, 1253, 0]"] + 19["Segment
[1259, 1266, 0]"] + 31[Solid2d] end - subgraph path52 [Path] - 52["Path
[1426, 1526, 0]"] - 53["Segment
[1532, 1579, 0]"] - 54["Segment
[1585, 1697, 0]"] - 55["Segment
[1703, 1820, 0]"] - 56["Segment
[1826, 1882, 0]"] - 57["Segment
[1888, 1895, 0]"] - 58[Solid2d] + subgraph path5 [Path] + 5["Path
[1426, 1526, 0]"] + 20["Segment
[1532, 1579, 0]"] + 21["Segment
[1585, 1697, 0]"] + 22["Segment
[1703, 1820, 0]"] + 23["Segment
[1826, 1882, 0]"] + 24["Segment
[1888, 1895, 0]"] + 30[Solid2d] end - subgraph path74 [Path] - 74["Path
[2057, 2156, 0]"] - 75["Segment
[2162, 2208, 0]"] - 76["Segment
[2214, 2297, 0]"] - 77["Segment
[2303, 2391, 0]"] - 78["Segment
[2397, 2453, 0]"] - 79["Segment
[2459, 2466, 0]"] - 80[Solid2d] + subgraph path6 [Path] + 6["Path
[2057, 2156, 0]"] + 25["Segment
[2162, 2208, 0]"] + 26["Segment
[2214, 2297, 0]"] + 27["Segment
[2303, 2391, 0]"] + 28["Segment
[2397, 2453, 0]"] + 29["Segment
[2459, 2466, 0]"] + 32[Solid2d] end 1["Plane
[516, 533, 0]"] - 17["Sweep Extrusion
[1309, 1339, 0]"] - 18[Wall] - 19[Wall] - 20[Wall] - 21[Wall] - 22[Wall] - 23[Wall] - 24[Wall] - 25[Wall] - 26[Wall] - 27[Wall] - 28[Wall] - 29["Cap Start"] - 30["Cap End"] - 31["SweepEdge Opposite"] - 32["SweepEdge Adjacent"] - 33["SweepEdge Opposite"] - 34["SweepEdge Adjacent"] - 35["SweepEdge Opposite"] - 36["SweepEdge Adjacent"] - 37["SweepEdge Opposite"] - 38["SweepEdge Adjacent"] - 39["SweepEdge Opposite"] - 40["SweepEdge Adjacent"] - 41["SweepEdge Opposite"] - 42["SweepEdge Adjacent"] - 43["SweepEdge Opposite"] - 44["SweepEdge Adjacent"] - 45["SweepEdge Opposite"] - 46["SweepEdge Adjacent"] - 47["SweepEdge Opposite"] - 48["SweepEdge Adjacent"] - 49["SweepEdge Opposite"] - 50["SweepEdge Adjacent"] - 51["SweepEdge Opposite"] - 59["Sweep Extrusion
[1939, 1971, 0]"] - 60[Wall] - 61[Wall] - 62[Wall] - 63[Wall] - 64["Cap Start"] - 65["Cap End"] + 2["StartSketchOnFace
[1381, 1420, 0]"] + 3["StartSketchOnFace
[2012, 2051, 0]"] + 33["Sweep Extrusion
[1309, 1339, 0]"] + 34["Sweep Extrusion
[1939, 1971, 0]"] + 35["Sweep Extrusion
[2509, 2541, 0]"] + 36[Wall] + 37[Wall] + 38[Wall] + 39[Wall] + 40[Wall] + 41[Wall] + 42[Wall] + 43[Wall] + 44[Wall] + 45[Wall] + 46[Wall] + 47[Wall] + 48[Wall] + 49[Wall] + 50[Wall] + 51[Wall] + 52[Wall] + 53[Wall] + 54[Wall] + 55["Cap Start"] + 56["Cap Start"] + 57["Cap Start"] + 58["Cap End"] + 59["Cap End"] + 60["Cap End"] + 61["SweepEdge Opposite"] + 62["SweepEdge Opposite"] + 63["SweepEdge Opposite"] + 64["SweepEdge Opposite"] + 65["SweepEdge Opposite"] 66["SweepEdge Opposite"] - 67["SweepEdge Adjacent"] + 67["SweepEdge Opposite"] 68["SweepEdge Opposite"] - 69["SweepEdge Adjacent"] + 69["SweepEdge Opposite"] 70["SweepEdge Opposite"] - 71["SweepEdge Adjacent"] + 71["SweepEdge Opposite"] 72["SweepEdge Opposite"] - 73["SweepEdge Adjacent"] - 81["Sweep Extrusion
[2509, 2541, 0]"] - 82[Wall] - 83[Wall] - 84[Wall] - 85[Wall] - 86["Cap Start"] - 87["Cap End"] - 88["SweepEdge Opposite"] + 73["SweepEdge Opposite"] + 74["SweepEdge Opposite"] + 75["SweepEdge Opposite"] + 76["SweepEdge Opposite"] + 77["SweepEdge Opposite"] + 78["SweepEdge Opposite"] + 79["SweepEdge Opposite"] + 80["SweepEdge Adjacent"] + 81["SweepEdge Adjacent"] + 82["SweepEdge Adjacent"] + 83["SweepEdge Adjacent"] + 84["SweepEdge Adjacent"] + 85["SweepEdge Adjacent"] + 86["SweepEdge Adjacent"] + 87["SweepEdge Adjacent"] + 88["SweepEdge Adjacent"] 89["SweepEdge Adjacent"] - 90["SweepEdge Opposite"] + 90["SweepEdge Adjacent"] 91["SweepEdge Adjacent"] - 92["SweepEdge Opposite"] + 92["SweepEdge Adjacent"] 93["SweepEdge Adjacent"] - 94["SweepEdge Opposite"] + 94["SweepEdge Adjacent"] 95["SweepEdge Adjacent"] - 96["StartSketchOnFace
[1381, 1420, 0]"] - 97["StartSketchOnFace
[2012, 2051, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 --- 8 - 2 --- 9 - 2 --- 10 - 2 --- 11 - 2 --- 12 - 2 --- 13 - 2 --- 14 - 2 --- 15 - 2 ---- 17 - 2 --- 16 - 3 --- 28 - 3 --- 51 - 3 --- 32 - 3 x--> 29 - 4 --- 27 - 4 --- 49 - 4 --- 50 - 4 x--> 29 - 5 --- 26 - 5 --- 47 - 5 --- 48 - 5 x--> 29 + 96["SweepEdge Adjacent"] + 97["SweepEdge Adjacent"] + 1 --- 4 + 55 x--> 2 + 55 x--> 3 + 4 --- 7 + 4 --- 8 + 4 --- 9 + 4 --- 10 + 4 --- 11 + 4 --- 12 + 4 --- 13 + 4 --- 14 + 4 --- 15 + 4 --- 16 + 4 --- 17 + 4 --- 18 + 4 --- 19 + 4 --- 31 + 4 ---- 33 + 5 --- 20 + 5 --- 21 + 5 --- 22 + 5 --- 23 + 5 --- 24 + 5 --- 30 + 5 ---- 34 + 55 --- 5 6 --- 25 - 6 --- 45 - 6 --- 46 - 6 x--> 29 - 7 --- 24 + 6 --- 26 + 6 --- 27 + 6 --- 28 + 6 --- 29 + 6 --- 32 + 6 ---- 35 + 55 --- 6 7 --- 43 - 7 --- 44 - 7 x--> 29 - 9 --- 23 - 9 --- 41 - 9 --- 42 - 9 x--> 29 - 10 --- 22 - 10 --- 39 - 10 --- 40 - 10 x--> 29 - 11 --- 21 - 11 --- 37 + 7 x--> 55 + 7 --- 67 + 7 --- 84 + 8 --- 40 + 8 x--> 55 + 8 --- 61 + 8 --- 80 + 9 --- 39 + 9 x--> 55 + 9 --- 70 + 9 --- 86 + 10 --- 41 + 10 x--> 55 + 10 --- 71 + 10 --- 83 11 --- 38 - 11 x--> 29 - 12 --- 20 - 12 --- 35 - 12 --- 36 - 12 x--> 29 - 13 --- 19 - 13 --- 33 - 13 --- 34 - 13 x--> 29 - 14 --- 18 - 14 --- 31 - 14 x--> 32 - 14 x--> 29 - 17 --- 18 - 17 --- 19 - 17 --- 20 - 17 --- 21 - 17 --- 22 - 17 --- 23 - 17 --- 24 - 17 --- 25 - 17 --- 26 - 17 --- 27 - 17 --- 28 - 17 --- 29 - 17 --- 30 - 17 --- 31 - 17 --- 32 - 17 --- 33 - 17 --- 34 - 17 --- 35 - 17 --- 36 + 11 x--> 55 + 11 --- 65 + 11 --- 85 + 13 --- 42 + 13 x--> 55 + 13 --- 68 + 13 --- 82 + 14 --- 45 + 14 x--> 55 + 14 --- 69 + 14 --- 89 + 15 --- 44 + 15 x--> 55 + 15 --- 64 + 15 --- 88 + 16 --- 36 + 16 x--> 55 + 16 --- 62 + 16 --- 87 17 --- 37 - 17 --- 38 - 17 --- 39 - 17 --- 40 - 17 --- 41 - 17 --- 42 - 17 --- 43 - 17 --- 44 - 17 --- 45 - 17 --- 46 - 17 --- 47 - 17 --- 48 - 17 --- 49 - 17 --- 50 - 17 --- 51 - 29 --- 52 - 29 --- 74 - 31 <--x 18 - 31 <--x 30 - 32 <--x 18 - 32 <--x 28 - 33 <--x 19 - 33 <--x 30 - 34 <--x 18 - 34 <--x 19 - 35 <--x 20 - 35 <--x 30 - 36 <--x 19 - 36 <--x 20 - 37 <--x 21 - 37 <--x 30 - 38 <--x 20 - 38 <--x 21 - 39 <--x 22 - 39 <--x 30 - 40 <--x 21 - 40 <--x 22 - 41 <--x 23 - 41 <--x 30 - 42 <--x 22 - 42 <--x 23 - 43 <--x 24 - 43 <--x 30 - 44 <--x 24 - 44 <--x 25 - 45 <--x 25 - 45 <--x 30 - 46 <--x 25 - 46 <--x 26 - 47 <--x 26 - 47 <--x 30 - 48 <--x 26 - 48 <--x 27 - 49 <--x 27 - 49 <--x 30 - 50 <--x 27 - 50 <--x 28 - 51 <--x 28 - 51 <--x 30 - 52 --- 53 - 52 --- 54 - 52 --- 55 - 52 --- 56 - 52 --- 57 - 52 ---- 59 - 52 --- 58 - 53 --- 60 - 53 --- 66 - 53 --- 67 - 53 x--> 64 - 54 --- 61 - 54 --- 68 - 54 --- 69 - 54 x--> 64 - 55 --- 62 - 55 --- 70 - 55 --- 71 - 55 x--> 64 - 56 --- 63 - 56 --- 72 - 56 --- 73 - 56 x--> 64 - 59 --- 60 - 59 --- 61 - 59 --- 62 - 59 --- 63 - 59 --- 64 - 59 --- 65 - 59 --- 66 - 59 --- 67 - 59 --- 68 - 59 --- 69 - 59 --- 70 - 59 --- 71 - 59 --- 72 - 59 --- 73 - 66 <--x 60 - 66 <--x 65 - 67 <--x 60 - 67 <--x 61 - 68 <--x 61 - 68 <--x 65 - 69 <--x 61 - 69 <--x 62 - 70 <--x 62 - 70 <--x 65 - 71 <--x 62 - 71 <--x 63 - 72 <--x 63 - 72 <--x 65 - 73 <--x 60 - 73 <--x 63 - 74 --- 75 - 74 --- 76 - 74 --- 77 - 74 --- 78 - 74 --- 79 - 74 ---- 81 - 74 --- 80 - 75 --- 85 - 75 --- 94 - 75 --- 95 - 75 x--> 86 - 76 --- 84 - 76 --- 92 - 76 --- 93 - 76 x--> 86 - 77 --- 83 - 77 --- 90 - 77 --- 91 - 77 x--> 86 - 78 --- 82 - 78 --- 88 - 78 --- 89 - 78 x--> 86 - 81 --- 82 - 81 --- 83 - 81 --- 84 - 81 --- 85 - 81 --- 86 - 81 --- 87 - 81 --- 88 - 81 --- 89 - 81 --- 90 - 81 --- 91 - 81 --- 92 - 81 --- 93 - 81 --- 94 - 81 --- 95 - 88 <--x 82 - 88 <--x 87 - 89 <--x 82 - 89 <--x 83 - 90 <--x 83 - 90 <--x 87 - 91 <--x 83 - 91 <--x 84 - 92 <--x 84 - 92 <--x 87 - 93 <--x 84 - 93 <--x 85 - 94 <--x 85 - 94 <--x 87 - 95 <--x 82 - 95 <--x 85 - 29 <--x 96 - 29 <--x 97 + 17 x--> 55 + 17 --- 66 + 17 --- 81 + 18 --- 46 + 18 x--> 55 + 18 --- 63 + 18 x--> 84 + 20 --- 49 + 20 x--> 56 + 20 --- 73 + 20 --- 92 + 21 --- 50 + 21 x--> 56 + 21 --- 74 + 21 --- 90 + 22 --- 48 + 22 x--> 56 + 22 --- 72 + 22 --- 91 + 23 --- 47 + 23 x--> 56 + 23 --- 75 + 23 --- 93 + 25 --- 52 + 25 x--> 57 + 25 --- 79 + 25 --- 97 + 26 --- 51 + 26 x--> 57 + 26 --- 77 + 26 --- 96 + 27 --- 53 + 27 x--> 57 + 27 --- 78 + 27 --- 94 + 28 --- 54 + 28 x--> 57 + 28 --- 76 + 28 --- 95 + 33 --- 36 + 33 --- 37 + 33 --- 38 + 33 --- 39 + 33 --- 40 + 33 --- 41 + 33 --- 42 + 33 --- 43 + 33 --- 44 + 33 --- 45 + 33 --- 46 + 33 --- 55 + 33 --- 58 + 33 --- 61 + 33 --- 62 + 33 --- 63 + 33 --- 64 + 33 --- 65 + 33 --- 66 + 33 --- 67 + 33 --- 68 + 33 --- 69 + 33 --- 70 + 33 --- 71 + 33 --- 80 + 33 --- 81 + 33 --- 82 + 33 --- 83 + 33 --- 84 + 33 --- 85 + 33 --- 86 + 33 --- 87 + 33 --- 88 + 33 --- 89 + 34 --- 47 + 34 --- 48 + 34 --- 49 + 34 --- 50 + 34 --- 56 + 34 --- 59 + 34 --- 72 + 34 --- 73 + 34 --- 74 + 34 --- 75 + 34 --- 90 + 34 --- 91 + 34 --- 92 + 34 --- 93 + 35 --- 51 + 35 --- 52 + 35 --- 53 + 35 --- 54 + 35 --- 57 + 35 --- 60 + 35 --- 76 + 35 --- 77 + 35 --- 78 + 35 --- 79 + 35 --- 94 + 35 --- 95 + 35 --- 96 + 35 --- 97 + 62 <--x 36 + 87 <--x 36 + 88 <--x 36 + 66 <--x 37 + 81 <--x 37 + 87 <--x 37 + 65 <--x 38 + 85 <--x 38 + 70 <--x 39 + 83 <--x 39 + 86 <--x 39 + 61 <--x 40 + 80 <--x 40 + 86 <--x 40 + 71 <--x 41 + 83 <--x 41 + 85 <--x 41 + 68 <--x 42 + 82 <--x 42 + 67 <--x 43 + 80 <--x 43 + 84 <--x 43 + 64 <--x 44 + 88 <--x 44 + 89 <--x 44 + 69 <--x 45 + 82 <--x 45 + 89 <--x 45 + 63 <--x 46 + 81 <--x 46 + 84 <--x 46 + 75 <--x 47 + 91 <--x 47 + 93 <--x 47 + 72 <--x 48 + 90 <--x 48 + 91 <--x 48 + 73 <--x 49 + 92 <--x 49 + 93 <--x 49 + 74 <--x 50 + 90 <--x 50 + 92 <--x 50 + 77 <--x 51 + 94 <--x 51 + 96 <--x 51 + 79 <--x 52 + 96 <--x 52 + 97 <--x 52 + 78 <--x 53 + 94 <--x 53 + 95 <--x 53 + 76 <--x 54 + 95 <--x 54 + 97 <--x 54 + 61 <--x 58 + 62 <--x 58 + 63 <--x 58 + 64 <--x 58 + 65 <--x 58 + 66 <--x 58 + 67 <--x 58 + 68 <--x 58 + 69 <--x 58 + 70 <--x 58 + 71 <--x 58 + 72 <--x 59 + 73 <--x 59 + 74 <--x 59 + 75 <--x 59 + 76 <--x 60 + 77 <--x 60 + 78 <--x 60 + 79 <--x 60 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/sheet-metal-bracket/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/sheet-metal-bracket/artifact_commands.snap index bd19d1818..f5d522a23 100644 --- a/rust/kcl-lib/tests/kcl_samples/sheet-metal-bracket/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/sheet-metal-bracket/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands sheet-metal-bracket.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands sheet-metal-bracket.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -498,6 +498,14 @@ description: Artifact commands sheet-metal-bracket.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -509,8 +517,540 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -526,30 +1066,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -564,39 +1086,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -611,39 +1106,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -658,39 +1126,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -705,39 +1146,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -752,39 +1166,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -799,39 +1186,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -846,39 +1206,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -893,39 +1226,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -940,39 +1246,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -987,18 +1266,10 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1015,39 +1286,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1062,39 +1306,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1109,39 +1326,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1156,39 +1346,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1203,39 +1366,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1250,39 +1386,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1297,39 +1406,12 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1340,43 +1422,6 @@ description: Artifact commands sheet-metal-bracket.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1387,43 +1432,6 @@ description: Artifact commands sheet-metal-bracket.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1434,34 +1442,6 @@ description: Artifact commands sheet-metal-bracket.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1530,6 +1510,34 @@ description: Artifact commands sheet-metal-bracket.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1542,33 +1550,6 @@ description: Artifact commands sheet-metal-bracket.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -85.725, - "y": 19.049999999999997, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1598,8 +1579,27 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -85.725, + "y": 19.049999999999997, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -1654,88 +1654,6 @@ description: Artifact commands sheet-metal-bracket.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -3.175, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1763,7 +1681,11 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": -3.175, + "faces": null, + "opposite": "None" } }, { @@ -1774,6 +1696,82 @@ description: Artifact commands sheet-metal-bracket.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1787,26 +1785,7 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1825,9 +1804,38 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -1842,33 +1850,6 @@ description: Artifact commands sheet-metal-bracket.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 92.07499999999999, - "y": 19.049999999999997, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1898,8 +1879,27 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 92.07499999999999, + "y": 19.049999999999997, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -1954,88 +1954,6 @@ description: Artifact commands sheet-metal-bracket.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -3.175, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2063,7 +1981,11 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": -3.175, + "faces": null, + "opposite": "None" } }, { @@ -2074,6 +1996,82 @@ description: Artifact commands sheet-metal-bracket.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2087,26 +2085,7 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2125,9 +2104,38 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -2142,33 +2150,6 @@ description: Artifact commands sheet-metal-bracket.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -23.018749999999997, - "y": 31.75, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2198,8 +2179,27 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -23.018749999999997, + "y": 31.75, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -2338,82 +2338,24 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -3.175, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -2443,83 +2385,11 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -3.175, + "faces": null, + "opposite": "None" } }, { @@ -2533,89 +2403,6 @@ description: Artifact commands sheet-metal-bracket.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -2631,7 +2418,8 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -2642,6 +2430,158 @@ description: Artifact commands sheet-metal-bracket.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2655,7 +2595,7 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2664,17 +2604,16 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2693,9 +2632,78 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -2710,33 +2718,6 @@ description: Artifact commands sheet-metal-bracket.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 19.049999999999997, - "y": 69.85, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2766,8 +2747,27 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 19.049999999999997, + "y": 69.85, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -2793,13 +2793,6 @@ description: Artifact commands sheet-metal-bracket.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2808,6 +2801,40 @@ description: Artifact commands sheet-metal-bracket.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2817,34 +2844,6 @@ description: Artifact commands sheet-metal-bracket.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2859,9 +2858,10 @@ description: Artifact commands sheet-metal-bracket.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/sheet-metal-bracket/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/sheet-metal-bracket/artifact_graph_flowchart.snap.md index b21f6554c..aa544c427 100644 --- a/rust/kcl-lib/tests/kcl_samples/sheet-metal-bracket/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/sheet-metal-bracket/artifact_graph_flowchart.snap.md @@ -1,451 +1,451 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[1228, 1309, 0]"] - 3["Segment
[1315, 1343, 0]"] - 4["Segment
[1349, 1410, 0]"] - 5["Segment
[1416, 1497, 0]"] - 6["Segment
[1503, 1565, 0]"] - 7["Segment
[1571, 1607, 0]"] - 8["Segment
[1613, 1642, 0]"] - 9["Segment
[1648, 1710, 0]"] - 10["Segment
[1716, 1770, 0]"] - 11["Segment
[1776, 1837, 0]"] - 12["Segment
[1843, 1871, 0]"] - 13["Segment
[1877, 1916, 0]"] - 14["Segment
[1922, 1965, 0]"] - 15["Segment
[1971, 2033, 0]"] - 16["Segment
[2039, 2098, 0]"] - 17["Segment
[2104, 2165, 0]"] - 18["Segment
[2171, 2207, 0]"] - 19["Segment
[2213, 2243, 0]"] - 20["Segment
[2249, 2310, 0]"] - 21["Segment
[2316, 2375, 0]"] - 22["Segment
[2381, 2443, 0]"] - 23["Segment
[2449, 2492, 0]"] - 24["Segment
[2498, 2568, 0]"] - 25["Segment
[2574, 2581, 0]"] - 26[Solid2d] + subgraph path6 [Path] + 6["Path
[1228, 1309, 0]"] + 11["Segment
[1315, 1343, 0]"] + 12["Segment
[1349, 1410, 0]"] + 13["Segment
[1416, 1497, 0]"] + 14["Segment
[1503, 1565, 0]"] + 15["Segment
[1571, 1607, 0]"] + 16["Segment
[1613, 1642, 0]"] + 17["Segment
[1648, 1710, 0]"] + 18["Segment
[1716, 1770, 0]"] + 19["Segment
[1776, 1837, 0]"] + 20["Segment
[1843, 1871, 0]"] + 21["Segment
[1877, 1916, 0]"] + 22["Segment
[1922, 1965, 0]"] + 23["Segment
[1971, 2033, 0]"] + 24["Segment
[2039, 2098, 0]"] + 25["Segment
[2104, 2165, 0]"] + 26["Segment
[2171, 2207, 0]"] + 27["Segment
[2213, 2243, 0]"] + 28["Segment
[2249, 2310, 0]"] + 29["Segment
[2316, 2375, 0]"] + 30["Segment
[2381, 2443, 0]"] + 31["Segment
[2449, 2492, 0]"] + 32["Segment
[2498, 2568, 0]"] + 33["Segment
[2574, 2581, 0]"] + 40[Solid2d] end - subgraph path94 [Path] - 94["Path
[2920, 3009, 0]"] - 95["Segment
[2920, 3009, 0]"] - 96[Solid2d] + subgraph path7 [Path] + 7["Path
[2920, 3009, 0]"] + 34["Segment
[2920, 3009, 0]"] + 42[Solid2d] end - subgraph path102 [Path] - 102["Path
[3291, 3379, 0]"] - 103["Segment
[3291, 3379, 0]"] - 104[Solid2d] + subgraph path8 [Path] + 8["Path
[3291, 3379, 0]"] + 35["Segment
[3291, 3379, 0]"] + 39[Solid2d] end - subgraph path110 [Path] - 110["Path
[3668, 3848, 0]"] - 111["Segment
[3668, 3848, 0]"] - 112[Solid2d] + subgraph path9 [Path] + 9["Path
[3668, 3848, 0]"] + 36["Segment
[3668, 3848, 0]"] + 38[Solid2d] end - subgraph path120 [Path] - 120["Path
[4271, 4327, 0]"] - 121["Segment
[4271, 4327, 0]"] - 122[Solid2d] + subgraph path10 [Path] + 10["Path
[4271, 4327, 0]"] + 37["Segment
[4271, 4327, 0]"] + 41[Solid2d] end 1["Plane
[1205, 1222, 0]"] - 27["Sweep Extrusion
[2587, 2620, 0]"] - 28[Wall] - 29[Wall] - 30[Wall] - 31[Wall] - 32[Wall] - 33[Wall] - 34[Wall] - 35[Wall] - 36[Wall] - 37[Wall] - 38[Wall] - 39[Wall] - 40[Wall] - 41[Wall] - 42[Wall] - 43[Wall] - 44[Wall] - 45[Wall] - 46[Wall] - 47[Wall] - 48["Cap Start"] - 49["Cap End"] - 50["SweepEdge Opposite"] - 51["SweepEdge Adjacent"] - 52["SweepEdge Opposite"] - 53["SweepEdge Adjacent"] - 54["SweepEdge Opposite"] - 55["SweepEdge Adjacent"] - 56["SweepEdge Opposite"] - 57["SweepEdge Adjacent"] - 58["SweepEdge Opposite"] - 59["SweepEdge Adjacent"] - 60["SweepEdge Opposite"] - 61["SweepEdge Adjacent"] - 62["SweepEdge Opposite"] - 63["SweepEdge Adjacent"] - 64["SweepEdge Opposite"] - 65["SweepEdge Adjacent"] - 66["SweepEdge Opposite"] - 67["SweepEdge Adjacent"] - 68["SweepEdge Opposite"] - 69["SweepEdge Adjacent"] - 70["SweepEdge Opposite"] - 71["SweepEdge Adjacent"] - 72["SweepEdge Opposite"] - 73["SweepEdge Adjacent"] - 74["SweepEdge Opposite"] - 75["SweepEdge Adjacent"] - 76["SweepEdge Opposite"] - 77["SweepEdge Adjacent"] - 78["SweepEdge Opposite"] - 79["SweepEdge Adjacent"] + 2["StartSketchOnFace
[3619, 3662, 0]"] + 3["StartSketchOnFace
[2871, 2914, 0]"] + 4["StartSketchOnFace
[4222, 4265, 0]"] + 5["StartSketchOnFace
[3242, 3285, 0]"] + 43["Sweep Extrusion
[2587, 2620, 0]"] + 44["Sweep Extrusion
[3138, 3166, 0]"] + 45["Sweep Extrusion
[3138, 3166, 0]"] + 46["Sweep Extrusion
[3508, 3536, 0]"] + 47["Sweep Extrusion
[3508, 3536, 0]"] + 48["Sweep Extrusion
[4102, 4130, 0]"] + 49["Sweep Extrusion
[4102, 4130, 0]"] + 50["Sweep Extrusion
[4102, 4130, 0]"] + 51["Sweep Extrusion
[4102, 4130, 0]"] + 52["Sweep Extrusion
[4333, 4361, 0]"] + 53[Wall] + 54[Wall] + 55[Wall] + 56[Wall] + 57[Wall] + 58[Wall] + 59[Wall] + 60[Wall] + 61[Wall] + 62[Wall] + 63[Wall] + 64[Wall] + 65[Wall] + 66[Wall] + 67[Wall] + 68[Wall] + 69[Wall] + 70[Wall] + 71[Wall] + 72[Wall] + 73[Wall] + 74[Wall] + 75[Wall] + 76[Wall] + 77["Cap Start"] + 78["Cap End"] + 79["SweepEdge Opposite"] 80["SweepEdge Opposite"] - 81["SweepEdge Adjacent"] + 81["SweepEdge Opposite"] 82["SweepEdge Opposite"] - 83["SweepEdge Adjacent"] + 83["SweepEdge Opposite"] 84["SweepEdge Opposite"] - 85["SweepEdge Adjacent"] + 85["SweepEdge Opposite"] 86["SweepEdge Opposite"] - 87["SweepEdge Adjacent"] + 87["SweepEdge Opposite"] 88["SweepEdge Opposite"] - 89["SweepEdge Adjacent"] - 90["EdgeCut Fillet
[2626, 2797, 0]"] - 91["EdgeCut Fillet
[2626, 2797, 0]"] - 92["EdgeCut Fillet
[2626, 2797, 0]"] - 93["EdgeCut Fillet
[2626, 2797, 0]"] - 97["Sweep Extrusion
[3138, 3166, 0]"] - 98[Wall] + 89["SweepEdge Opposite"] + 90["SweepEdge Opposite"] + 91["SweepEdge Opposite"] + 92["SweepEdge Opposite"] + 93["SweepEdge Opposite"] + 94["SweepEdge Opposite"] + 95["SweepEdge Opposite"] + 96["SweepEdge Opposite"] + 97["SweepEdge Opposite"] + 98["SweepEdge Opposite"] 99["SweepEdge Opposite"] - 100["SweepEdge Adjacent"] - 101["Sweep Extrusion
[3138, 3166, 0]"] - 105["Sweep Extrusion
[3508, 3536, 0]"] - 106[Wall] - 107["SweepEdge Opposite"] + 100["SweepEdge Opposite"] + 101["SweepEdge Opposite"] + 102["SweepEdge Opposite"] + 103["SweepEdge Adjacent"] + 104["SweepEdge Adjacent"] + 105["SweepEdge Adjacent"] + 106["SweepEdge Adjacent"] + 107["SweepEdge Adjacent"] 108["SweepEdge Adjacent"] - 109["Sweep Extrusion
[3508, 3536, 0]"] - 113["Sweep Extrusion
[4102, 4130, 0]"] - 114[Wall] - 115["SweepEdge Opposite"] + 109["SweepEdge Adjacent"] + 110["SweepEdge Adjacent"] + 111["SweepEdge Adjacent"] + 112["SweepEdge Adjacent"] + 113["SweepEdge Adjacent"] + 114["SweepEdge Adjacent"] + 115["SweepEdge Adjacent"] 116["SweepEdge Adjacent"] - 117["Sweep Extrusion
[4102, 4130, 0]"] - 118["Sweep Extrusion
[4102, 4130, 0]"] - 119["Sweep Extrusion
[4102, 4130, 0]"] - 123["Sweep Extrusion
[4333, 4361, 0]"] - 124[Wall] - 125["SweepEdge Opposite"] + 117["SweepEdge Adjacent"] + 118["SweepEdge Adjacent"] + 119["SweepEdge Adjacent"] + 120["SweepEdge Adjacent"] + 121["SweepEdge Adjacent"] + 122["SweepEdge Adjacent"] + 123["SweepEdge Adjacent"] + 124["SweepEdge Adjacent"] + 125["SweepEdge Adjacent"] 126["SweepEdge Adjacent"] - 127["StartSketchOnFace
[2871, 2914, 0]"] - 128["StartSketchOnFace
[3242, 3285, 0]"] - 129["StartSketchOnFace
[3619, 3662, 0]"] - 130["StartSketchOnFace
[4222, 4265, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 --- 8 - 2 --- 9 - 2 --- 10 - 2 --- 11 - 2 --- 12 - 2 --- 13 - 2 --- 14 - 2 --- 15 - 2 --- 16 - 2 --- 17 - 2 --- 18 - 2 --- 19 - 2 --- 20 - 2 --- 21 - 2 --- 22 - 2 --- 23 - 2 --- 24 - 2 --- 25 - 2 ---- 27 - 2 --- 26 - 3 --- 28 - 3 --- 50 - 3 --- 51 - 3 x--> 48 - 4 --- 29 - 4 --- 52 - 4 --- 53 - 4 x--> 48 - 5 --- 30 - 5 --- 54 - 5 --- 55 - 5 x--> 48 + 127["EdgeCut Fillet
[2626, 2797, 0]"] + 128["EdgeCut Fillet
[2626, 2797, 0]"] + 129["EdgeCut Fillet
[2626, 2797, 0]"] + 130["EdgeCut Fillet
[2626, 2797, 0]"] + 1 --- 6 + 76 x--> 2 + 74 x--> 3 + 76 x--> 4 + 75 x--> 5 + 6 --- 11 + 6 --- 12 + 6 --- 13 + 6 --- 14 + 6 --- 15 + 6 --- 16 + 6 --- 17 + 6 --- 18 + 6 --- 19 + 6 --- 20 + 6 --- 21 + 6 --- 22 + 6 --- 23 + 6 --- 24 + 6 --- 25 + 6 --- 26 + 6 --- 27 + 6 --- 28 + 6 --- 29 + 6 --- 30 6 --- 31 - 6 --- 56 - 6 --- 57 - 6 x--> 48 - 7 --- 32 - 7 --- 58 - 7 --- 59 - 7 x--> 48 - 9 --- 33 - 9 --- 60 - 9 --- 61 - 9 x--> 48 - 10 --- 34 - 10 --- 62 - 10 --- 63 - 10 x--> 48 - 11 --- 35 - 11 --- 64 - 11 --- 65 - 11 x--> 48 - 12 --- 36 - 12 --- 66 - 12 --- 67 - 12 x--> 48 - 13 --- 37 - 13 --- 68 - 13 --- 69 - 13 --- 90 - 13 x--> 48 - 14 --- 38 - 14 --- 70 - 14 --- 71 - 14 x--> 48 - 15 --- 39 - 15 --- 72 - 15 --- 73 - 15 x--> 48 - 16 --- 40 - 16 --- 74 - 16 --- 75 - 16 x--> 48 - 17 --- 41 - 17 --- 76 - 17 --- 77 - 17 x--> 48 - 18 --- 42 - 18 --- 78 - 18 --- 79 - 18 x--> 48 - 20 --- 43 - 20 --- 80 - 20 --- 81 - 20 x--> 48 - 21 --- 44 - 21 --- 82 - 21 --- 83 - 21 x--> 48 - 22 --- 45 - 22 --- 84 - 22 --- 85 - 22 x--> 48 - 23 --- 46 - 23 --- 86 - 23 --- 87 - 23 x--> 48 - 24 --- 47 - 24 --- 88 - 24 --- 89 - 24 --- 92 - 24 x--> 48 - 27 --- 28 - 27 --- 29 - 27 --- 30 - 27 --- 31 - 27 --- 32 - 27 --- 33 - 27 --- 34 - 27 --- 35 - 27 --- 36 - 27 --- 37 - 27 --- 38 - 27 --- 39 - 27 --- 40 - 27 --- 41 - 27 --- 42 - 27 --- 43 - 27 --- 44 - 27 --- 45 - 27 --- 46 - 27 --- 47 - 27 --- 48 - 27 --- 49 - 27 --- 50 - 27 --- 51 - 27 --- 52 - 27 --- 53 - 27 --- 54 - 27 --- 55 - 27 --- 56 - 27 --- 57 - 27 --- 58 - 27 --- 59 - 27 --- 60 - 27 --- 61 - 27 --- 62 - 27 --- 63 - 27 --- 64 - 27 --- 65 - 27 --- 66 - 27 --- 67 - 27 --- 68 - 27 --- 69 - 27 --- 70 - 27 --- 71 - 27 --- 72 - 27 --- 73 - 27 --- 74 - 27 --- 75 - 27 --- 76 - 27 --- 77 - 27 --- 78 - 27 --- 79 - 27 --- 80 - 27 --- 81 - 27 --- 82 - 27 --- 83 - 27 --- 84 - 27 --- 85 - 27 --- 86 - 27 --- 87 - 27 --- 88 - 27 --- 89 - 38 --- 94 - 42 --- 110 - 42 --- 120 - 46 --- 102 - 50 <--x 28 - 50 <--x 49 - 51 <--x 28 - 51 <--x 29 - 52 <--x 29 - 52 <--x 49 - 53 <--x 29 - 53 <--x 30 - 54 <--x 30 - 54 <--x 49 - 55 <--x 30 - 55 <--x 31 - 56 <--x 31 - 56 <--x 49 - 57 <--x 31 - 57 <--x 32 - 58 <--x 32 - 58 <--x 49 - 59 <--x 32 - 59 <--x 33 - 60 <--x 33 - 60 <--x 49 - 61 <--x 33 - 61 <--x 34 - 62 <--x 34 - 62 <--x 49 - 63 <--x 34 - 63 <--x 35 - 64 <--x 35 - 64 <--x 49 - 65 <--x 35 - 65 <--x 36 - 66 <--x 36 - 66 <--x 49 - 67 <--x 36 - 67 <--x 37 - 69 <--x 37 - 69 <--x 38 - 70 <--x 38 - 70 <--x 49 - 71 <--x 38 - 71 <--x 39 - 72 <--x 39 - 72 <--x 49 - 73 <--x 39 - 73 <--x 40 - 74 <--x 40 - 74 <--x 49 - 75 <--x 40 - 75 <--x 41 - 76 <--x 41 - 76 <--x 49 - 77 <--x 41 - 77 <--x 42 - 78 <--x 42 - 78 <--x 49 - 79 <--x 42 - 79 <--x 43 - 80 <--x 43 - 80 <--x 49 - 81 <--x 43 - 81 <--x 44 - 82 <--x 44 - 82 <--x 49 - 83 <--x 44 - 83 <--x 45 - 84 <--x 45 - 84 <--x 49 - 85 <--x 45 - 85 <--x 46 - 86 <--x 46 - 86 <--x 49 - 87 <--x 46 - 87 <--x 47 - 89 <--x 28 - 89 <--x 47 - 68 <--x 91 - 88 <--x 93 - 94 --- 95 - 94 ---- 97 - 94 --- 96 - 95 --- 98 - 95 --- 99 - 95 --- 100 - 95 <--x 38 - 97 --- 98 - 97 --- 99 - 97 --- 100 - 99 <--x 98 - 99 <--x 36 - 100 <--x 98 - 102 --- 103 - 102 ---- 105 - 102 --- 104 - 103 --- 106 - 103 --- 107 - 103 --- 108 - 103 <--x 46 - 105 --- 106 - 105 --- 107 - 105 --- 108 - 107 <--x 106 - 107 <--x 28 - 108 <--x 106 - 110 --- 111 - 110 ---- 113 - 110 --- 112 - 111 --- 114 - 111 --- 115 - 111 --- 116 - 111 <--x 42 - 113 --- 114 - 113 --- 115 - 113 --- 116 - 115 <--x 114 - 115 <--x 32 - 116 <--x 114 - 120 --- 121 - 120 ---- 123 - 120 --- 122 - 121 --- 124 - 121 --- 125 - 121 --- 126 - 121 <--x 42 - 123 --- 124 - 123 --- 125 - 123 --- 126 - 125 <--x 124 - 125 <--x 32 - 126 <--x 124 - 38 <--x 127 - 46 <--x 128 - 42 <--x 129 - 42 <--x 130 + 6 --- 32 + 6 --- 33 + 6 --- 40 + 6 ---- 43 + 7 --- 34 + 7 --- 42 + 7 ---- 44 + 74 --- 7 + 8 --- 35 + 8 --- 39 + 8 ---- 47 + 75 --- 8 + 9 --- 36 + 9 --- 38 + 9 ---- 48 + 76 --- 9 + 10 --- 37 + 10 --- 41 + 10 ---- 52 + 76 --- 10 + 11 --- 70 + 11 x--> 77 + 11 --- 85 + 11 --- 123 + 12 --- 65 + 12 x--> 77 + 12 --- 87 + 12 --- 124 + 13 --- 64 + 13 x--> 77 + 13 --- 94 + 13 --- 125 + 14 --- 67 + 14 x--> 77 + 14 --- 92 + 14 --- 117 + 15 --- 61 + 15 x--> 77 + 15 --- 89 + 15 --- 121 + 17 --- 69 + 17 x--> 77 + 17 --- 101 + 17 --- 118 + 18 --- 73 + 18 x--> 77 + 18 --- 99 + 18 --- 122 + 19 --- 72 + 19 x--> 77 + 19 --- 83 + 19 --- 111 + 20 --- 59 + 20 x--> 77 + 20 --- 91 + 20 --- 120 + 21 --- 60 + 21 x--> 77 + 21 --- 98 + 21 --- 107 + 21 --- 127 + 22 --- 74 + 22 x--> 77 + 22 --- 88 + 22 --- 113 + 23 --- 68 + 23 x--> 77 + 23 --- 93 + 23 --- 109 + 24 --- 62 + 24 x--> 77 + 24 --- 90 + 24 --- 115 + 25 --- 58 + 25 x--> 77 + 25 --- 100 + 25 --- 112 + 26 --- 76 + 26 x--> 77 + 26 --- 84 + 26 --- 114 + 28 --- 71 + 28 x--> 77 + 28 --- 102 + 28 --- 126 + 29 --- 57 + 29 x--> 77 + 29 --- 97 + 29 --- 108 + 30 --- 66 + 30 x--> 77 + 30 --- 96 + 30 --- 116 + 31 --- 75 + 31 x--> 77 + 31 --- 95 + 31 --- 119 + 32 --- 63 + 32 x--> 77 + 32 --- 86 + 32 --- 110 + 32 --- 129 + 34 --- 56 + 34 x--> 74 + 34 --- 82 + 34 --- 106 + 35 --- 53 + 35 x--> 75 + 35 --- 79 + 35 --- 103 + 36 --- 55 + 36 x--> 76 + 36 --- 81 + 36 --- 105 + 37 --- 54 + 37 x--> 76 + 37 --- 80 + 37 --- 104 + 43 --- 57 + 43 --- 58 + 43 --- 59 + 43 --- 60 + 43 --- 61 + 43 --- 62 + 43 --- 63 + 43 --- 64 + 43 --- 65 + 43 --- 66 + 43 --- 67 + 43 --- 68 + 43 --- 69 + 43 --- 70 + 43 --- 71 + 43 --- 72 + 43 --- 73 + 43 --- 74 + 43 --- 75 + 43 --- 76 + 43 --- 77 + 43 --- 78 + 43 --- 83 + 43 --- 84 + 43 --- 85 + 43 --- 86 + 43 --- 87 + 43 --- 88 + 43 --- 89 + 43 --- 90 + 43 --- 91 + 43 --- 92 + 43 --- 93 + 43 --- 94 + 43 --- 95 + 43 --- 96 + 43 --- 97 + 43 --- 98 + 43 --- 99 + 43 --- 100 + 43 --- 101 + 43 --- 102 + 43 --- 107 + 43 --- 108 + 43 --- 109 + 43 --- 110 + 43 --- 111 + 43 --- 112 + 43 --- 113 + 43 --- 114 + 43 --- 115 + 43 --- 116 + 43 --- 117 + 43 --- 118 + 43 --- 119 + 43 --- 120 + 43 --- 121 + 43 --- 122 + 43 --- 123 + 43 --- 124 + 43 --- 125 + 43 --- 126 + 44 --- 56 + 44 --- 82 + 44 --- 106 + 47 --- 53 + 47 --- 79 + 47 --- 103 + 48 --- 55 + 48 --- 81 + 48 --- 105 + 52 --- 54 + 52 --- 80 + 52 --- 104 + 79 <--x 53 + 103 <--x 53 + 80 <--x 54 + 104 <--x 54 + 81 <--x 55 + 105 <--x 55 + 82 <--x 56 + 106 <--x 56 + 97 <--x 57 + 108 <--x 57 + 126 <--x 57 + 100 <--x 58 + 112 <--x 58 + 115 <--x 58 + 82 <--x 59 + 91 <--x 59 + 111 <--x 59 + 120 <--x 59 + 107 <--x 60 + 120 <--x 60 + 80 <--x 61 + 81 <--x 61 + 89 <--x 61 + 117 <--x 61 + 121 <--x 61 + 90 <--x 62 + 109 <--x 62 + 115 <--x 62 + 110 <--x 63 + 119 <--x 63 + 94 <--x 64 + 124 <--x 64 + 125 <--x 64 + 87 <--x 65 + 123 <--x 65 + 124 <--x 65 + 96 <--x 66 + 108 <--x 66 + 116 <--x 66 + 92 <--x 67 + 117 <--x 67 + 125 <--x 67 + 93 <--x 68 + 109 <--x 68 + 113 <--x 68 + 101 <--x 69 + 118 <--x 69 + 121 <--x 69 + 79 <--x 70 + 85 <--x 70 + 110 <--x 70 + 123 <--x 70 + 102 <--x 71 + 114 <--x 71 + 126 <--x 71 + 83 <--x 72 + 111 <--x 72 + 122 <--x 72 + 99 <--x 73 + 118 <--x 73 + 122 <--x 73 + 88 <--x 74 + 107 <--x 74 + 113 <--x 74 + 95 <--x 75 + 116 <--x 75 + 119 <--x 75 + 84 <--x 76 + 112 <--x 76 + 114 <--x 76 + 83 <--x 78 + 84 <--x 78 + 85 <--x 78 + 87 <--x 78 + 88 <--x 78 + 89 <--x 78 + 90 <--x 78 + 91 <--x 78 + 92 <--x 78 + 93 <--x 78 + 94 <--x 78 + 95 <--x 78 + 96 <--x 78 + 97 <--x 78 + 99 <--x 78 + 100 <--x 78 + 101 <--x 78 + 102 <--x 78 + 86 <--x 130 + 98 <--x 128 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/artifact_commands.snap index b25e5a184..2aac53689 100644 --- a/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/artifact_commands.snap @@ -54,6 +54,14 @@ description: Artifact commands socket-head-cap-screw.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -70,33 +78,6 @@ description: Artifact commands socket-head-cap-screw.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 3.9751, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -126,8 +107,27 @@ description: Artifact commands socket-head-cap-screw.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 3.9751, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -157,13 +157,6 @@ description: Artifact commands socket-head-cap-screw.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -172,6 +165,40 @@ description: Artifact commands socket-head-cap-screw.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -181,34 +208,6 @@ description: Artifact commands socket-head-cap-screw.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -219,15 +218,6 @@ description: Artifact commands socket-head-cap-screw.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -266,19 +256,22 @@ description: Artifact commands socket-head-cap-screw.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -301,6 +294,13 @@ description: Artifact commands socket-head-cap-screw.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -417,6 +417,14 @@ description: Artifact commands socket-head-cap-screw.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -428,8 +436,162 @@ description: Artifact commands socket-head-cap-screw.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -445,30 +607,12 @@ description: Artifact commands socket-head-cap-screw.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -483,39 +627,12 @@ description: Artifact commands socket-head-cap-screw.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -530,39 +647,12 @@ description: Artifact commands socket-head-cap-screw.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -577,18 +667,10 @@ description: Artifact commands socket-head-cap-screw.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -605,39 +687,12 @@ description: Artifact commands socket-head-cap-screw.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -652,39 +707,12 @@ description: Artifact commands socket-head-cap-screw.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -699,28 +727,8 @@ description: Artifact commands socket-head-cap-screw.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -735,33 +743,6 @@ description: Artifact commands socket-head-cap-screw.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 2.413, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -791,8 +772,27 @@ description: Artifact commands socket-head-cap-screw.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 2.413, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -818,13 +818,6 @@ description: Artifact commands socket-head-cap-screw.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -833,6 +826,40 @@ description: Artifact commands socket-head-cap-screw.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -842,34 +869,6 @@ description: Artifact commands socket-head-cap-screw.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -884,9 +883,22 @@ description: Artifact commands socket-head-cap-screw.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 0.508, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { @@ -915,17 +927,5 @@ description: Artifact commands socket-head-cap-screw.kcl "roughness": 0.9, "ambient_occlusion": 0.0 } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 0.508, - "tolerance": 0.0000001, - "cut_type": "fillet" - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/artifact_graph_flowchart.snap.md index f25a8c191..78335044b 100644 --- a/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/artifact_graph_flowchart.snap.md @@ -1,168 +1,168 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[665, 735, 0]"] - 3["Segment
[665, 735, 0]"] - 4[Solid2d] + subgraph path4 [Path] + 4["Path
[665, 735, 0]"] + 7["Segment
[665, 735, 0]"] + 16[Solid2d] end - subgraph path13 [Path] - 13["Path
[968, 1049, 0]"] - 14["Segment
[1055, 1106, 0]"] - 15["Segment
[1112, 1163, 0]"] - 16["Segment
[1169, 1220, 0]"] - 17["Segment
[1226, 1276, 0]"] - 18["Segment
[1282, 1332, 0]"] - 19["Segment
[1338, 1345, 0]"] - 20[Solid2d] + subgraph path5 [Path] + 5["Path
[968, 1049, 0]"] + 8["Segment
[1055, 1106, 0]"] + 9["Segment
[1112, 1163, 0]"] + 10["Segment
[1169, 1220, 0]"] + 11["Segment
[1226, 1276, 0]"] + 12["Segment
[1282, 1332, 0]"] + 13["Segment
[1338, 1345, 0]"] + 15[Solid2d] end - subgraph path41 [Path] - 41["Path
[1444, 1513, 0]"] - 42["Segment
[1444, 1513, 0]"] - 43[Solid2d] + subgraph path6 [Path] + 6["Path
[1444, 1513, 0]"] + 14["Segment
[1444, 1513, 0]"] + 17[Solid2d] end 1["Plane
[642, 659, 0]"] - 5["Sweep Extrusion
[741, 774, 0]"] - 6[Wall] - 7["Cap Start"] - 8["Cap End"] - 9["SweepEdge Opposite"] - 10["SweepEdge Adjacent"] - 11["EdgeCut Fillet
[780, 846, 0]"] - 12["EdgeCut Fillet
[780, 846, 0]"] - 21["Sweep Extrusion
[1351, 1391, 0]"] + 2["StartSketchOnFace
[925, 962, 0]"] + 3["StartSketchOnFace
[1403, 1438, 0]"] + 18["Sweep Extrusion
[741, 774, 0]"] + 19["Sweep Extrusion
[1351, 1391, 0]"] + 20["Sweep Extrusion
[1519, 1547, 0]"] + 21[Wall] 22[Wall] 23[Wall] 24[Wall] 25[Wall] 26[Wall] 27[Wall] - 28["Cap Start"] - 29["SweepEdge Opposite"] - 30["SweepEdge Adjacent"] - 31["SweepEdge Opposite"] - 32["SweepEdge Adjacent"] + 28[Wall] + 29["Cap Start"] + 30["Cap Start"] + 31["Cap End"] + 32["Cap End"] 33["SweepEdge Opposite"] - 34["SweepEdge Adjacent"] + 34["SweepEdge Opposite"] 35["SweepEdge Opposite"] - 36["SweepEdge Adjacent"] + 36["SweepEdge Opposite"] 37["SweepEdge Opposite"] - 38["SweepEdge Adjacent"] + 38["SweepEdge Opposite"] 39["SweepEdge Opposite"] - 40["SweepEdge Adjacent"] - 44["Sweep Extrusion
[1519, 1547, 0]"] - 45[Wall] - 46["Cap End"] - 47["SweepEdge Opposite"] + 40["SweepEdge Opposite"] + 41["SweepEdge Adjacent"] + 42["SweepEdge Adjacent"] + 43["SweepEdge Adjacent"] + 44["SweepEdge Adjacent"] + 45["SweepEdge Adjacent"] + 46["SweepEdge Adjacent"] + 47["SweepEdge Adjacent"] 48["SweepEdge Adjacent"] - 49["EdgeCut Fillet
[1553, 1612, 0]"] - 50["StartSketchOnFace
[925, 962, 0]"] - 51["StartSketchOnFace
[1403, 1438, 0]"] - 1 --- 2 - 2 --- 3 - 2 ---- 5 - 2 --- 4 - 3 --- 6 - 3 --- 9 - 3 --- 10 - 3 --- 11 - 3 x--> 8 - 5 --- 6 - 5 --- 7 + 49["EdgeCut Fillet
[780, 846, 0]"] + 50["EdgeCut Fillet
[780, 846, 0]"] + 51["EdgeCut Fillet
[1553, 1612, 0]"] + 1 --- 4 + 30 x--> 2 + 32 x--> 3 + 4 --- 7 + 4 --- 16 + 4 ---- 18 5 --- 8 5 --- 9 5 --- 10 - 7 --- 13 - 8 --- 41 - 10 <--x 6 - 9 <--x 12 - 13 --- 14 - 13 --- 15 - 13 --- 16 - 13 --- 17 - 13 --- 18 - 13 --- 19 - 13 ---- 21 - 13 --- 20 - 14 --- 27 - 14 --- 39 - 14 --- 40 - 14 <--x 7 - 15 --- 26 - 15 --- 37 - 15 --- 38 - 15 <--x 7 - 16 --- 25 - 16 --- 35 - 16 --- 36 - 16 <--x 7 - 17 --- 24 - 17 --- 33 - 17 --- 34 - 17 <--x 7 - 18 --- 23 - 18 --- 31 + 5 --- 11 + 5 --- 12 + 5 --- 13 + 5 --- 15 + 5 ---- 19 + 30 --- 5 + 6 --- 14 + 6 --- 17 + 6 ---- 20 + 32 --- 6 + 7 --- 28 + 7 x--> 32 + 7 --- 40 + 7 --- 48 + 7 --- 49 + 8 --- 26 + 8 x--> 30 + 8 --- 36 + 8 --- 43 + 9 --- 27 + 9 x--> 30 + 9 --- 34 + 9 --- 45 + 10 --- 24 + 10 x--> 30 + 10 --- 38 + 10 --- 47 + 11 --- 25 + 11 x--> 30 + 11 --- 39 + 11 --- 42 + 12 --- 23 + 12 x--> 30 + 12 --- 37 + 12 --- 46 + 13 --- 22 + 13 x--> 30 + 13 --- 35 + 13 --- 44 + 14 --- 21 + 14 x--> 32 + 14 --- 33 + 14 --- 41 + 18 --- 28 + 18 --- 30 18 --- 32 - 18 <--x 7 + 18 --- 40 + 18 --- 48 19 --- 22 + 19 --- 23 + 19 --- 24 + 19 --- 25 + 19 --- 26 + 19 --- 27 19 --- 29 - 19 --- 30 - 19 <--x 7 - 21 --- 22 - 21 --- 23 - 21 --- 24 - 21 --- 25 - 21 --- 26 - 21 --- 27 - 21 --- 28 - 21 --- 29 - 21 --- 30 - 21 --- 31 - 21 --- 32 - 21 --- 33 - 21 --- 34 - 21 --- 35 - 21 --- 36 - 21 --- 37 - 21 --- 38 - 21 --- 39 - 21 --- 40 - 29 <--x 22 - 29 <--x 28 - 30 <--x 22 - 30 <--x 27 - 31 <--x 23 - 31 <--x 28 - 32 <--x 22 - 32 <--x 23 - 33 <--x 24 - 33 <--x 28 - 34 <--x 23 - 34 <--x 24 - 35 <--x 25 - 35 <--x 28 - 36 <--x 24 - 36 <--x 25 - 37 <--x 26 - 37 <--x 28 - 38 <--x 25 - 38 <--x 26 - 39 <--x 27 - 39 <--x 28 - 40 <--x 26 - 40 <--x 27 - 41 --- 42 - 41 ---- 44 - 41 --- 43 - 42 --- 45 - 42 --- 47 - 42 --- 48 - 42 <--x 8 - 44 --- 45 - 44 --- 46 - 44 --- 47 - 44 --- 48 - 48 <--x 45 - 47 <--x 49 - 7 <--x 50 - 8 <--x 51 + 19 --- 34 + 19 --- 35 + 19 --- 36 + 19 --- 37 + 19 --- 38 + 19 --- 39 + 19 --- 42 + 19 --- 43 + 19 --- 44 + 19 --- 45 + 19 --- 46 + 19 --- 47 + 20 --- 21 + 20 --- 31 + 20 --- 33 + 20 --- 41 + 41 <--x 21 + 35 <--x 22 + 44 <--x 22 + 46 <--x 22 + 37 <--x 23 + 42 <--x 23 + 46 <--x 23 + 38 <--x 24 + 45 <--x 24 + 47 <--x 24 + 39 <--x 25 + 42 <--x 25 + 47 <--x 25 + 36 <--x 26 + 43 <--x 26 + 44 <--x 26 + 34 <--x 27 + 43 <--x 27 + 45 <--x 27 + 48 <--x 28 + 34 <--x 29 + 35 <--x 29 + 36 <--x 29 + 37 <--x 29 + 38 <--x 29 + 39 <--x 29 + 33 <--x 51 + 40 <--x 50 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/ops.snap b/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/ops.snap index b0e723d56..b1da92de3 100644 --- a/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/ops.snap @@ -14,9 +14,6 @@ description: Operations executed socket-head-cap-screw.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "planeOrSolid": { @@ -266,5 +263,8 @@ description: Operations executed socket-head-cap-screw.kcl } }, "sourceRange": [] + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/kcl_samples/walkie-talkie/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/walkie-talkie/artifact_commands.snap index a16a1700f..0ad5c948d 100644 --- a/rust/kcl-lib/tests/kcl_samples/walkie-talkie/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/walkie-talkie/artifact_commands.snap @@ -310,13 +310,6 @@ description: Artifact commands walkie-talkie.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -337,6 +330,13 @@ description: Artifact commands walkie-talkie.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -423,6 +423,14 @@ description: Artifact commands walkie-talkie.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -434,8 +442,108 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -451,9 +559,40 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -470,39 +609,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -513,43 +625,6 @@ description: Artifact commands walkie-talkie.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -560,121 +635,6 @@ description: Artifact commands walkie-talkie.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -723,6 +683,46 @@ description: Artifact commands walkie-talkie.kcl "cut_type": "chamfer" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -735,13 +735,6 @@ description: Artifact commands walkie-talkie.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -762,6 +755,13 @@ description: Artifact commands walkie-talkie.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -912,6 +912,14 @@ description: Artifact commands walkie-talkie.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -923,8 +931,216 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -940,30 +1156,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -978,39 +1176,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1025,39 +1196,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1072,39 +1216,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1119,18 +1236,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1147,39 +1256,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1194,39 +1276,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1237,43 +1292,6 @@ description: Artifact commands walkie-talkie.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1288,30 +1306,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1324,13 +1324,6 @@ description: Artifact commands walkie-talkie.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1351,6 +1344,13 @@ description: Artifact commands walkie-talkie.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1450,6 +1450,14 @@ description: Artifact commands walkie-talkie.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1461,8 +1469,108 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1478,30 +1586,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1516,39 +1606,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1563,18 +1626,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1587,43 +1642,6 @@ description: Artifact commands walkie-talkie.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1638,30 +1656,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1674,13 +1674,6 @@ description: Artifact commands walkie-talkie.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1701,6 +1694,13 @@ description: Artifact commands walkie-talkie.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1783,6 +1783,14 @@ description: Artifact commands walkie-talkie.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1794,8 +1802,108 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1811,30 +1919,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1849,39 +1939,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1896,18 +1959,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1920,43 +1975,6 @@ description: Artifact commands walkie-talkie.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1971,30 +1989,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2053,13 +2053,6 @@ description: Artifact commands walkie-talkie.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2080,6 +2073,13 @@ description: Artifact commands walkie-talkie.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2197,13 +2197,6 @@ description: Artifact commands walkie-talkie.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2224,6 +2217,13 @@ description: Artifact commands walkie-talkie.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6596,13 +6596,6 @@ description: Artifact commands walkie-talkie.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -6623,6 +6616,13 @@ description: Artifact commands walkie-talkie.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -6750,6 +6750,15 @@ description: Artifact commands walkie-talkie.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -6772,9 +6781,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -6790,9 +6799,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -6808,9 +6817,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -6826,9 +6835,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -6844,9 +6853,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -6862,9 +6871,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -6880,9 +6889,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -6898,9 +6907,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -6916,9 +6925,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -6934,9 +6943,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -6952,9 +6961,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -6970,9 +6979,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -6988,9 +6997,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7006,9 +7015,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7024,9 +7033,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7042,9 +7051,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7060,9 +7069,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7078,9 +7087,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7096,9 +7105,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7114,9 +7123,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7132,9 +7141,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7150,9 +7159,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7168,9 +7177,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7186,9 +7195,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7204,9 +7213,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7222,9 +7231,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7240,9 +7249,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7258,9 +7267,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7276,9 +7285,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7294,9 +7303,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7312,9 +7321,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7330,9 +7339,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7348,9 +7357,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7366,9 +7375,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7384,9 +7393,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7402,9 +7411,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7420,9 +7429,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7438,9 +7447,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7456,9 +7465,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7474,9 +7483,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7492,9 +7501,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7510,9 +7519,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7528,9 +7537,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7546,9 +7555,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7564,9 +7573,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7582,9 +7591,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7600,9 +7609,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7618,9 +7627,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7636,9 +7645,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7654,9 +7663,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7672,9 +7681,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7690,9 +7699,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7708,9 +7717,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7726,9 +7735,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7744,9 +7753,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7762,9 +7771,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7780,9 +7789,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7798,9 +7807,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7816,9 +7825,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7834,9 +7843,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7852,9 +7861,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7870,9 +7879,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7888,9 +7897,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7906,9 +7915,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7924,9 +7933,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7942,9 +7951,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7960,9 +7969,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7978,9 +7987,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -7996,9 +8005,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -8014,9 +8023,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -8032,9 +8041,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { @@ -8059,9 +8068,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8077,9 +8086,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8095,9 +8104,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8113,9 +8122,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8131,9 +8140,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8149,9 +8158,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8167,9 +8176,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8185,9 +8194,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8203,9 +8212,18 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" } }, { @@ -8221,9 +8239,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8239,9 +8257,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8257,9 +8275,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8275,9 +8293,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8293,9 +8311,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8311,9 +8329,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8329,9 +8347,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8347,9 +8365,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8365,9 +8383,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8383,9 +8401,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8401,9 +8419,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8419,9 +8437,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8437,9 +8455,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8455,9 +8473,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8473,9 +8491,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8491,9 +8509,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8509,9 +8527,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8527,9 +8545,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8545,9 +8563,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8563,9 +8581,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8581,9 +8599,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8599,9 +8617,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8617,9 +8635,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8635,9 +8653,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8653,9 +8671,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8671,9 +8689,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8689,9 +8707,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8707,9 +8725,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8725,9 +8743,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8743,9 +8761,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8761,9 +8779,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8779,9 +8797,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8797,9 +8815,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8815,9 +8833,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8833,9 +8851,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8851,9 +8869,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8869,9 +8887,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8887,9 +8905,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8905,9 +8923,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8923,9 +8941,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8941,9 +8959,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8959,9 +8977,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8977,9 +8995,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -8995,9 +9013,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9013,9 +9031,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9031,9 +9049,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9049,9 +9067,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9067,9 +9085,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9085,9 +9103,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9103,9 +9121,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9121,9 +9139,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9139,9 +9157,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9157,9 +9175,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9175,9 +9193,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9193,9 +9211,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9211,9 +9229,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9229,9 +9247,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9247,9 +9265,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9265,9 +9283,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9283,9 +9301,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9301,9 +9319,9 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9319,27 +9337,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9371,18 +9389,18 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9414,18 +9432,18 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9457,18 +9475,18 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9500,18 +9518,18 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", + "type": "object_visible", "object_id": "[uuid]", - "hole_id": "[uuid]" + "hidden": true } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", + "type": "solid2d_add_hole", "object_id": "[uuid]", - "hidden": true + "hole_id": "[uuid]" } }, { @@ -9539,24 +9557,6 @@ description: Artifact commands walkie-talkie.kcl "hide": true } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -9584,6 +9584,14 @@ description: Artifact commands walkie-talkie.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -9595,8 +9603,16632 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -9612,16 +26244,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -9631,9 +26264,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -9650,25 +26284,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -9678,9 +26314,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -9697,25 +26334,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -9725,9 +26364,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -9744,25 +26384,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -9772,9 +26414,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -9791,25 +26434,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -9819,9 +26464,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -9838,25 +26484,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -9866,9 +26514,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -9885,25 +26534,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -9913,9 +26564,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -9932,25 +26584,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -9960,9 +26614,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -9979,25 +26634,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10007,9 +26664,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10026,25 +26684,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10054,9 +26714,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10073,25 +26734,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10101,9 +26764,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10120,25 +26784,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10148,9 +26814,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10167,25 +26834,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10195,9 +26864,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10214,25 +26884,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10242,9 +26914,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10261,25 +26934,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10289,9 +26964,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10308,25 +26984,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10336,9 +27014,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10355,25 +27034,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10383,9 +27064,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10402,25 +27084,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10430,9 +27114,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10449,25 +27134,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10477,9 +27164,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10496,25 +27184,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10524,9 +27214,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10543,25 +27234,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10571,9 +27264,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10590,25 +27284,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10618,9 +27314,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10637,25 +27334,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10665,9 +27364,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10684,25 +27384,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10712,9 +27414,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10731,25 +27434,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10759,9 +27464,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10778,25 +27484,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10806,9 +27514,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10825,25 +27534,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10853,9 +27564,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10872,25 +27584,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10900,9 +27614,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10919,25 +27634,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10947,9 +27664,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -10966,25 +27684,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -10994,9 +27714,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11013,25 +27734,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11041,9 +27764,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11060,25 +27784,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11088,9 +27814,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11107,25 +27834,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11135,9 +27864,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11154,25 +27884,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11182,9 +27914,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11201,25 +27934,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11229,9 +27964,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11248,25 +27984,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11276,9 +28014,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11295,25 +28034,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11323,9 +28064,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11342,25 +28084,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11370,9 +28114,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11389,25 +28134,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11417,9 +28164,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11436,25 +28184,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11464,9 +28214,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11483,25 +28234,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11511,9 +28264,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11530,25 +28284,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11558,9 +28314,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11577,25 +28334,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11605,9 +28364,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11624,25 +28384,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11652,9 +28414,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11671,25 +28434,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11699,9 +28464,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11718,25 +28484,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11746,9 +28514,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11765,25 +28534,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11793,9 +28564,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11812,25 +28584,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11840,9 +28614,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11859,25 +28634,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11887,9 +28664,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11906,25 +28684,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11934,9 +28714,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -11953,25 +28734,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -11981,9 +28764,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12000,25 +28784,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12028,9 +28814,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12047,25 +28834,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12075,9 +28864,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12094,25 +28884,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12122,9 +28914,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12141,25 +28934,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12169,9 +28964,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12188,25 +28984,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12216,9 +29014,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12235,25 +29034,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12263,9 +29064,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12282,25 +29084,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12310,9 +29114,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12329,25 +29134,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12357,9 +29164,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12376,25 +29184,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12404,9 +29214,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12423,25 +29234,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12451,9 +29264,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12470,25 +29284,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12498,9 +29314,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12517,25 +29334,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12545,9 +29364,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12564,25 +29384,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12592,9 +29414,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12611,25 +29434,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12639,9 +29464,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12658,25 +29484,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12686,9 +29514,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12705,25 +29534,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12733,9 +29564,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12752,25 +29584,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12780,9 +29614,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12799,25 +29634,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12827,9 +29664,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12846,25 +29684,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12874,9 +29714,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12893,25 +29734,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12921,9 +29764,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12940,25 +29784,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -12968,9 +29814,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -12987,25 +29834,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13015,9 +29864,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13034,25 +29884,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13062,9 +29914,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13081,25 +29934,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13109,9 +29964,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13128,25 +29984,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13156,9 +30014,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13175,25 +30034,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13203,9 +30064,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13222,25 +30084,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13250,9 +30114,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13269,25 +30134,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13297,9 +30164,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13316,25 +30184,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13344,9 +30214,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13363,25 +30234,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13391,9 +30264,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13410,25 +30284,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13438,9 +30314,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13457,25 +30334,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13485,9 +30364,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13504,25 +30384,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13532,9 +30414,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13551,25 +30434,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13579,9 +30464,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13598,25 +30484,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13626,9 +30514,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13645,25 +30534,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13673,9 +30564,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13692,25 +30584,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13720,9 +30614,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13739,25 +30634,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13767,9 +30664,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13786,25 +30684,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13814,9 +30714,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13833,25 +30734,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13861,9 +30764,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13880,25 +30784,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13908,9 +30814,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13927,25 +30834,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -13955,9 +30864,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -13974,17241 +30884,22 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -31223,39 +30914,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -31270,39 +30934,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -31317,39 +30954,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -31364,39 +30974,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -31411,39 +30994,12 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -31458,25 +31014,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -31486,9 +31034,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -31505,25 +31054,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -31533,9 +31084,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -31552,25 +31104,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -31580,9 +31134,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -31599,25 +31154,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -31627,9 +31184,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -31646,25 +31204,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -31674,9 +31234,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -31693,25 +31254,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -31721,9 +31284,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -31740,25 +31304,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -31768,9 +31334,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -31787,25 +31354,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -31815,9 +31384,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -31834,25 +31404,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -31862,9 +31434,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -31881,25 +31454,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -31909,9 +31484,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -31928,25 +31504,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -31956,9 +31534,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -31975,25 +31554,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32003,9 +31584,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32022,25 +31604,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32050,9 +31634,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32069,25 +31654,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32097,9 +31684,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32116,25 +31704,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32144,9 +31734,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32163,25 +31754,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32191,9 +31784,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32210,25 +31804,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32238,9 +31834,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32257,25 +31854,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32285,9 +31884,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32304,25 +31904,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32332,9 +31934,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32351,25 +31954,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32379,9 +31984,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32398,25 +32004,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32426,9 +32034,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32445,25 +32054,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32473,9 +32084,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32492,25 +32104,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32520,9 +32134,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32539,25 +32154,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32567,9 +32184,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32586,25 +32204,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32614,9 +32234,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32633,25 +32254,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32661,9 +32284,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32680,25 +32304,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32708,9 +32334,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32727,25 +32354,27 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32755,9 +32384,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32774,18 +32404,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32802,16 +32434,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32821,18 +32454,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32849,16 +32484,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32868,18 +32504,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32896,16 +32534,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32915,18 +32554,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32943,16 +32584,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -32962,18 +32604,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -32990,16 +32634,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33009,18 +32654,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33037,16 +32684,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33056,18 +32704,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33084,16 +32734,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33103,18 +32754,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33131,16 +32784,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33150,18 +32804,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33178,16 +32834,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33197,18 +32854,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33225,16 +32884,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33244,18 +32904,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33272,16 +32934,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33291,18 +32954,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33319,16 +32984,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33338,18 +33004,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33366,16 +33034,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33385,18 +33054,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33413,16 +33084,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33432,18 +33104,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33460,16 +33134,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33479,18 +33154,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33507,16 +33184,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33526,18 +33204,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33554,16 +33234,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33573,18 +33254,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33601,16 +33284,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33620,18 +33304,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33648,16 +33334,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33667,18 +33354,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33695,16 +33384,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33714,18 +33404,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33742,16 +33434,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33761,18 +33454,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33789,16 +33484,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33808,18 +33504,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33836,16 +33534,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33855,18 +33554,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33883,16 +33584,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33902,18 +33604,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33930,16 +33634,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33949,18 +33654,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -33977,16 +33684,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -33996,18 +33704,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34024,16 +33734,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34043,18 +33754,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34071,16 +33784,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34090,18 +33804,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34118,16 +33834,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34137,18 +33854,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34165,16 +33884,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34184,18 +33904,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34212,16 +33934,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34231,18 +33954,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34259,16 +33984,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34278,18 +34004,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34306,16 +34034,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34325,18 +34054,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34353,16 +34084,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34372,18 +34104,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34400,16 +34134,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34419,18 +34154,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34447,16 +34184,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34466,18 +34204,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34494,16 +34234,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34513,18 +34254,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34541,16 +34284,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34560,18 +34304,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34588,16 +34334,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34607,18 +34354,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34635,16 +34384,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34654,18 +34404,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34682,16 +34434,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34701,18 +34454,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34729,16 +34484,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34748,18 +34504,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34776,16 +34534,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34795,18 +34554,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34823,16 +34584,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34842,18 +34604,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34870,16 +34634,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34889,18 +34654,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34917,16 +34684,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34936,18 +34704,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -34964,16 +34734,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -34983,18 +34754,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35011,16 +34784,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35030,18 +34804,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35058,16 +34834,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35077,18 +34854,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35105,16 +34884,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35124,18 +34904,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35152,16 +34934,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35171,18 +34954,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35199,16 +34984,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35218,18 +35004,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35246,16 +35034,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35265,18 +35054,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35293,16 +35084,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35312,18 +35104,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35340,16 +35134,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35359,18 +35154,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35387,16 +35184,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35406,18 +35204,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35434,16 +35234,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35453,18 +35254,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35481,16 +35284,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35500,18 +35304,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35528,16 +35334,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35547,18 +35354,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35575,16 +35384,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35594,18 +35404,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35622,16 +35434,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35641,18 +35454,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35669,16 +35484,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35688,18 +35504,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35716,16 +35534,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35735,18 +35554,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35763,16 +35584,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35782,18 +35604,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35810,16 +35634,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35829,18 +35654,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35857,16 +35684,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35876,18 +35704,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35904,16 +35734,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35923,18 +35754,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35951,16 +35784,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -35970,18 +35804,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -35998,16 +35834,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36017,18 +35854,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36045,16 +35884,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36064,18 +35904,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36092,16 +35934,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36111,18 +35954,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36139,16 +35984,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36158,18 +36004,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36186,16 +36034,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36205,18 +36054,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36233,16 +36084,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36252,18 +36104,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36280,16 +36134,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36299,18 +36154,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36327,16 +36184,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36346,18 +36204,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36374,16 +36234,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36393,18 +36254,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36421,16 +36284,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36440,18 +36304,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36468,16 +36334,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36487,18 +36354,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36515,16 +36384,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36534,18 +36404,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36562,16 +36434,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36581,18 +36454,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36609,16 +36484,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36628,18 +36504,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36656,16 +36534,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36675,18 +36554,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36703,16 +36584,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36722,18 +36604,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36750,16 +36634,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36769,18 +36654,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36797,16 +36684,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36816,18 +36704,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36844,16 +36734,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36863,18 +36754,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36891,16 +36784,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36910,18 +36804,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36938,16 +36834,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -36957,18 +36854,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -36985,16 +36884,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37004,18 +36904,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37032,16 +36934,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37051,18 +36954,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37079,16 +36984,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37098,18 +37004,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37126,16 +37034,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37145,18 +37054,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37173,16 +37084,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37192,18 +37104,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37220,16 +37134,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37239,18 +37154,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37267,16 +37184,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37286,18 +37204,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37314,16 +37234,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37333,18 +37254,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37361,16 +37284,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37380,18 +37304,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37408,16 +37334,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37427,18 +37354,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37455,16 +37384,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37474,18 +37404,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37502,16 +37434,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37521,18 +37454,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37549,16 +37484,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37568,18 +37504,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37596,16 +37534,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37615,18 +37554,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37643,16 +37584,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37662,18 +37604,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37690,16 +37634,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37709,18 +37654,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37737,16 +37684,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37756,18 +37704,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37784,16 +37734,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37803,18 +37754,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37831,16 +37784,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37850,18 +37804,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37878,16 +37834,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37897,18 +37854,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37925,16 +37884,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37944,18 +37904,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -37972,16 +37934,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -37991,18 +37954,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -38019,16 +37984,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -38038,18 +38004,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -38066,16 +38034,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -38085,18 +38054,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -38113,16 +38084,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -38132,18 +38104,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -38160,16 +38134,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -38179,18 +38154,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -38207,16 +38184,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -38226,18 +38204,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -38254,16 +38234,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -38273,18 +38254,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -38301,16 +38284,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -38320,18 +38304,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -38348,16 +38334,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -38367,18 +38354,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -38395,16 +38384,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -38414,18 +38404,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -38442,16 +38434,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -38461,18 +38454,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -38489,16 +38484,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -38508,18 +38504,20 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -38536,16 +38534,17 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -38555,9 +38554,10 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -38577,1016 +38577,6 @@ description: Artifact commands walkie-talkie.kcl "ambient_occlusion": 0.0 } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 12.7, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -6.35, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -12.7, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 76.19999999999999 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 100.0, - "clobber": false, - "hide": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "plane_set_color", - "plane_id": "[uuid]", - "color": { - "r": 0.6, - "g": 0.6, - "b": 0.6, - "a": 0.3 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 2.54, - "y": 2.54, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 7.62, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.27, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -7.62, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "loft", - "section_ids": [ - "[uuid]", - "[uuid]" - ], - "v_degree": 2, - "bez_approximate_rational": false, - "base_curve_index": null, - "tolerance": 0.0000001 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -6.35, - "y": 6.35, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 12.7, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -12.7, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -12.7, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.27, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.8156863, - "g": 1.0, - "b": 0.003921569, - "a": 100.0 - }, - "metalness": 0.9, - "roughness": 0.9, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 1.27, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 1.27, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 1.27, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 1.27, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, { "cmdId": "[uuid]", "range": [], @@ -39603,2142 +38593,6 @@ description: Artifact commands walkie-talkie.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.00254, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 6.35, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 5.08, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 5.0825, - "y": 5.08 - }, - "radius": 1.27, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 90.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0025, - "y": 6.35, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "revolve", - "target": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "axis_is_2d": true, - "angle": { - "unit": "degrees", - "value": 360.0 - }, - "tolerance": 0.0000001, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 0.8156863, - "g": 1.0, - "b": 0.003921569, - "a": 100.0 - }, - "metalness": 0.9, - "roughness": 0.5, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -3.81, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -0.0, - "y": -12.192, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 3.81, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.016, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 1.0, - "g": 0.0, - "b": 0.0, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 1.27, - "tolerance": 0.0000001, - "cut_type": "chamfer" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 1.27, - "tolerance": 0.0000001, - "cut_type": "chamfer" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -3.81, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -0.0, - "y": -12.192, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 3.81, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.016, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 1.0, - "g": 0.0, - "b": 0.0, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 1.27, - "tolerance": 0.0000001, - "cut_type": "chamfer" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 1.27, - "tolerance": 0.0000001, - "cut_type": "chamfer" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -3.81, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -0.0, - "y": -12.192, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 3.81, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.016, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 1.0, - "g": 0.0, - "b": 0.0, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 1.27, - "tolerance": 0.0000001, - "cut_type": "chamfer" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 1.27, - "tolerance": 0.0000001, - "cut_type": "chamfer" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -3.81, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -0.0, - "y": -12.192, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 3.81, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.016, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_set_material_params_pbr", - "object_id": "[uuid]", - "color": { - "r": 1.0, - "g": 0.0, - "b": 0.0, - "a": 100.0 - }, - "metalness": 0.0, - "roughness": 0.0, - "ambient_occlusion": 0.0 - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 1.27, - "tolerance": 0.0000001, - "cut_type": "chamfer" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 1.27, - "tolerance": 0.0000001, - "cut_type": "chamfer" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -41759,6 +38613,13 @@ description: Artifact commands walkie-talkie.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -42042,7 +38903,16 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { @@ -42058,6 +38928,19 @@ description: Artifact commands walkie-talkie.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 8.448039999999999, + "y": -41.67632, + "z": 0.0 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -42065,6 +38948,27 @@ description: Artifact commands walkie-talkie.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -42090,217 +38994,6 @@ description: Artifact commands walkie-talkie.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.8292, - "y": 0.8938, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.5009, - "y": -43.8086 - }, - "radius": 1.46304, - "start": { - "unit": "degrees", - "value": 216.15 - }, - "end": { - "unit": "degrees", - "value": 58.15 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -1.0921999999999998, - "y": -45.95368, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.5073, - "y": -43.8195 - }, - "radius": 2.6670000000000003, - "start": { - "unit": "degrees", - "value": -126.85 - }, - "end": { - "unit": "degrees", - "value": 41.15 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -0.8292, - "y": -0.8938, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.505, - "y": -43.8214 - }, - "radius": 1.46304, - "start": { - "unit": "degrees", - "value": 36.15 - }, - "end": { - "unit": "degrees", - "value": -121.85 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 8.448039999999999, - "y": -41.67632, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -42343,6 +39036,48 @@ description: Artifact commands walkie-talkie.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.8292, + "y": 0.8938, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.5009, + "y": -43.8086 + }, + "radius": 1.46304, + "start": { + "unit": "degrees", + "value": 216.15 + }, + "end": { + "unit": "degrees", + "value": 58.15 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -42376,6 +39111,14 @@ description: Artifact commands walkie-talkie.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -42396,7 +39139,29 @@ description: Artifact commands walkie-talkie.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -1.0921999999999998, + "y": -45.95368, + "z": 0.0 + } } }, { @@ -42419,6 +39184,52 @@ description: Artifact commands walkie-talkie.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.5073, + "y": -43.8195 + }, + "radius": 2.6670000000000003, + "start": { + "unit": "degrees", + "value": -126.85 + }, + "end": { + "unit": "degrees", + "value": 41.15 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -42461,6 +39272,48 @@ description: Artifact commands walkie-talkie.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.8292, + "y": -0.8938, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.505, + "y": -43.8214 + }, + "radius": 1.46304, + "start": { + "unit": "degrees", + "value": 36.15 + }, + "end": { + "unit": "degrees", + "value": -121.85 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -42493,5 +39346,3152 @@ description: Artifact commands walkie-talkie.kcl "type": "close_path", "path_id": "[uuid]" } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 12.7, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -6.35, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -12.7, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 76.19999999999999 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 2.54, + "y": 2.54, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 7.62, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.27, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -7.62, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "loft", + "section_ids": [ + "[uuid]", + "[uuid]" + ], + "v_degree": 2, + "bez_approximate_rational": false, + "base_curve_index": null, + "tolerance": 0.0000001 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -6.35, + "y": 6.35, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 12.7, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -12.7, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -12.7, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 1.27, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 1.27, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 1.27, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 1.27, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 1.27, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.8156863, + "g": 1.0, + "b": 0.003921569, + "a": 100.0 + }, + "metalness": 0.9, + "roughness": 0.9, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.00254, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 6.35, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 5.08, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 5.0825, + "y": 5.08 + }, + "radius": 1.27, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 90.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0025, + "y": 6.35, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "revolve", + "target": "[uuid]", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "axis_is_2d": true, + "angle": { + "unit": "degrees", + "value": 360.0 + }, + "tolerance": 0.0000001, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 0.8156863, + "g": 1.0, + "b": 0.003921569, + "a": 100.0 + }, + "metalness": 0.9, + "roughness": 0.5, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -3.81, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -3.81, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -3.81, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -3.81, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.0, + "y": -12.192, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.0, + "y": -12.192, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.0, + "y": -12.192, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.0, + "y": -12.192, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 3.81, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 3.81, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 3.81, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 3.81, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 1.016, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 1.016, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 1.016, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 1.016, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 1.27, + "tolerance": 0.0000001, + "cut_type": "chamfer" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 1.27, + "tolerance": 0.0000001, + "cut_type": "chamfer" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 1.27, + "tolerance": 0.0000001, + "cut_type": "chamfer" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 1.27, + "tolerance": 0.0000001, + "cut_type": "chamfer" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 1.27, + "tolerance": 0.0000001, + "cut_type": "chamfer" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 1.27, + "tolerance": 0.0000001, + "cut_type": "chamfer" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 1.27, + "tolerance": 0.0000001, + "cut_type": "chamfer" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 1.27, + "tolerance": 0.0000001, + "cut_type": "chamfer" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 1.0, + "g": 0.0, + "b": 0.0, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 1.0, + "g": 0.0, + "b": 0.0, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 1.0, + "g": 0.0, + "b": 0.0, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_set_material_params_pbr", + "object_id": "[uuid]", + "color": { + "r": 1.0, + "g": 0.0, + "b": 0.0, + "a": 100.0 + }, + "metalness": 0.0, + "roughness": 0.0, + "ambient_occlusion": 0.0 + } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/walkie-talkie/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/walkie-talkie/artifact_graph_flowchart.snap.md index 35f83292a..0d01a7cb4 100644 --- a/rust/kcl-lib/tests/kcl_samples/walkie-talkie/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/walkie-talkie/artifact_graph_flowchart.snap.md @@ -1,284 +1,247 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[391, 434, 9]"] - 3["Segment
[440, 478, 9]"] - 4["Segment
[484, 524, 9]"] - 5["Segment
[530, 569, 9]"] - 6["Segment
[575, 597, 9]"] - 7[Solid2d] + subgraph path18 [Path] + 18["Path
[391, 434, 9]"] + 38["Segment
[440, 478, 9]"] + 39["Segment
[484, 524, 9]"] + 40["Segment
[530, 569, 9]"] + 41["Segment
[575, 597, 9]"] + 151[Solid2d] end - subgraph path27 [Path] - 27["Path
[968, 1085, 9]"] - 28["Segment
[1091, 1149, 9]"] - 29["Segment
[1155, 1272, 9]"] - 30["Segment
[1278, 1336, 9]"] - 31["Segment
[1342, 1462, 9]"] - 32["Segment
[1468, 1529, 9]"] - 33["Segment
[1535, 1656, 9]"] - 34["Segment
[1662, 1722, 9]"] - 35["Segment
[1728, 1735, 9]"] - 36[Solid2d] + subgraph path19 [Path] + 19["Path
[968, 1085, 9]"] + 42["Segment
[1091, 1149, 9]"] + 43["Segment
[1155, 1272, 9]"] + 44["Segment
[1278, 1336, 9]"] + 45["Segment
[1342, 1462, 9]"] + 46["Segment
[1468, 1529, 9]"] + 47["Segment
[1535, 1656, 9]"] + 48["Segment
[1662, 1722, 9]"] + 49["Segment
[1728, 1735, 9]"] + 137[Solid2d] end - subgraph path63 [Path] - 63["Path
[1890, 1944, 9]"] - 64["Segment
[1950, 1991, 9]"] - 65["Segment
[1997, 2026, 9]"] - 66["Segment
[2032, 2062, 9]"] - 67["Segment
[2068, 2124, 9]"] - 68["Segment
[2130, 2137, 9]"] - 69[Solid2d] + subgraph path20 [Path] + 20["Path
[1890, 1944, 9]"] + 50["Segment
[1950, 1991, 9]"] + 51["Segment
[1997, 2026, 9]"] + 52["Segment
[2032, 2062, 9]"] + 53["Segment
[2068, 2124, 9]"] + 54["Segment
[2130, 2137, 9]"] + 156[Solid2d] end - subgraph path84 [Path] - 84["Path
[2280, 2317, 9]"] - 85["Segment
[2323, 2354, 9]"] - 86["Segment
[2360, 2393, 9]"] - 87["Segment
[2399, 2431, 9]"] - 88["Segment
[2437, 2444, 9]"] - 89[Solid2d] + subgraph path21 [Path] + 21["Path
[2280, 2317, 9]"] + 55["Segment
[2323, 2354, 9]"] + 56["Segment
[2360, 2393, 9]"] + 57["Segment
[2399, 2431, 9]"] + 58["Segment
[2437, 2444, 9]"] + 146[Solid2d] end - subgraph path105 [Path] - 105["Path
[330, 355, 11]"] - 106["Segment
[361, 394, 11]"] - 107["Segment
[400, 435, 11]"] - 108["Segment
[441, 475, 11]"] - 109["Segment
[481, 488, 11]"] - 110[Solid2d] + subgraph path22 [Path] + 22["Path
[478, 532, 10]"] + 59["Segment
[538, 565, 10]"] + 60["Segment
[571, 600, 10]"] + 61["Segment
[606, 634, 10]"] + 62["Segment
[640, 696, 10]"] + 63["Segment
[702, 709, 10]"] + 155[Solid2d] end - subgraph path112 [Path] - 112["Path
[624, 750, 11]"] - 117[Solid2d] + subgraph path23 [Path] + 23["Path
[980, 1027, 10]"] + 64["Segment
[1033, 1074, 10]"] + 65["Segment
[1080, 1122, 10]"] + 66["Segment
[1128, 1170, 10]"] + 67["Segment
[1176, 1183, 10]"] + 148[Solid2d] end - subgraph path130 [Path] - 130["Path
[478, 532, 10]"] - 131["Segment
[538, 565, 10]"] - 132["Segment
[571, 600, 10]"] - 133["Segment
[606, 634, 10]"] - 134["Segment
[640, 696, 10]"] - 135["Segment
[702, 709, 10]"] - 136[Solid2d] - end - subgraph path138 [Path] - 138["Path
[980, 1027, 10]"] - 139["Segment
[1033, 1074, 10]"] - 140["Segment
[1080, 1122, 10]"] - 141["Segment
[1128, 1170, 10]"] - 142["Segment
[1176, 1183, 10]"] + subgraph path24 [Path] + 24["Path
[1441, 1592, 10]"] + 68["Segment
[1598, 1674, 10]"] + 69["Segment
[1680, 1833, 10]"] + 70["Segment
[1839, 1915, 10]"] + 71["Segment
[1921, 2077, 10]"] + 72["Segment
[2083, 2160, 10]"] + 73["Segment
[2166, 2321, 10]"] + 74["Segment
[2327, 2403, 10]"] + 75["Segment
[2409, 2416, 10]"] 143[Solid2d] end - subgraph path145 [Path] - 145["Path
[1441, 1592, 10]"] - 146["Segment
[1598, 1674, 10]"] - 147["Segment
[1680, 1833, 10]"] - 148["Segment
[1839, 1915, 10]"] - 149["Segment
[1921, 2077, 10]"] - 150["Segment
[2083, 2160, 10]"] - 151["Segment
[2166, 2321, 10]"] - 152["Segment
[2327, 2403, 10]"] - 153["Segment
[2409, 2416, 10]"] + subgraph path25 [Path] + 25["Path
[123, 210, 11]"] + 76["Segment
[218, 247, 11]"] + 77["Segment
[255, 283, 11]"] + 78["Segment
[291, 369, 11]"] + 79["Segment
[377, 424, 11]"] + 80["Segment
[432, 460, 11]"] + 81["Segment
[468, 497, 11]"] + 82["Segment
[505, 534, 11]"] + 83["Segment
[542, 608, 11]"] + 84["Segment
[616, 644, 11]"] + 85["Segment
[652, 681, 11]"] + 86["Segment
[689, 751, 11]"] + 87["Segment
[759, 787, 11]"] + 88["Segment
[795, 829, 11]"] + 89["Segment
[837, 867, 11]"] + 90["Segment
[875, 943, 11]"] + 91["Segment
[951, 958, 11]"] + 141[Solid2d] + end + subgraph path26 [Path] + 26["Path
[1092, 1190, 11]"] + 93["Segment
[1198, 1276, 11]"] + 94["Segment
[1284, 1331, 11]"] + 96["Segment
[1339, 1419, 11]"] + 99["Segment
[1427, 1434, 11]"] + 149[Solid2d] + end + subgraph path27 [Path] + 27["Path
[1092, 1190, 11]"] + 92["Segment
[1198, 1276, 11]"] + 95["Segment
[1284, 1331, 11]"] + 97["Segment
[1339, 1419, 11]"] + 98["Segment
[1427, 1434, 11]"] + 152[Solid2d] + end + subgraph path28 [Path] + 28["Path
[1531, 1628, 11]"] + 100["Segment
[1636, 1714, 11]"] + 103["Segment
[1722, 1770, 11]"] + 105["Segment
[1778, 1858, 11]"] + 107["Segment
[1866, 1873, 11]"] + 145[Solid2d] + end + subgraph path29 [Path] + 29["Path
[1531, 1628, 11]"] + 101["Segment
[1636, 1714, 11]"] + 102["Segment
[1722, 1770, 11]"] + 104["Segment
[1778, 1858, 11]"] + 106["Segment
[1866, 1873, 11]"] + 153[Solid2d] + end + subgraph path30 [Path] + 30["Path
[330, 355, 12]"] + 108["Segment
[361, 394, 12]"] + 109["Segment
[400, 435, 12]"] + 110["Segment
[441, 475, 12]"] + 111["Segment
[481, 488, 12]"] + 140[Solid2d] + end + subgraph path31 [Path] + 31["Path
[624, 750, 12]"] + 150[Solid2d] + end + subgraph path32 [Path] + 32["Path
[261, 354, 13]"] + 112["Segment
[360, 409, 13]"] + 113["Segment
[415, 465, 13]"] + 114["Segment
[471, 521, 13]"] + 115["Segment
[527, 545, 13]"] + 138[Solid2d] + end + subgraph path33 [Path] + 33["Path
[309, 339, 14]"] + 116["Segment
[345, 377, 14]"] + 117["Segment
[383, 416, 14]"] + 118["Segment
[422, 470, 14]"] + 119["Segment
[476, 503, 14]"] + 120["Segment
[509, 516, 14]"] 154[Solid2d] end - subgraph path156 [Path] - 156["Path
[123, 210, 15]"] - 157["Segment
[218, 247, 15]"] - 158["Segment
[255, 283, 15]"] - 159["Segment
[291, 369, 15]"] - 160["Segment
[377, 424, 15]"] - 161["Segment
[432, 460, 15]"] - 162["Segment
[468, 497, 15]"] - 163["Segment
[505, 534, 15]"] - 164["Segment
[542, 608, 15]"] - 165["Segment
[616, 644, 15]"] - 166["Segment
[652, 681, 15]"] - 167["Segment
[689, 751, 15]"] - 168["Segment
[759, 787, 15]"] - 169["Segment
[795, 829, 15]"] - 170["Segment
[837, 867, 15]"] - 171["Segment
[875, 943, 15]"] - 172["Segment
[951, 958, 15]"] - 173[Solid2d] + subgraph path34 [Path] + 34["Path
[398, 423, 15]"] + 121["Segment
[431, 489, 15]"] + 127["Segment
[497, 556, 15]"] + 131["Segment
[564, 607, 15]"] + 134["Segment
[615, 622, 15]"] + 139[Solid2d] end - subgraph path175 [Path] - 175["Path
[1092, 1190, 15]"] - 176["Segment
[1198, 1276, 15]"] - 177["Segment
[1284, 1331, 15]"] - 178["Segment
[1339, 1419, 15]"] - 179["Segment
[1427, 1434, 15]"] - 180[Solid2d] + subgraph path35 [Path] + 35["Path
[398, 423, 15]"] + 123["Segment
[431, 489, 15]"] + 128["Segment
[497, 556, 15]"] + 130["Segment
[564, 607, 15]"] + 133["Segment
[615, 622, 15]"] + 142[Solid2d] end - subgraph path182 [Path] - 182["Path
[1531, 1628, 15]"] - 183["Segment
[1636, 1714, 15]"] - 184["Segment
[1722, 1770, 15]"] - 185["Segment
[1778, 1858, 15]"] - 186["Segment
[1866, 1873, 15]"] - 187[Solid2d] + subgraph path36 [Path] + 36["Path
[398, 423, 15]"] + 124["Segment
[431, 489, 15]"] + 126["Segment
[497, 556, 15]"] + 129["Segment
[564, 607, 15]"] + 135["Segment
[615, 622, 15]"] + 144[Solid2d] end - subgraph path189 [Path] - 189["Path
[1092, 1190, 15]"] - 190["Segment
[1198, 1276, 15]"] - 191["Segment
[1284, 1331, 15]"] - 192["Segment
[1339, 1419, 15]"] - 193["Segment
[1427, 1434, 15]"] - 194[Solid2d] - end - subgraph path196 [Path] - 196["Path
[1531, 1628, 15]"] - 197["Segment
[1636, 1714, 15]"] - 198["Segment
[1722, 1770, 15]"] - 199["Segment
[1778, 1858, 15]"] - 200["Segment
[1866, 1873, 15]"] - 201[Solid2d] - end - subgraph path230 [Path] - 230["Path
[261, 354, 12]"] - 231["Segment
[360, 409, 12]"] - 232["Segment
[415, 465, 12]"] - 233["Segment
[471, 521, 12]"] - 234["Segment
[527, 545, 12]"] - 235[Solid2d] - end - subgraph path256 [Path] - 256["Path
[309, 339, 13]"] - 257["Segment
[345, 377, 13]"] - 258["Segment
[383, 416, 13]"] - 259["Segment
[422, 470, 13]"] - 260["Segment
[476, 503, 13]"] - 261["Segment
[509, 516, 13]"] - 262[Solid2d] - end - subgraph path274 [Path] - 274["Path
[398, 423, 14]"] - 275["Segment
[431, 489, 14]"] - 276["Segment
[497, 556, 14]"] - 277["Segment
[564, 607, 14]"] - 278["Segment
[615, 622, 14]"] - 279[Solid2d] - end - subgraph path298 [Path] - 298["Path
[398, 423, 14]"] - 299["Segment
[431, 489, 14]"] - 300["Segment
[497, 556, 14]"] - 301["Segment
[564, 607, 14]"] - 302["Segment
[615, 622, 14]"] - 303[Solid2d] - end - subgraph path322 [Path] - 322["Path
[398, 423, 14]"] - 323["Segment
[431, 489, 14]"] - 324["Segment
[497, 556, 14]"] - 325["Segment
[564, 607, 14]"] - 326["Segment
[615, 622, 14]"] - 327[Solid2d] - end - subgraph path346 [Path] - 346["Path
[398, 423, 14]"] - 347["Segment
[431, 489, 14]"] - 348["Segment
[497, 556, 14]"] - 349["Segment
[564, 607, 14]"] - 350["Segment
[615, 622, 14]"] - 351[Solid2d] + subgraph path37 [Path] + 37["Path
[398, 423, 15]"] + 122["Segment
[431, 489, 15]"] + 125["Segment
[497, 556, 15]"] + 132["Segment
[564, 607, 15]"] + 136["Segment
[615, 622, 15]"] + 147[Solid2d] end 1["Plane
[368, 385, 9]"] - 8["Sweep Extrusion
[603, 633, 9]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12[Wall] - 13["Cap Start"] - 14["Cap End"] - 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 23["EdgeCut Chamfer
[639, 870, 9]"] - 24["EdgeCut Chamfer
[639, 870, 9]"] - 25["EdgeCut Chamfer
[639, 870, 9]"] - 26["EdgeCut Chamfer
[639, 870, 9]"] - 37["Sweep Extrusion
[1749, 1792, 9]"] - 38[Wall] - 39[Wall] - 40[Wall] - 41[Wall] - 42[Wall] - 43[Wall] - 44[Wall] - 45[Wall] - 46["Cap Start"] - 47["SweepEdge Opposite"] - 48["SweepEdge Adjacent"] - 49["SweepEdge Opposite"] - 50["SweepEdge Adjacent"] - 51["SweepEdge Opposite"] - 52["SweepEdge Adjacent"] - 53["SweepEdge Opposite"] - 54["SweepEdge Adjacent"] - 55["SweepEdge Opposite"] - 56["SweepEdge Adjacent"] - 57["SweepEdge Opposite"] - 58["SweepEdge Adjacent"] - 59["SweepEdge Opposite"] - 60["SweepEdge Adjacent"] - 61["SweepEdge Opposite"] - 62["SweepEdge Adjacent"] - 70["Sweep Extrusion
[2151, 2194, 9]"] - 71[Wall] - 72[Wall] - 73[Wall] - 74[Wall] - 75["Cap Start"] - 76["SweepEdge Opposite"] - 77["SweepEdge Adjacent"] - 78["SweepEdge Opposite"] - 79["SweepEdge Adjacent"] - 80["SweepEdge Opposite"] - 81["SweepEdge Adjacent"] - 82["SweepEdge Opposite"] - 83["SweepEdge Adjacent"] - 90["Sweep Extrusion
[2446, 2479, 9]"] - 91[Wall] - 92[Wall] - 93[Wall] - 94[Wall] - 95["Cap Start"] - 96["SweepEdge Opposite"] - 97["SweepEdge Adjacent"] - 98["SweepEdge Opposite"] - 99["SweepEdge Adjacent"] - 100["SweepEdge Opposite"] - 101["SweepEdge Adjacent"] - 102["SweepEdge Opposite"] - 103["SweepEdge Adjacent"] - 104["Plane
[307, 324, 11]"] - 111["Plane
[535, 574, 11]"] - 113["SweepEdge Opposite"] - 114["SweepEdge Opposite"] - 115["SweepEdge Opposite"] - 116["SweepEdge Opposite"] - 118["Sweep Loft
[914, 957, 11]"] - 119[Wall] - 120[Wall] - 121[Wall] - 122[Wall] - 123["Cap Start"] - 124["Cap End"] - 125["SweepEdge Adjacent"] - 126["SweepEdge Adjacent"] - 127["SweepEdge Adjacent"] - 128["SweepEdge Adjacent"] - 129["Plane
[455, 472, 10]"] - 137["Plane
[957, 974, 10]"] - 144["Plane
[1418, 1435, 10]"] - 155["Plane
[2557, 2574, 10]"] - 174["Plane
[2627, 2644, 10]"] - 181["Plane
[2699, 2716, 10]"] - 188["Plane
[2770, 2787, 10]"] - 195["Plane
[2841, 2858, 10]"] - 202["Sweep Extrusion
[2882, 2913, 10]"] + 2["Plane
[455, 472, 10]"] + 3["Plane
[957, 974, 10]"] + 4["Plane
[1418, 1435, 10]"] + 5["Plane
[2557, 2574, 10]"] + 6["Plane
[2627, 2644, 10]"] + 7["Plane
[2699, 2716, 10]"] + 8["Plane
[2770, 2787, 10]"] + 9["Plane
[2841, 2858, 10]"] + 10["Plane
[307, 324, 12]"] + 11["Plane
[535, 574, 12]"] + 12["Plane
[238, 255, 13]"] + 13["Plane
[286, 303, 14]"] + 14["Plane
[373, 390, 15]"] + 15["Plane
[373, 390, 15]"] + 16["Plane
[373, 390, 15]"] + 17["Plane
[373, 390, 15]"] + 157["Sweep Extrusion
[603, 633, 9]"] + 158["Sweep Extrusion
[1749, 1792, 9]"] + 159["Sweep Extrusion
[2151, 2194, 9]"] + 160["Sweep Extrusion
[2446, 2479, 9]"] + 161["Sweep Extrusion
[2882, 2913, 10]"] + 162["Sweep Loft
[914, 957, 12]"] + 163["Sweep Extrusion
[591, 643, 13]"] + 164["Sweep Revolve
[522, 539, 14]"] + 165["Sweep Extrusion
[634, 681, 15]"] + 166["Sweep Extrusion
[634, 681, 15]"] + 167["Sweep Extrusion
[634, 681, 15]"] + 168["Sweep Extrusion
[634, 681, 15]"] + 169[Wall] + 170[Wall] + 171[Wall] + 172[Wall] + 173[Wall] + 174[Wall] + 175[Wall] + 176[Wall] + 177[Wall] + 178[Wall] + 179[Wall] + 180[Wall] + 181[Wall] + 182[Wall] + 183[Wall] + 184[Wall] + 185[Wall] + 186[Wall] + 187[Wall] + 188[Wall] + 189[Wall] + 190[Wall] + 191[Wall] + 192[Wall] + 193[Wall] + 194[Wall] + 195[Wall] + 196[Wall] + 197[Wall] + 198[Wall] + 199[Wall] + 200[Wall] + 201[Wall] + 202[Wall] 203[Wall] 204[Wall] 205[Wall] @@ -287,896 +250,930 @@ flowchart LR 208[Wall] 209[Wall] 210[Wall] - 211["Cap Start"] - 212["Cap End"] - 213["SweepEdge Opposite"] - 214["SweepEdge Adjacent"] - 215["SweepEdge Opposite"] - 216["SweepEdge Adjacent"] - 217["SweepEdge Opposite"] - 218["SweepEdge Adjacent"] - 219["SweepEdge Opposite"] - 220["SweepEdge Adjacent"] - 221["SweepEdge Opposite"] - 222["SweepEdge Adjacent"] - 223["SweepEdge Opposite"] - 224["SweepEdge Adjacent"] - 225["SweepEdge Opposite"] - 226["SweepEdge Adjacent"] - 227["SweepEdge Opposite"] - 228["SweepEdge Adjacent"] - 229["Plane
[238, 255, 12]"] - 236["Sweep Extrusion
[591, 643, 12]"] - 237[Wall] - 238[Wall] - 239[Wall] - 240[Wall] - 241["Cap Start"] + 211[Wall] + 212[Wall] + 213[Wall] + 214[Wall] + 215[Wall] + 216[Wall] + 217[Wall] + 218[Wall] + 219[Wall] + 220[Wall] + 221[Wall] + 222[Wall] + 223[Wall] + 224[Wall] + 225[Wall] + 226["Cap Start"] + 227["Cap Start"] + 228["Cap Start"] + 229["Cap Start"] + 230["Cap Start"] + 231["Cap Start"] + 232["Cap Start"] + 233["Cap Start"] + 234["Cap Start"] + 235["Cap Start"] + 236["Cap Start"] + 237["Cap End"] + 238["Cap End"] + 239["Cap End"] + 240["Cap End"] + 241["Cap End"] 242["Cap End"] - 243["SweepEdge Opposite"] - 244["SweepEdge Adjacent"] + 243["Cap End"] + 244["Cap End"] 245["SweepEdge Opposite"] - 246["SweepEdge Adjacent"] + 246["SweepEdge Opposite"] 247["SweepEdge Opposite"] - 248["SweepEdge Adjacent"] + 248["SweepEdge Opposite"] 249["SweepEdge Opposite"] - 250["SweepEdge Adjacent"] - 251["EdgeCut Fillet
[649, 855, 12]"] - 252["EdgeCut Fillet
[649, 855, 12]"] - 253["EdgeCut Fillet
[649, 855, 12]"] - 254["EdgeCut Fillet
[649, 855, 12]"] - 255["Plane
[286, 303, 13]"] - 263["Sweep Revolve
[522, 539, 13]"] - 264[Wall] - 265[Wall] - 266[Wall] - 267[Wall] - 268[Wall] - 269["SweepEdge Adjacent"] - 270["SweepEdge Adjacent"] - 271["SweepEdge Adjacent"] - 272["SweepEdge Adjacent"] - 273["Plane
[373, 390, 14]"] - 280["Sweep Extrusion
[634, 681, 14]"] - 281[Wall] - 282[Wall] - 283[Wall] - 284[Wall] - 285["Cap Start"] - 286["Cap End"] + 250["SweepEdge Opposite"] + 251["SweepEdge Opposite"] + 252["SweepEdge Opposite"] + 253["SweepEdge Opposite"] + 254["SweepEdge Opposite"] + 255["SweepEdge Opposite"] + 256["SweepEdge Opposite"] + 257["SweepEdge Opposite"] + 258["SweepEdge Opposite"] + 259["SweepEdge Opposite"] + 260["SweepEdge Opposite"] + 261["SweepEdge Opposite"] + 262["SweepEdge Opposite"] + 263["SweepEdge Opposite"] + 264["SweepEdge Opposite"] + 265["SweepEdge Opposite"] + 266["SweepEdge Opposite"] + 267["SweepEdge Opposite"] + 268["SweepEdge Opposite"] + 269["SweepEdge Opposite"] + 270["SweepEdge Opposite"] + 271["SweepEdge Opposite"] + 272["SweepEdge Opposite"] + 273["SweepEdge Opposite"] + 274["SweepEdge Opposite"] + 275["SweepEdge Opposite"] + 276["SweepEdge Opposite"] + 277["SweepEdge Opposite"] + 278["SweepEdge Opposite"] + 279["SweepEdge Opposite"] + 280["SweepEdge Opposite"] + 281["SweepEdge Opposite"] + 282["SweepEdge Opposite"] + 283["SweepEdge Opposite"] + 284["SweepEdge Opposite"] + 285["SweepEdge Opposite"] + 286["SweepEdge Opposite"] 287["SweepEdge Opposite"] - 288["SweepEdge Adjacent"] + 288["SweepEdge Opposite"] 289["SweepEdge Opposite"] - 290["SweepEdge Adjacent"] + 290["SweepEdge Opposite"] 291["SweepEdge Opposite"] - 292["SweepEdge Adjacent"] + 292["SweepEdge Opposite"] 293["SweepEdge Opposite"] - 294["SweepEdge Adjacent"] - 295["EdgeCut Chamfer
[689, 835, 14]"] - 296["EdgeCut Chamfer
[689, 835, 14]"] - 297["Plane
[373, 390, 14]"] - 304["Sweep Extrusion
[634, 681, 14]"] - 305[Wall] - 306[Wall] - 307[Wall] - 308[Wall] - 309["Cap Start"] - 310["Cap End"] - 311["SweepEdge Opposite"] + 294["SweepEdge Opposite"] + 295["SweepEdge Opposite"] + 296["SweepEdge Opposite"] + 297["SweepEdge Adjacent"] + 298["SweepEdge Adjacent"] + 299["SweepEdge Adjacent"] + 300["SweepEdge Adjacent"] + 301["SweepEdge Adjacent"] + 302["SweepEdge Adjacent"] + 303["SweepEdge Adjacent"] + 304["SweepEdge Adjacent"] + 305["SweepEdge Adjacent"] + 306["SweepEdge Adjacent"] + 307["SweepEdge Adjacent"] + 308["SweepEdge Adjacent"] + 309["SweepEdge Adjacent"] + 310["SweepEdge Adjacent"] + 311["SweepEdge Adjacent"] 312["SweepEdge Adjacent"] - 313["SweepEdge Opposite"] + 313["SweepEdge Adjacent"] 314["SweepEdge Adjacent"] - 315["SweepEdge Opposite"] + 315["SweepEdge Adjacent"] 316["SweepEdge Adjacent"] - 317["SweepEdge Opposite"] + 317["SweepEdge Adjacent"] 318["SweepEdge Adjacent"] - 319["EdgeCut Chamfer
[689, 835, 14]"] - 320["EdgeCut Chamfer
[689, 835, 14]"] - 321["Plane
[373, 390, 14]"] - 328["Sweep Extrusion
[634, 681, 14]"] - 329[Wall] - 330[Wall] - 331[Wall] - 332[Wall] - 333["Cap Start"] - 334["Cap End"] - 335["SweepEdge Opposite"] + 319["SweepEdge Adjacent"] + 320["SweepEdge Adjacent"] + 321["SweepEdge Adjacent"] + 322["SweepEdge Adjacent"] + 323["SweepEdge Adjacent"] + 324["SweepEdge Adjacent"] + 325["SweepEdge Adjacent"] + 326["SweepEdge Adjacent"] + 327["SweepEdge Adjacent"] + 328["SweepEdge Adjacent"] + 329["SweepEdge Adjacent"] + 330["SweepEdge Adjacent"] + 331["SweepEdge Adjacent"] + 332["SweepEdge Adjacent"] + 333["SweepEdge Adjacent"] + 334["SweepEdge Adjacent"] + 335["SweepEdge Adjacent"] 336["SweepEdge Adjacent"] - 337["SweepEdge Opposite"] + 337["SweepEdge Adjacent"] 338["SweepEdge Adjacent"] - 339["SweepEdge Opposite"] + 339["SweepEdge Adjacent"] 340["SweepEdge Adjacent"] - 341["SweepEdge Opposite"] + 341["SweepEdge Adjacent"] 342["SweepEdge Adjacent"] - 343["EdgeCut Chamfer
[689, 835, 14]"] - 344["EdgeCut Chamfer
[689, 835, 14]"] - 345["Plane
[373, 390, 14]"] - 352["Sweep Extrusion
[634, 681, 14]"] - 353[Wall] - 354[Wall] - 355[Wall] - 356[Wall] - 357["Cap Start"] - 358["Cap End"] - 359["SweepEdge Opposite"] - 360["SweepEdge Adjacent"] - 361["SweepEdge Opposite"] - 362["SweepEdge Adjacent"] - 363["SweepEdge Opposite"] - 364["SweepEdge Adjacent"] - 365["SweepEdge Opposite"] - 366["SweepEdge Adjacent"] - 367["EdgeCut Chamfer
[689, 835, 14]"] - 368["EdgeCut Chamfer
[689, 835, 14]"] - 369["StartSketchOnFace
[931, 962, 9]"] - 370["StartSketchOnFace
[1845, 1884, 9]"] - 371["StartSketchOnFace
[2235, 2274, 9]"] - 372["StartSketchOnPlane
[594, 618, 11]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 12 - 3 --- 21 - 3 --- 22 - 3 x--> 13 - 4 --- 11 - 4 --- 19 - 4 --- 20 - 4 x--> 13 - 5 --- 10 - 5 --- 17 - 5 --- 18 - 5 x--> 13 - 6 --- 9 - 6 --- 15 - 6 --- 16 - 6 x--> 13 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 - 8 --- 16 - 8 --- 17 - 8 --- 18 - 8 --- 19 - 8 --- 20 - 8 --- 21 - 8 --- 22 - 14 --- 27 - 15 <--x 9 - 15 <--x 14 - 17 <--x 10 - 17 <--x 14 - 19 <--x 11 - 19 <--x 14 - 21 <--x 12 - 21 <--x 14 - 22 <--x 23 - 20 <--x 24 - 18 <--x 25 - 16 <--x 26 - 27 --- 28 - 27 --- 29 - 27 --- 30 - 27 --- 31 - 27 --- 32 - 27 --- 33 - 27 --- 34 - 27 --- 35 - 27 ---- 37 - 27 --- 36 - 28 --- 45 - 28 --- 61 - 28 --- 62 - 28 <--x 14 - 29 --- 44 - 29 --- 59 - 29 --- 60 - 29 <--x 14 - 30 --- 43 - 30 --- 57 - 30 --- 58 - 30 <--x 14 - 31 --- 42 - 31 --- 55 - 31 --- 56 - 31 <--x 14 - 32 --- 41 - 32 --- 53 - 32 --- 54 - 32 <--x 14 - 33 --- 40 - 33 --- 51 - 33 --- 52 - 33 <--x 14 - 34 --- 39 - 34 --- 49 - 34 --- 50 - 34 <--x 14 - 35 --- 38 - 35 --- 47 - 35 --- 48 - 35 <--x 14 - 37 --- 38 - 37 --- 39 - 37 --- 40 - 37 --- 41 - 37 --- 42 - 37 --- 43 - 37 --- 44 - 37 --- 45 - 37 --- 46 - 37 --- 47 - 37 --- 48 - 37 --- 49 - 37 --- 50 - 37 --- 51 - 37 --- 52 - 37 --- 53 - 37 --- 54 - 37 --- 55 - 37 --- 56 - 37 --- 57 - 37 --- 58 - 37 --- 59 - 37 --- 60 - 37 --- 61 - 37 --- 62 - 46 --- 63 - 46 --- 84 - 47 <--x 38 - 47 <--x 46 - 48 <--x 38 - 48 <--x 45 - 49 <--x 39 - 49 <--x 46 - 50 <--x 38 - 50 <--x 39 - 51 <--x 40 - 51 <--x 46 - 52 <--x 39 - 52 <--x 40 - 53 <--x 41 - 53 <--x 46 - 54 <--x 40 - 54 <--x 41 - 55 <--x 42 - 55 <--x 46 - 56 <--x 41 - 56 <--x 42 - 57 <--x 43 - 57 <--x 46 - 58 <--x 42 - 58 <--x 43 - 59 <--x 44 - 59 <--x 46 - 60 <--x 43 - 60 <--x 44 - 61 <--x 45 - 61 <--x 46 - 62 <--x 44 - 62 <--x 45 - 63 --- 64 - 63 --- 65 - 63 --- 66 - 63 --- 67 - 63 --- 68 - 63 ---- 70 - 63 --- 69 - 64 --- 74 - 64 --- 82 - 64 --- 83 - 64 <--x 46 - 65 --- 73 - 65 --- 80 - 65 --- 81 - 65 <--x 46 - 66 --- 72 - 66 --- 78 - 66 --- 79 - 66 <--x 46 - 67 --- 71 - 67 --- 76 - 67 --- 77 - 67 <--x 46 - 70 --- 71 - 70 --- 72 - 70 --- 73 - 70 --- 74 - 70 --- 75 - 70 --- 76 - 70 --- 77 - 70 --- 78 - 70 --- 79 - 70 --- 80 - 70 --- 81 - 70 --- 82 - 70 --- 83 - 76 <--x 71 - 76 <--x 75 - 77 <--x 71 - 77 <--x 74 - 78 <--x 72 - 78 <--x 75 - 79 <--x 71 - 79 <--x 72 - 80 <--x 73 - 80 <--x 75 - 81 <--x 72 - 81 <--x 73 - 82 <--x 74 - 82 <--x 75 - 83 <--x 73 - 83 <--x 74 - 84 --- 85 - 84 --- 86 - 84 --- 87 - 84 --- 88 - 84 ---- 90 - 84 --- 89 - 85 --- 94 - 85 --- 102 - 85 --- 103 - 85 <--x 46 - 86 --- 93 - 86 --- 100 - 86 --- 101 - 86 <--x 46 - 87 --- 92 - 87 --- 98 - 87 --- 99 - 87 <--x 46 - 88 --- 91 - 88 --- 96 - 88 --- 97 - 88 <--x 46 - 90 --- 91 - 90 --- 92 - 90 --- 93 - 90 --- 94 - 90 --- 95 - 90 --- 96 - 90 --- 97 - 90 --- 98 - 90 --- 99 - 90 --- 100 - 90 --- 101 - 90 --- 102 - 90 --- 103 - 96 <--x 91 - 96 <--x 95 - 97 <--x 91 - 97 <--x 94 - 98 <--x 92 - 98 <--x 95 - 99 <--x 91 - 99 <--x 92 - 100 <--x 93 - 100 <--x 95 - 101 <--x 92 - 101 <--x 93 - 102 <--x 94 - 102 <--x 95 - 103 <--x 93 - 103 <--x 94 - 104 --- 105 - 105 --- 106 - 105 --- 107 - 105 --- 108 - 105 --- 109 - 105 ---- 118 - 105 --- 110 - 106 --- 119 - 106 --- 113 - 106 --- 125 - 106 x--> 123 - 107 --- 120 - 107 --- 114 - 107 --- 126 - 107 x--> 123 - 108 --- 121 - 108 --- 115 - 108 --- 127 - 108 x--> 123 - 109 --- 122 - 109 --- 116 - 109 --- 128 - 109 x--> 123 - 111 --- 112 - 112 x--> 113 - 112 x--> 114 - 112 x--> 115 - 112 x--> 116 - 112 x---> 118 - 112 --- 117 - 118 --- 113 - 113 x--> 119 - 113 x--> 124 - 118 --- 114 - 114 x--> 120 - 114 x--> 124 - 118 --- 115 - 115 x--> 121 - 115 x--> 124 - 118 --- 116 - 116 x--> 122 - 116 x--> 124 - 118 --- 119 - 118 --- 120 - 118 --- 121 - 118 --- 122 - 118 --- 123 - 118 --- 124 - 118 --- 125 - 118 --- 126 - 118 --- 127 - 118 --- 128 - 125 <--x 122 - 125 <--x 119 - 126 <--x 119 - 126 <--x 120 - 127 <--x 120 - 127 <--x 121 - 128 <--x 121 - 128 <--x 122 - 129 --- 130 - 130 --- 131 - 130 --- 132 - 130 --- 133 - 130 --- 134 - 130 --- 135 - 130 --- 136 - 137 --- 138 - 138 --- 139 - 138 --- 140 - 138 --- 141 - 138 --- 142 - 138 --- 143 - 144 --- 145 - 145 --- 146 - 145 --- 147 - 145 --- 148 - 145 --- 149 - 145 --- 150 - 145 --- 151 - 145 --- 152 - 145 --- 153 - 145 ---- 202 - 145 --- 154 - 146 --- 210 - 146 --- 227 - 146 --- 228 - 146 x--> 212 - 147 --- 209 - 147 --- 225 - 147 --- 226 - 147 x--> 212 - 148 --- 208 - 148 --- 223 - 148 --- 224 - 148 x--> 212 - 149 --- 207 - 149 --- 221 - 149 --- 222 - 149 x--> 212 - 150 --- 206 - 150 --- 219 - 150 --- 220 - 150 x--> 212 - 151 --- 205 - 151 --- 217 - 151 --- 218 - 151 x--> 212 - 152 --- 204 - 152 --- 215 - 152 --- 216 - 152 x--> 212 - 153 --- 203 - 153 --- 213 - 153 --- 214 - 153 x--> 212 - 155 --- 156 - 156 --- 157 - 156 --- 158 - 156 --- 159 - 156 --- 160 - 156 --- 161 - 156 --- 162 - 156 --- 163 - 156 --- 164 - 156 --- 165 - 156 --- 166 - 156 --- 167 - 156 --- 168 - 156 --- 169 - 156 --- 170 - 156 --- 171 - 156 --- 172 - 156 --- 173 - 174 --- 175 - 175 --- 176 - 175 --- 177 - 175 --- 178 - 175 --- 179 - 175 --- 180 - 181 --- 182 - 182 --- 183 - 182 --- 184 - 182 --- 185 - 182 --- 186 - 182 --- 187 - 188 --- 189 - 189 --- 190 - 189 --- 191 - 189 --- 192 - 189 --- 193 - 189 --- 194 - 195 --- 196 - 196 --- 197 - 196 --- 198 - 196 --- 199 - 196 --- 200 - 196 --- 201 - 202 --- 203 - 202 --- 204 - 202 --- 205 - 202 --- 206 - 202 --- 207 - 202 --- 208 - 202 --- 209 - 202 --- 210 - 202 --- 211 - 202 --- 212 - 202 --- 213 - 202 --- 214 - 202 --- 215 - 202 --- 216 - 202 --- 217 - 202 --- 218 - 202 --- 219 - 202 --- 220 - 202 --- 221 - 202 --- 222 - 202 --- 223 - 202 --- 224 - 202 --- 225 - 202 --- 226 - 202 --- 227 - 202 --- 228 - 213 <--x 203 - 213 <--x 211 - 214 <--x 203 - 214 <--x 210 - 215 <--x 204 - 215 <--x 211 - 216 <--x 203 - 216 <--x 204 - 217 <--x 205 - 217 <--x 211 - 218 <--x 204 - 218 <--x 205 - 219 <--x 206 - 219 <--x 211 - 220 <--x 205 - 220 <--x 206 - 221 <--x 207 - 221 <--x 211 - 222 <--x 206 - 222 <--x 207 - 223 <--x 208 - 223 <--x 211 - 224 <--x 207 - 224 <--x 208 - 225 <--x 209 - 225 <--x 211 - 226 <--x 208 - 226 <--x 209 - 227 <--x 210 - 227 <--x 211 - 228 <--x 209 - 228 <--x 210 - 229 --- 230 - 230 --- 231 - 230 --- 232 - 230 --- 233 - 230 --- 234 - 230 ---- 236 - 230 --- 235 - 231 --- 240 - 231 --- 249 - 231 --- 250 - 231 x--> 241 - 232 --- 239 - 232 --- 247 - 232 --- 248 - 232 x--> 241 - 233 --- 238 - 233 --- 245 - 233 --- 246 - 233 x--> 241 - 234 --- 237 - 234 --- 243 - 234 --- 244 - 234 x--> 241 - 236 --- 237 - 236 --- 238 - 236 --- 239 - 236 --- 240 - 236 --- 241 - 236 --- 242 - 236 --- 243 - 236 --- 244 - 236 --- 245 - 236 --- 246 - 236 --- 247 - 236 --- 248 - 236 --- 249 - 236 --- 250 - 243 <--x 237 - 243 <--x 242 - 245 <--x 238 - 245 <--x 242 - 247 <--x 239 - 247 <--x 242 - 249 <--x 240 - 249 <--x 242 - 250 <--x 251 - 248 <--x 252 - 246 <--x 253 - 244 <--x 254 - 255 --- 256 - 256 --- 257 - 256 --- 258 - 256 --- 259 - 256 --- 260 - 256 --- 261 - 256 ---- 263 - 256 --- 262 - 257 --- 264 - 257 x--> 269 - 258 --- 265 - 258 --- 269 - 259 --- 266 - 259 --- 270 - 260 --- 267 - 260 --- 271 - 261 --- 268 - 261 --- 272 - 263 --- 264 - 263 --- 265 - 263 --- 266 - 263 --- 267 - 263 --- 268 - 263 <--x 257 - 263 --- 269 - 263 <--x 258 - 263 <--x 259 - 263 --- 270 - 263 <--x 260 - 263 --- 271 - 263 <--x 261 - 263 --- 272 - 269 <--x 264 - 269 <--x 265 - 270 <--x 266 - 270 <--x 267 - 271 <--x 267 - 271 <--x 268 - 272 <--x 268 - 272 <--x 264 - 273 --- 274 - 274 --- 275 - 274 --- 276 - 274 --- 277 - 274 --- 278 - 274 ---- 280 - 274 --- 279 - 275 --- 281 - 275 --- 287 - 275 --- 288 - 275 x--> 285 - 276 --- 282 - 276 --- 289 - 276 --- 290 - 276 x--> 285 - 277 --- 283 - 277 --- 291 - 277 --- 292 - 277 x--> 285 - 278 --- 284 - 278 --- 293 - 278 --- 294 - 278 x--> 285 - 280 --- 281 - 280 --- 282 - 280 --- 283 - 280 --- 284 - 280 --- 285 - 280 --- 286 - 280 --- 287 - 280 --- 288 - 280 --- 289 - 280 --- 290 - 280 --- 291 - 280 --- 292 - 280 --- 293 - 280 --- 294 - 287 <--x 281 - 287 <--x 286 - 289 <--x 282 - 289 <--x 286 - 291 <--x 283 - 291 <--x 286 - 292 <--x 283 - 292 <--x 284 - 293 <--x 284 - 293 <--x 286 - 294 <--x 281 - 294 <--x 284 - 288 <--x 295 - 290 <--x 296 - 297 --- 298 - 298 --- 299 - 298 --- 300 - 298 --- 301 - 298 --- 302 - 298 ---- 304 - 298 --- 303 - 299 --- 305 - 299 --- 311 - 299 --- 312 - 299 x--> 309 - 300 --- 306 - 300 --- 313 - 300 --- 314 - 300 x--> 309 - 301 --- 307 - 301 --- 315 - 301 --- 316 - 301 x--> 309 - 302 --- 308 - 302 --- 317 - 302 --- 318 - 302 x--> 309 - 304 --- 305 - 304 --- 306 - 304 --- 307 - 304 --- 308 - 304 --- 309 - 304 --- 310 - 304 --- 311 - 304 --- 312 - 304 --- 313 - 304 --- 314 - 304 --- 315 - 304 --- 316 - 304 --- 317 - 304 --- 318 - 311 <--x 305 - 311 <--x 310 - 313 <--x 306 - 313 <--x 310 - 315 <--x 307 - 315 <--x 310 - 316 <--x 307 - 316 <--x 308 - 317 <--x 308 - 317 <--x 310 - 318 <--x 305 - 318 <--x 308 - 312 <--x 319 - 314 <--x 320 - 321 --- 322 - 322 --- 323 - 322 --- 324 - 322 --- 325 - 322 --- 326 - 322 ---- 328 - 322 --- 327 - 323 --- 329 - 323 --- 335 - 323 --- 336 - 323 x--> 333 - 324 --- 330 - 324 --- 337 - 324 --- 338 - 324 x--> 333 - 325 --- 331 - 325 --- 339 - 325 --- 340 - 325 x--> 333 - 326 --- 332 - 326 --- 341 - 326 --- 342 - 326 x--> 333 - 328 --- 329 - 328 --- 330 - 328 --- 331 - 328 --- 332 - 328 --- 333 - 328 --- 334 - 328 --- 335 - 328 --- 336 - 328 --- 337 - 328 --- 338 - 328 --- 339 - 328 --- 340 - 328 --- 341 - 328 --- 342 - 335 <--x 329 - 335 <--x 334 - 337 <--x 330 - 337 <--x 334 - 339 <--x 331 - 339 <--x 334 - 340 <--x 331 - 340 <--x 332 - 341 <--x 332 - 341 <--x 334 - 342 <--x 329 - 342 <--x 332 - 336 <--x 343 - 338 <--x 344 - 345 --- 346 - 346 --- 347 - 346 --- 348 - 346 --- 349 - 346 --- 350 - 346 ---- 352 - 346 --- 351 - 347 --- 353 - 347 --- 359 - 347 --- 360 - 347 x--> 357 - 348 --- 354 - 348 --- 361 - 348 --- 362 - 348 x--> 357 - 349 --- 355 - 349 --- 363 - 349 --- 364 - 349 x--> 357 - 350 --- 356 - 350 --- 365 - 350 --- 366 - 350 x--> 357 - 352 --- 353 - 352 --- 354 - 352 --- 355 - 352 --- 356 - 352 --- 357 - 352 --- 358 - 352 --- 359 - 352 --- 360 - 352 --- 361 - 352 --- 362 - 352 --- 363 - 352 --- 364 - 352 --- 365 - 352 --- 366 - 359 <--x 353 - 359 <--x 358 - 361 <--x 354 - 361 <--x 358 - 363 <--x 355 - 363 <--x 358 - 364 <--x 355 - 364 <--x 356 - 365 <--x 356 - 365 <--x 358 - 366 <--x 353 - 366 <--x 356 - 360 <--x 367 - 362 <--x 368 - 14 <--x 369 - 46 <--x 370 - 46 <--x 371 - 111 <--x 372 + 343["SweepEdge Adjacent"] + 344["SweepEdge Adjacent"] + 345["SweepEdge Adjacent"] + 346["SweepEdge Adjacent"] + 347["SweepEdge Adjacent"] + 348["SweepEdge Adjacent"] + 349["SweepEdge Adjacent"] + 350["SweepEdge Adjacent"] + 351["SweepEdge Adjacent"] + 352["SweepEdge Adjacent"] + 353["SweepEdge Adjacent"] + 354["EdgeCut Chamfer
[639, 870, 9]"] + 355["EdgeCut Chamfer
[639, 870, 9]"] + 356["EdgeCut Chamfer
[639, 870, 9]"] + 357["EdgeCut Chamfer
[639, 870, 9]"] + 358["EdgeCut Fillet
[649, 855, 13]"] + 359["EdgeCut Fillet
[649, 855, 13]"] + 360["EdgeCut Fillet
[649, 855, 13]"] + 361["EdgeCut Fillet
[649, 855, 13]"] + 362["EdgeCut Chamfer
[689, 835, 15]"] + 363["EdgeCut Chamfer
[689, 835, 15]"] + 364["EdgeCut Chamfer
[689, 835, 15]"] + 365["EdgeCut Chamfer
[689, 835, 15]"] + 366["EdgeCut Chamfer
[689, 835, 15]"] + 367["EdgeCut Chamfer
[689, 835, 15]"] + 368["EdgeCut Chamfer
[689, 835, 15]"] + 369["EdgeCut Chamfer
[689, 835, 15]"] + 1 --- 18 + 2 --- 22 + 3 --- 23 + 4 --- 24 + 5 --- 25 + 6 --- 27 + 7 --- 29 + 8 --- 26 + 9 --- 28 + 10 --- 30 + 11 --- 31 + 12 --- 32 + 13 --- 33 + 14 --- 36 + 15 --- 34 + 16 --- 37 + 17 --- 35 + 18 --- 38 + 18 --- 39 + 18 --- 40 + 18 --- 41 + 18 --- 151 + 18 ---- 157 + 19 --- 42 + 19 --- 43 + 19 --- 44 + 19 --- 45 + 19 --- 46 + 19 --- 47 + 19 --- 48 + 19 --- 49 + 19 --- 137 + 19 ---- 158 + 239 --- 19 + 20 --- 50 + 20 --- 51 + 20 --- 52 + 20 --- 53 + 20 --- 54 + 20 --- 156 + 20 ---- 159 + 233 --- 20 + 21 --- 55 + 21 --- 56 + 21 --- 57 + 21 --- 58 + 21 --- 146 + 21 ---- 160 + 233 --- 21 + 22 --- 59 + 22 --- 60 + 22 --- 61 + 22 --- 62 + 22 --- 63 + 22 --- 155 + 23 --- 64 + 23 --- 65 + 23 --- 66 + 23 --- 67 + 23 --- 148 + 24 --- 68 + 24 --- 69 + 24 --- 70 + 24 --- 71 + 24 --- 72 + 24 --- 73 + 24 --- 74 + 24 --- 75 + 24 --- 143 + 24 ---- 161 + 25 --- 76 + 25 --- 77 + 25 --- 78 + 25 --- 79 + 25 --- 80 + 25 --- 81 + 25 --- 82 + 25 --- 83 + 25 --- 84 + 25 --- 85 + 25 --- 86 + 25 --- 87 + 25 --- 88 + 25 --- 89 + 25 --- 90 + 25 --- 91 + 25 --- 141 + 26 --- 93 + 26 --- 94 + 26 --- 96 + 26 --- 99 + 26 --- 149 + 27 --- 92 + 27 --- 95 + 27 --- 97 + 27 --- 98 + 27 --- 152 + 28 --- 100 + 28 --- 103 + 28 --- 105 + 28 --- 107 + 28 --- 145 + 29 --- 101 + 29 --- 102 + 29 --- 104 + 29 --- 106 + 29 --- 153 + 30 --- 108 + 30 --- 109 + 30 --- 110 + 30 --- 111 + 30 --- 140 + 30 ---- 162 + 31 --- 150 + 31 x---> 162 + 31 x--> 261 + 31 x--> 262 + 31 x--> 263 + 31 x--> 264 + 32 --- 112 + 32 --- 113 + 32 --- 114 + 32 --- 115 + 32 --- 138 + 32 ---- 163 + 33 --- 116 + 33 --- 117 + 33 --- 118 + 33 --- 119 + 33 --- 120 + 33 --- 154 + 33 ---- 164 + 34 --- 121 + 34 --- 127 + 34 --- 131 + 34 --- 134 + 34 --- 139 + 34 ---- 167 + 35 --- 123 + 35 --- 128 + 35 --- 130 + 35 --- 133 + 35 --- 142 + 35 ---- 166 + 36 --- 124 + 36 --- 126 + 36 --- 129 + 36 --- 135 + 36 --- 144 + 36 ---- 165 + 37 --- 122 + 37 --- 125 + 37 --- 132 + 37 --- 136 + 37 --- 147 + 37 ---- 168 + 38 --- 181 + 38 x--> 229 + 38 --- 260 + 38 --- 309 + 39 --- 184 + 39 x--> 229 + 39 --- 257 + 39 --- 312 + 40 --- 183 + 40 x--> 229 + 40 --- 259 + 40 --- 311 + 41 --- 182 + 41 x--> 229 + 41 --- 258 + 41 x--> 309 + 41 --- 310 + 42 --- 204 + 42 x--> 239 + 42 --- 278 + 42 --- 332 + 43 --- 201 + 43 x--> 239 + 43 --- 273 + 43 --- 331 + 44 --- 199 + 44 x--> 239 + 44 --- 279 + 44 --- 330 + 45 --- 197 + 45 x--> 239 + 45 --- 274 + 45 --- 328 + 46 --- 202 + 46 x--> 239 + 46 --- 280 + 46 --- 327 + 47 --- 203 + 47 x--> 239 + 47 --- 275 + 47 --- 325 + 48 --- 198 + 48 x--> 239 + 48 --- 276 + 48 --- 329 + 49 --- 200 + 49 x--> 239 + 49 --- 277 + 49 --- 326 + 50 --- 216 + 50 x--> 233 + 50 --- 292 + 50 --- 341 + 51 --- 215 + 51 x--> 233 + 51 --- 290 + 51 --- 343 + 52 --- 214 + 52 x--> 233 + 52 --- 291 + 52 --- 344 + 53 --- 213 + 53 x--> 233 + 53 --- 289 + 53 --- 342 + 55 --- 175 + 55 x--> 233 + 55 --- 250 + 55 --- 301 + 56 --- 173 + 56 x--> 233 + 56 --- 251 + 56 --- 302 + 57 --- 174 + 57 x--> 233 + 57 --- 249 + 57 --- 304 + 58 --- 176 + 58 x--> 233 + 58 --- 252 + 58 --- 303 + 68 --- 212 + 68 x--> 243 + 68 --- 282 + 68 --- 338 + 69 --- 207 + 69 x--> 243 + 69 --- 285 + 69 --- 339 + 70 --- 206 + 70 x--> 243 + 70 --- 286 + 70 --- 337 + 71 --- 205 + 71 x--> 243 + 71 --- 281 + 71 --- 340 + 72 --- 208 + 72 x--> 243 + 72 --- 283 + 72 --- 335 + 73 --- 211 + 73 x--> 243 + 73 --- 288 + 73 --- 333 + 74 --- 210 + 74 x--> 243 + 74 --- 287 + 74 --- 336 + 75 --- 209 + 75 x--> 243 + 75 --- 284 + 75 --- 334 + 108 --- 185 + 108 x--> 230 + 108 --- 264 + 108 --- 313 + 109 --- 186 + 109 x--> 230 + 109 --- 261 + 109 --- 315 + 110 --- 187 + 110 x--> 230 + 110 --- 263 + 110 --- 314 + 111 --- 188 + 111 x--> 230 + 111 --- 262 + 111 --- 316 + 112 --- 196 + 112 x--> 232 + 112 --- 271 + 112 --- 322 + 113 --- 194 + 113 x--> 232 + 113 --- 272 + 113 --- 321 + 114 --- 195 + 114 x--> 232 + 114 --- 270 + 114 --- 324 + 115 --- 193 + 115 x--> 232 + 115 --- 269 + 115 --- 323 + 164 <--x 116 + 116 --- 224 + 116 --- 353 + 164 <--x 117 + 117 --- 221 + 117 --- 351 + 164 <--x 118 + 118 --- 223 + 118 --- 352 + 164 <--x 119 + 119 --- 222 + 119 --- 350 + 164 <--x 120 + 120 --- 225 + 120 --- 349 + 121 --- 189 + 121 x--> 231 + 121 --- 267 + 121 --- 319 + 122 --- 218 + 122 x--> 236 + 122 --- 296 + 122 --- 345 + 123 --- 178 + 123 x--> 228 + 123 --- 256 + 123 --- 305 + 124 --- 172 + 124 x--> 226 + 124 --- 246 + 124 --- 297 + 125 --- 217 + 125 x--> 236 + 125 --- 294 + 125 --- 348 + 126 --- 170 + 126 x--> 226 + 126 --- 248 + 126 --- 299 + 127 --- 191 + 127 x--> 231 + 127 --- 265 + 127 --- 318 + 128 --- 180 + 128 x--> 228 + 128 --- 255 + 128 --- 306 + 129 --- 169 + 129 x--> 226 + 129 --- 245 + 129 --- 298 + 130 --- 179 + 130 x--> 228 + 130 --- 253 + 130 --- 307 + 131 --- 192 + 131 x--> 231 + 131 --- 268 + 131 --- 320 + 132 --- 219 + 132 x--> 236 + 132 --- 295 + 132 --- 346 + 133 --- 177 + 133 x--> 228 + 133 --- 254 + 133 --- 308 + 134 --- 190 + 134 x--> 231 + 134 --- 266 + 134 --- 317 + 135 --- 171 + 135 x--> 226 + 135 --- 247 + 135 --- 300 + 136 --- 220 + 136 x--> 236 + 136 --- 293 + 136 --- 347 + 157 --- 181 + 157 --- 182 + 157 --- 183 + 157 --- 184 + 157 --- 229 + 157 --- 239 + 157 --- 257 + 157 --- 258 + 157 --- 259 + 157 --- 260 + 157 --- 309 + 157 --- 310 + 157 --- 311 + 157 --- 312 + 158 --- 197 + 158 --- 198 + 158 --- 199 + 158 --- 200 + 158 --- 201 + 158 --- 202 + 158 --- 203 + 158 --- 204 + 158 --- 233 + 158 --- 273 + 158 --- 274 + 158 --- 275 + 158 --- 276 + 158 --- 277 + 158 --- 278 + 158 --- 279 + 158 --- 280 + 158 --- 325 + 158 --- 326 + 158 --- 327 + 158 --- 328 + 158 --- 329 + 158 --- 330 + 158 --- 331 + 158 --- 332 + 159 --- 213 + 159 --- 214 + 159 --- 215 + 159 --- 216 + 159 --- 235 + 159 --- 289 + 159 --- 290 + 159 --- 291 + 159 --- 292 + 159 --- 341 + 159 --- 342 + 159 --- 343 + 159 --- 344 + 160 --- 173 + 160 --- 174 + 160 --- 175 + 160 --- 176 + 160 --- 227 + 160 --- 249 + 160 --- 250 + 160 --- 251 + 160 --- 252 + 160 --- 301 + 160 --- 302 + 160 --- 303 + 160 --- 304 + 161 --- 205 + 161 --- 206 + 161 --- 207 + 161 --- 208 + 161 --- 209 + 161 --- 210 + 161 --- 211 + 161 --- 212 + 161 --- 234 + 161 --- 243 + 161 --- 281 + 161 --- 282 + 161 --- 283 + 161 --- 284 + 161 --- 285 + 161 --- 286 + 161 --- 287 + 161 --- 288 + 161 --- 333 + 161 --- 334 + 161 --- 335 + 161 --- 336 + 161 --- 337 + 161 --- 338 + 161 --- 339 + 161 --- 340 + 162 --- 185 + 162 --- 186 + 162 --- 187 + 162 --- 188 + 162 --- 230 + 162 --- 240 + 162 --- 261 + 162 --- 262 + 162 --- 263 + 162 --- 264 + 162 --- 313 + 162 --- 314 + 162 --- 315 + 162 --- 316 + 163 --- 193 + 163 --- 194 + 163 --- 195 + 163 --- 196 + 163 --- 232 + 163 --- 242 + 163 --- 269 + 163 --- 270 + 163 --- 271 + 163 --- 272 + 163 --- 321 + 163 --- 322 + 163 --- 323 + 163 --- 324 + 164 --- 221 + 164 --- 222 + 164 --- 223 + 164 --- 224 + 164 --- 225 + 164 --- 349 + 164 --- 350 + 164 --- 351 + 164 --- 352 + 164 --- 353 + 165 --- 169 + 165 --- 170 + 165 --- 171 + 165 --- 172 + 165 --- 226 + 165 --- 237 + 165 --- 245 + 165 --- 246 + 165 --- 247 + 165 --- 248 + 165 --- 297 + 165 --- 298 + 165 --- 299 + 165 --- 300 + 166 --- 177 + 166 --- 178 + 166 --- 179 + 166 --- 180 + 166 --- 228 + 166 --- 238 + 166 --- 253 + 166 --- 254 + 166 --- 255 + 166 --- 256 + 166 --- 305 + 166 --- 306 + 166 --- 307 + 166 --- 308 + 167 --- 189 + 167 --- 190 + 167 --- 191 + 167 --- 192 + 167 --- 231 + 167 --- 241 + 167 --- 265 + 167 --- 266 + 167 --- 267 + 167 --- 268 + 167 --- 317 + 167 --- 318 + 167 --- 319 + 167 --- 320 + 168 --- 217 + 168 --- 218 + 168 --- 219 + 168 --- 220 + 168 --- 236 + 168 --- 244 + 168 --- 293 + 168 --- 294 + 168 --- 295 + 168 --- 296 + 168 --- 345 + 168 --- 346 + 168 --- 347 + 168 --- 348 + 245 <--x 169 + 298 <--x 169 + 248 <--x 170 + 247 <--x 171 + 298 <--x 171 + 300 <--x 171 + 246 <--x 172 + 300 <--x 172 + 251 <--x 173 + 301 <--x 173 + 302 <--x 173 + 249 <--x 174 + 302 <--x 174 + 304 <--x 174 + 250 <--x 175 + 301 <--x 175 + 303 <--x 175 + 252 <--x 176 + 303 <--x 176 + 304 <--x 176 + 254 <--x 177 + 307 <--x 177 + 308 <--x 177 + 256 <--x 178 + 308 <--x 178 + 253 <--x 179 + 307 <--x 179 + 255 <--x 180 + 260 <--x 181 + 258 <--x 182 + 259 <--x 183 + 257 <--x 184 + 264 <--x 185 + 313 <--x 185 + 315 <--x 185 + 261 <--x 186 + 314 <--x 186 + 315 <--x 186 + 263 <--x 187 + 314 <--x 187 + 316 <--x 187 + 262 <--x 188 + 313 <--x 188 + 316 <--x 188 + 267 <--x 189 + 317 <--x 189 + 266 <--x 190 + 317 <--x 190 + 320 <--x 190 + 265 <--x 191 + 268 <--x 192 + 320 <--x 192 + 269 <--x 193 + 272 <--x 194 + 270 <--x 195 + 271 <--x 196 + 274 <--x 197 + 328 <--x 197 + 330 <--x 197 + 276 <--x 198 + 325 <--x 198 + 329 <--x 198 + 279 <--x 199 + 330 <--x 199 + 331 <--x 199 + 277 <--x 200 + 326 <--x 200 + 329 <--x 200 + 273 <--x 201 + 331 <--x 201 + 332 <--x 201 + 280 <--x 202 + 327 <--x 202 + 328 <--x 202 + 275 <--x 203 + 325 <--x 203 + 327 <--x 203 + 278 <--x 204 + 326 <--x 204 + 332 <--x 204 + 281 <--x 205 + 337 <--x 205 + 340 <--x 205 + 286 <--x 206 + 337 <--x 206 + 339 <--x 206 + 285 <--x 207 + 338 <--x 207 + 339 <--x 207 + 283 <--x 208 + 335 <--x 208 + 340 <--x 208 + 284 <--x 209 + 334 <--x 209 + 336 <--x 209 + 287 <--x 210 + 333 <--x 210 + 336 <--x 210 + 288 <--x 211 + 333 <--x 211 + 335 <--x 211 + 282 <--x 212 + 334 <--x 212 + 338 <--x 212 + 289 <--x 213 + 342 <--x 213 + 344 <--x 213 + 291 <--x 214 + 343 <--x 214 + 344 <--x 214 + 290 <--x 215 + 341 <--x 215 + 343 <--x 215 + 292 <--x 216 + 341 <--x 216 + 342 <--x 216 + 294 <--x 217 + 296 <--x 218 + 347 <--x 218 + 295 <--x 219 + 346 <--x 219 + 293 <--x 220 + 346 <--x 220 + 347 <--x 220 + 351 <--x 221 + 353 <--x 221 + 350 <--x 222 + 352 <--x 222 + 351 <--x 223 + 352 <--x 223 + 349 <--x 224 + 353 <--x 224 + 349 <--x 225 + 350 <--x 225 + 249 <--x 227 + 250 <--x 227 + 251 <--x 227 + 252 <--x 227 + 273 <--x 233 + 274 <--x 233 + 275 <--x 233 + 276 <--x 233 + 277 <--x 233 + 278 <--x 233 + 279 <--x 233 + 280 <--x 233 + 281 <--x 234 + 282 <--x 234 + 283 <--x 234 + 284 <--x 234 + 285 <--x 234 + 286 <--x 234 + 287 <--x 234 + 288 <--x 234 + 289 <--x 235 + 290 <--x 235 + 291 <--x 235 + 292 <--x 235 + 245 <--x 237 + 246 <--x 237 + 247 <--x 237 + 248 <--x 237 + 253 <--x 238 + 254 <--x 238 + 255 <--x 238 + 256 <--x 238 + 257 <--x 239 + 258 <--x 239 + 259 <--x 239 + 260 <--x 239 + 261 <--x 240 + 262 <--x 240 + 263 <--x 240 + 264 <--x 240 + 265 <--x 241 + 266 <--x 241 + 267 <--x 241 + 268 <--x 241 + 269 <--x 242 + 270 <--x 242 + 271 <--x 242 + 272 <--x 242 + 293 <--x 244 + 294 <--x 244 + 295 <--x 244 + 296 <--x 244 + 297 <--x 368 + 299 <--x 369 + 305 <--x 364 + 306 <--x 365 + 309 <--x 354 + 310 <--x 357 + 311 <--x 356 + 312 <--x 355 + 318 <--x 367 + 319 <--x 366 + 321 <--x 359 + 322 <--x 358 + 323 <--x 361 + 324 <--x 360 + 345 <--x 362 + 348 <--x 363 ``` diff --git a/rust/kcl-lib/tests/kcl_samples/walkie-talkie/ops.snap b/rust/kcl-lib/tests/kcl_samples/walkie-talkie/ops.snap index 0a939ec47..13065cd30 100644 --- a/rust/kcl-lib/tests/kcl_samples/walkie-talkie/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/walkie-talkie/ops.snap @@ -12,333 +12,6 @@ description: Operations executed walkie-talkie.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "chamfer", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.325, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "tags": { - "value": { - "type": "Array", - "value": [ - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - } - ] - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.0625, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.0625, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "start" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -348,97 +21,6 @@ description: Operations executed walkie-talkie.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "KclStdLibCall", - "name": "offsetPlane", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - }, - "labeledArgs": { - "offset": { - "value": { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "sketches": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - "name": "loft", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -448,1319 +30,6 @@ description: Operations executed walkie-talkie.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "zLogo", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "oLogo", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "oLogo2", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "oLogo", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "oLogo2", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "tool": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - "name": "subtract2d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -0.0625, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1770,112 +39,6 @@ description: Operations executed walkie-talkie.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.05, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "fillet", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "radius": { - "value": { - "type": "Number", - "value": 0.05, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "tags": { - "value": { - "type": "Array", - "value": [ - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - } - ] - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1886,108 +49,37 @@ description: Operations executed walkie-talkie.kcl "sourceRange": [] }, { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "KclStdLibCall", - "name": "revolve", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "axis": { - "value": { - "type": "Object", - "value": { - "direction": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "origin": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } - } - }, - "sourceRange": [] - } + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "button", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} }, "sourceRange": [] }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "button", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "button", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "type": "GroupBegin", @@ -2015,6 +107,147 @@ description: Operations executed walkie-talkie.kcl "type": "StdLibCall", "unlabeledArg": null }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.04, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.04, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.04, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, { "labeledArgs": { "length": { @@ -2096,40 +329,22 @@ description: Operations executed walkie-talkie.kcl "sourceRange": [] }, { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "button", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { + "type": "KclStdLibCall", + "name": "chamfer", + "unlabeledArg": { + "value": { + "type": "Solid", "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } + "artifactId": "[uuid]" + } + }, + "sourceRange": [] }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { "labeledArgs": { "length": { "value": { "type": "Number", - "value": 0.04, + "value": 0.05, "ty": { "type": "Default", "len": { @@ -2141,20 +356,73 @@ description: Operations executed walkie-talkie.kcl } }, "sourceRange": [] + }, + "tags": { + "value": { + "type": "Array", + "value": [ + { + "type": "Uuid", + "value": "[uuid]" + }, + { + "type": "Uuid", + "value": "[uuid]" + } + ] + }, + "sourceRange": [] } }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "chamfer", "unlabeledArg": { "value": { - "type": "Sketch", + "type": "Solid", "value": { "artifactId": "[uuid]" } }, "sourceRange": [] - } + }, + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 0.05, + "ty": { + "type": "Default", + "len": { + "type": "Inches" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "tags": { + "value": { + "type": "Array", + "value": [ + { + "type": "Uuid", + "value": "[uuid]" + }, + { + "type": "Uuid", + "value": "[uuid]" + } + ] + }, + "sourceRange": [] + } + }, + "sourceRange": [] }, { "type": "KclStdLibCall", @@ -2208,219 +476,25 @@ description: Operations executed walkie-talkie.kcl "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "button", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.04, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "chamfer", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.05, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "tags": { - "value": { - "type": "Array", - "value": [ - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - } - ] - }, - "sourceRange": [] - } - }, - "sourceRange": [] + "type": "GroupEnd" }, { "type": "GroupEnd" }, { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "button", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] + "type": "GroupEnd" }, { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" }, { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.04, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } + "type": "GroupEnd" }, { - "type": "KclStdLibCall", - "name": "chamfer", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 0.05, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "tags": { - "value": { - "type": "Array", - "value": [ - { - "type": "Uuid", - "value": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - } - ] - }, - "sourceRange": [] - } - }, - "sourceRange": [] + "type": "GroupEnd" + }, + { + "type": "GroupEnd" }, { "type": "GroupEnd" diff --git a/rust/kcl-lib/tests/kcl_samples/walkie-talkie/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/walkie-talkie/program_memory.snap index d38343629..a9ec91489 100644 --- a/rust/kcl-lib/tests/kcl_samples/walkie-talkie/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/walkie-talkie/program_memory.snap @@ -5,7 +5,7 @@ description: Variables in memory after executing walkie-talkie.kcl { "antenna": { "type": "Module", - "value": 11 + "value": 12 }, "antennaBaseHeight": { "type": "Number", @@ -163,7 +163,7 @@ description: Variables in memory after executing walkie-talkie.kcl }, "knob": { "type": "Module", - "value": 13 + "value": 14 }, "knobDiameter": { "type": "Number", @@ -330,7 +330,7 @@ description: Variables in memory after executing walkie-talkie.kcl }, "talkButton": { "type": "Module", - "value": 12 + "value": 13 }, "talkButtonHeight": { "type": "Number", diff --git a/rust/kcl-lib/tests/kcl_samples/washer/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/washer/artifact_commands.snap index da4d097d0..6b4304658 100644 --- a/rust/kcl-lib/tests/kcl_samples/washer/artifact_commands.snap +++ b/rust/kcl-lib/tests/kcl_samples/washer/artifact_commands.snap @@ -54,6 +54,14 @@ description: Artifact commands washer.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -70,33 +78,6 @@ description: Artifact commands washer.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 5.5626, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -122,6 +103,51 @@ description: Artifact commands washer.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 5.5626, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -146,33 +172,6 @@ description: Artifact commands washer.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 2.5781, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -202,26 +201,27 @@ description: Artifact commands washer.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 2.5781, + "y": 0.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid2d_add_hole", - "object_id": "[uuid]", - "hole_id": "[uuid]" + "type": "sketch_mode_disable" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true + "type": "start_path" } }, { @@ -251,6 +251,14 @@ description: Artifact commands washer.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -262,8 +270,54 @@ description: Artifact commands washer.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -279,30 +333,12 @@ description: Artifact commands washer.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -313,24 +349,6 @@ description: Artifact commands washer.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -345,28 +363,10 @@ description: Artifact commands washer.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/washer/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/washer/artifact_graph_flowchart.snap.md index b22c6c6fb..15fe7134a 100644 --- a/rust/kcl-lib/tests/kcl_samples/washer/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/washer/artifact_graph_flowchart.snap.md @@ -2,12 +2,12 @@ flowchart LR subgraph path2 [Path] 2["Path
[722, 773, 0]"] - 3["Segment
[722, 773, 0]"] - 4[Solid2d] + 4["Segment
[722, 773, 0]"] + 6[Solid2d] end - subgraph path5 [Path] - 5["Path
[797, 848, 0]"] - 6["Segment
[797, 848, 0]"] + subgraph path3 [Path] + 3["Path
[797, 848, 0]"] + 5["Segment
[797, 848, 0]"] 7[Solid2d] end 1["Plane
[699, 716, 0]"] @@ -18,22 +18,22 @@ flowchart LR 12["SweepEdge Opposite"] 13["SweepEdge Adjacent"] 1 --- 2 - 1 --- 5 - 2 --- 3 - 2 ---- 8 + 1 --- 3 2 --- 4 - 3 --- 9 - 3 --- 12 - 3 --- 13 - 3 x--> 10 - 5 --- 6 - 5 --- 7 + 2 --- 6 + 2 ---- 8 + 3 --- 5 + 3 --- 7 + 4 --- 9 + 4 x--> 10 + 4 --- 12 + 4 --- 13 8 --- 9 8 --- 10 8 --- 11 8 --- 12 8 --- 13 12 <--x 9 - 12 <--x 11 13 <--x 9 + 12 <--x 11 ``` diff --git a/rust/kcl-lib/tests/kittycad_svg/artifact_commands.snap b/rust/kcl-lib/tests/kittycad_svg/artifact_commands.snap index 1b7126496..554fee036 100644 --- a/rust/kcl-lib/tests/kittycad_svg/artifact_commands.snap +++ b/rust/kcl-lib/tests/kittycad_svg/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands kittycad_svg.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands kittycad_svg.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4909,6 +4909,14 @@ description: Artifact commands kittycad_svg.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -4920,8 +4928,7587 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -4937,16 +12524,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -4956,9 +12544,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -4975,25 +12564,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5003,9 +12594,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5022,25 +12614,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5050,9 +12644,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5069,25 +12664,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5097,9 +12694,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5116,25 +12714,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5144,9 +12744,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5163,25 +12764,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5191,9 +12794,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5210,25 +12814,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5238,9 +12844,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5257,25 +12864,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5285,9 +12894,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5304,25 +12914,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5332,9 +12944,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5351,25 +12964,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5379,9 +12994,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5398,25 +13014,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5426,9 +13044,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5445,25 +13064,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5473,9 +13094,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5492,25 +13114,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5520,9 +13144,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5539,25 +13164,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5567,9 +13194,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5586,25 +13214,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5614,9 +13244,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5633,25 +13264,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5661,9 +13294,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5680,25 +13314,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5708,9 +13344,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5727,25 +13364,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5755,9 +13394,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5774,25 +13414,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5802,9 +13444,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5821,25 +13464,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5849,9 +13494,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5868,25 +13514,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5896,9 +13544,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5915,25 +13564,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5943,9 +13594,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -5962,25 +13614,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -5990,9 +13644,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6009,25 +13664,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6037,9 +13694,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6056,25 +13714,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6084,9 +13744,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6103,25 +13764,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6131,9 +13794,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6150,25 +13814,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6178,9 +13844,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6197,25 +13864,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6225,9 +13894,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6244,25 +13914,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6272,9 +13944,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6291,25 +13964,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6319,9 +13994,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6338,25 +14014,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6366,9 +14044,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6385,25 +14064,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6413,9 +14094,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6432,25 +14114,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6460,9 +14144,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6479,25 +14164,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6507,9 +14194,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6526,25 +14214,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6554,9 +14244,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6573,25 +14264,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6601,9 +14294,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6620,25 +14314,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6648,9 +14344,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6667,25 +14364,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6695,9 +14394,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6714,25 +14414,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6742,9 +14444,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6761,25 +14464,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6789,9 +14494,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6808,25 +14514,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6836,9 +14544,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6855,25 +14564,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6883,9 +14594,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6902,25 +14614,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6930,9 +14644,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6949,25 +14664,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -6977,9 +14694,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -6996,25 +14714,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7024,9 +14744,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7043,25 +14764,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7071,9 +14794,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7090,25 +14814,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7118,9 +14844,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7137,25 +14864,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7165,9 +14894,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7184,25 +14914,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7212,9 +14944,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7231,25 +14964,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7259,9 +14994,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7278,25 +15014,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7306,9 +15044,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7325,25 +15064,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7353,9 +15094,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7372,25 +15114,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7400,9 +15144,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7419,25 +15164,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7447,9 +15194,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7466,25 +15214,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7494,9 +15244,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7513,25 +15264,27 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7541,9 +15294,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7560,18 +15314,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7588,16 +15344,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7607,18 +15364,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7635,16 +15394,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7654,18 +15414,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7682,16 +15444,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7701,18 +15464,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7729,16 +15494,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7748,18 +15514,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7776,16 +15544,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7795,18 +15564,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7823,16 +15594,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7842,18 +15614,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7870,16 +15644,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7889,18 +15664,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7917,16 +15694,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7936,18 +15714,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -7964,16 +15744,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -7983,18 +15764,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -8011,16 +15794,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -8030,18 +15814,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -8058,16 +15844,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -8077,18 +15864,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -8105,16 +15894,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -8124,18 +15914,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -8152,16 +15944,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -8171,18 +15964,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -8199,16 +15994,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -8218,7867 +16014,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16095,39 +16034,12 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -16142,39 +16054,12 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -16189,16 +16074,7 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16208,18 +16084,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16236,16 +16114,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16255,18 +16134,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16283,16 +16164,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16302,18 +16184,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16330,16 +16214,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16349,18 +16234,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16377,16 +16264,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16396,18 +16284,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16424,16 +16314,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16443,18 +16334,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16471,16 +16364,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16490,18 +16384,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16518,16 +16414,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16537,18 +16434,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16565,16 +16464,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16584,18 +16484,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16612,16 +16514,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16631,18 +16534,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16659,16 +16564,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16678,18 +16584,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16706,16 +16614,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16725,18 +16634,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16753,16 +16664,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16772,18 +16684,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16800,16 +16714,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16819,18 +16734,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16847,16 +16764,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16866,18 +16784,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16894,16 +16814,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16913,18 +16834,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16941,16 +16864,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -16960,18 +16884,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -16988,16 +16914,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17007,18 +16934,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17035,16 +16964,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17054,18 +16984,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17082,16 +17014,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17101,18 +17034,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17129,16 +17064,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17148,18 +17084,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17176,16 +17114,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17195,18 +17134,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17223,16 +17164,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17242,18 +17184,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17270,16 +17214,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17289,18 +17234,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17317,16 +17264,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17336,18 +17284,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17364,16 +17314,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17383,18 +17334,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17411,16 +17364,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17430,18 +17384,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17458,16 +17414,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17477,18 +17434,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17505,16 +17464,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17524,18 +17484,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17552,16 +17514,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17571,18 +17534,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17599,16 +17564,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17618,18 +17584,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17646,16 +17614,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17665,18 +17634,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17693,16 +17664,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17712,18 +17684,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17740,16 +17714,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17759,18 +17734,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17787,16 +17764,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17806,18 +17784,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17834,16 +17814,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17853,18 +17834,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17881,16 +17864,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17900,18 +17884,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17928,16 +17914,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17947,18 +17934,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -17975,16 +17964,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -17994,18 +17984,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -18022,16 +18014,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -18041,18 +18034,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -18069,16 +18064,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -18088,18 +18084,20 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -18116,16 +18114,17 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" @@ -18135,9 +18134,10 @@ description: Artifact commands kittycad_svg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } } ] diff --git a/rust/kcl-lib/tests/kittycad_svg/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kittycad_svg/artifact_graph_flowchart.snap.md index 07c2bf53c..8575ba7d9 100644 --- a/rust/kcl-lib/tests/kittycad_svg/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kittycad_svg/artifact_graph_flowchart.snap.md @@ -572,566 +572,566 @@ flowchart LR 568["Cap Start"] 569["Cap End"] 570["SweepEdge Opposite"] - 571["SweepEdge Adjacent"] + 571["SweepEdge Opposite"] 572["SweepEdge Opposite"] - 573["SweepEdge Adjacent"] + 573["SweepEdge Opposite"] 574["SweepEdge Opposite"] - 575["SweepEdge Adjacent"] + 575["SweepEdge Opposite"] 576["SweepEdge Opposite"] - 577["SweepEdge Adjacent"] + 577["SweepEdge Opposite"] 578["SweepEdge Opposite"] - 579["SweepEdge Adjacent"] + 579["SweepEdge Opposite"] 580["SweepEdge Opposite"] - 581["SweepEdge Adjacent"] + 581["SweepEdge Opposite"] 582["SweepEdge Opposite"] - 583["SweepEdge Adjacent"] + 583["SweepEdge Opposite"] 584["SweepEdge Opposite"] - 585["SweepEdge Adjacent"] + 585["SweepEdge Opposite"] 586["SweepEdge Opposite"] - 587["SweepEdge Adjacent"] + 587["SweepEdge Opposite"] 588["SweepEdge Opposite"] - 589["SweepEdge Adjacent"] + 589["SweepEdge Opposite"] 590["SweepEdge Opposite"] - 591["SweepEdge Adjacent"] + 591["SweepEdge Opposite"] 592["SweepEdge Opposite"] - 593["SweepEdge Adjacent"] + 593["SweepEdge Opposite"] 594["SweepEdge Opposite"] - 595["SweepEdge Adjacent"] + 595["SweepEdge Opposite"] 596["SweepEdge Opposite"] - 597["SweepEdge Adjacent"] + 597["SweepEdge Opposite"] 598["SweepEdge Opposite"] - 599["SweepEdge Adjacent"] + 599["SweepEdge Opposite"] 600["SweepEdge Opposite"] - 601["SweepEdge Adjacent"] + 601["SweepEdge Opposite"] 602["SweepEdge Opposite"] - 603["SweepEdge Adjacent"] + 603["SweepEdge Opposite"] 604["SweepEdge Opposite"] - 605["SweepEdge Adjacent"] + 605["SweepEdge Opposite"] 606["SweepEdge Opposite"] - 607["SweepEdge Adjacent"] + 607["SweepEdge Opposite"] 608["SweepEdge Opposite"] - 609["SweepEdge Adjacent"] + 609["SweepEdge Opposite"] 610["SweepEdge Opposite"] - 611["SweepEdge Adjacent"] + 611["SweepEdge Opposite"] 612["SweepEdge Opposite"] - 613["SweepEdge Adjacent"] + 613["SweepEdge Opposite"] 614["SweepEdge Opposite"] - 615["SweepEdge Adjacent"] + 615["SweepEdge Opposite"] 616["SweepEdge Opposite"] - 617["SweepEdge Adjacent"] + 617["SweepEdge Opposite"] 618["SweepEdge Opposite"] - 619["SweepEdge Adjacent"] + 619["SweepEdge Opposite"] 620["SweepEdge Opposite"] - 621["SweepEdge Adjacent"] + 621["SweepEdge Opposite"] 622["SweepEdge Opposite"] - 623["SweepEdge Adjacent"] + 623["SweepEdge Opposite"] 624["SweepEdge Opposite"] - 625["SweepEdge Adjacent"] + 625["SweepEdge Opposite"] 626["SweepEdge Opposite"] - 627["SweepEdge Adjacent"] + 627["SweepEdge Opposite"] 628["SweepEdge Opposite"] - 629["SweepEdge Adjacent"] + 629["SweepEdge Opposite"] 630["SweepEdge Opposite"] - 631["SweepEdge Adjacent"] + 631["SweepEdge Opposite"] 632["SweepEdge Opposite"] - 633["SweepEdge Adjacent"] + 633["SweepEdge Opposite"] 634["SweepEdge Opposite"] - 635["SweepEdge Adjacent"] + 635["SweepEdge Opposite"] 636["SweepEdge Opposite"] - 637["SweepEdge Adjacent"] + 637["SweepEdge Opposite"] 638["SweepEdge Opposite"] - 639["SweepEdge Adjacent"] + 639["SweepEdge Opposite"] 640["SweepEdge Opposite"] - 641["SweepEdge Adjacent"] + 641["SweepEdge Opposite"] 642["SweepEdge Opposite"] - 643["SweepEdge Adjacent"] + 643["SweepEdge Opposite"] 644["SweepEdge Opposite"] - 645["SweepEdge Adjacent"] + 645["SweepEdge Opposite"] 646["SweepEdge Opposite"] - 647["SweepEdge Adjacent"] + 647["SweepEdge Opposite"] 648["SweepEdge Opposite"] - 649["SweepEdge Adjacent"] + 649["SweepEdge Opposite"] 650["SweepEdge Opposite"] - 651["SweepEdge Adjacent"] + 651["SweepEdge Opposite"] 652["SweepEdge Opposite"] - 653["SweepEdge Adjacent"] + 653["SweepEdge Opposite"] 654["SweepEdge Opposite"] - 655["SweepEdge Adjacent"] + 655["SweepEdge Opposite"] 656["SweepEdge Opposite"] - 657["SweepEdge Adjacent"] + 657["SweepEdge Opposite"] 658["SweepEdge Opposite"] - 659["SweepEdge Adjacent"] + 659["SweepEdge Opposite"] 660["SweepEdge Opposite"] - 661["SweepEdge Adjacent"] + 661["SweepEdge Opposite"] 662["SweepEdge Opposite"] - 663["SweepEdge Adjacent"] + 663["SweepEdge Opposite"] 664["SweepEdge Opposite"] - 665["SweepEdge Adjacent"] + 665["SweepEdge Opposite"] 666["SweepEdge Opposite"] - 667["SweepEdge Adjacent"] + 667["SweepEdge Opposite"] 668["SweepEdge Opposite"] - 669["SweepEdge Adjacent"] + 669["SweepEdge Opposite"] 670["SweepEdge Opposite"] - 671["SweepEdge Adjacent"] + 671["SweepEdge Opposite"] 672["SweepEdge Opposite"] - 673["SweepEdge Adjacent"] + 673["SweepEdge Opposite"] 674["SweepEdge Opposite"] - 675["SweepEdge Adjacent"] + 675["SweepEdge Opposite"] 676["SweepEdge Opposite"] - 677["SweepEdge Adjacent"] + 677["SweepEdge Opposite"] 678["SweepEdge Opposite"] - 679["SweepEdge Adjacent"] + 679["SweepEdge Opposite"] 680["SweepEdge Opposite"] - 681["SweepEdge Adjacent"] + 681["SweepEdge Opposite"] 682["SweepEdge Opposite"] - 683["SweepEdge Adjacent"] + 683["SweepEdge Opposite"] 684["SweepEdge Opposite"] - 685["SweepEdge Adjacent"] + 685["SweepEdge Opposite"] 686["SweepEdge Opposite"] - 687["SweepEdge Adjacent"] + 687["SweepEdge Opposite"] 688["SweepEdge Opposite"] - 689["SweepEdge Adjacent"] + 689["SweepEdge Opposite"] 690["SweepEdge Opposite"] - 691["SweepEdge Adjacent"] + 691["SweepEdge Opposite"] 692["SweepEdge Opposite"] - 693["SweepEdge Adjacent"] + 693["SweepEdge Opposite"] 694["SweepEdge Opposite"] - 695["SweepEdge Adjacent"] + 695["SweepEdge Opposite"] 696["SweepEdge Opposite"] - 697["SweepEdge Adjacent"] + 697["SweepEdge Opposite"] 698["SweepEdge Opposite"] - 699["SweepEdge Adjacent"] + 699["SweepEdge Opposite"] 700["SweepEdge Opposite"] - 701["SweepEdge Adjacent"] + 701["SweepEdge Opposite"] 702["SweepEdge Opposite"] - 703["SweepEdge Adjacent"] + 703["SweepEdge Opposite"] 704["SweepEdge Opposite"] - 705["SweepEdge Adjacent"] + 705["SweepEdge Opposite"] 706["SweepEdge Opposite"] - 707["SweepEdge Adjacent"] + 707["SweepEdge Opposite"] 708["SweepEdge Opposite"] - 709["SweepEdge Adjacent"] + 709["SweepEdge Opposite"] 710["SweepEdge Opposite"] - 711["SweepEdge Adjacent"] + 711["SweepEdge Opposite"] 712["SweepEdge Opposite"] - 713["SweepEdge Adjacent"] + 713["SweepEdge Opposite"] 714["SweepEdge Opposite"] - 715["SweepEdge Adjacent"] + 715["SweepEdge Opposite"] 716["SweepEdge Opposite"] - 717["SweepEdge Adjacent"] + 717["SweepEdge Opposite"] 718["SweepEdge Opposite"] - 719["SweepEdge Adjacent"] + 719["SweepEdge Opposite"] 720["SweepEdge Opposite"] - 721["SweepEdge Adjacent"] + 721["SweepEdge Opposite"] 722["SweepEdge Opposite"] - 723["SweepEdge Adjacent"] + 723["SweepEdge Opposite"] 724["SweepEdge Opposite"] - 725["SweepEdge Adjacent"] + 725["SweepEdge Opposite"] 726["SweepEdge Opposite"] - 727["SweepEdge Adjacent"] + 727["SweepEdge Opposite"] 728["SweepEdge Opposite"] - 729["SweepEdge Adjacent"] + 729["SweepEdge Opposite"] 730["SweepEdge Opposite"] - 731["SweepEdge Adjacent"] + 731["SweepEdge Opposite"] 732["SweepEdge Opposite"] - 733["SweepEdge Adjacent"] + 733["SweepEdge Opposite"] 734["SweepEdge Opposite"] - 735["SweepEdge Adjacent"] + 735["SweepEdge Opposite"] 736["SweepEdge Opposite"] - 737["SweepEdge Adjacent"] + 737["SweepEdge Opposite"] 738["SweepEdge Opposite"] - 739["SweepEdge Adjacent"] + 739["SweepEdge Opposite"] 740["SweepEdge Opposite"] - 741["SweepEdge Adjacent"] + 741["SweepEdge Opposite"] 742["SweepEdge Opposite"] - 743["SweepEdge Adjacent"] + 743["SweepEdge Opposite"] 744["SweepEdge Opposite"] - 745["SweepEdge Adjacent"] + 745["SweepEdge Opposite"] 746["SweepEdge Opposite"] - 747["SweepEdge Adjacent"] + 747["SweepEdge Opposite"] 748["SweepEdge Opposite"] - 749["SweepEdge Adjacent"] + 749["SweepEdge Opposite"] 750["SweepEdge Opposite"] - 751["SweepEdge Adjacent"] + 751["SweepEdge Opposite"] 752["SweepEdge Opposite"] - 753["SweepEdge Adjacent"] + 753["SweepEdge Opposite"] 754["SweepEdge Opposite"] - 755["SweepEdge Adjacent"] + 755["SweepEdge Opposite"] 756["SweepEdge Opposite"] - 757["SweepEdge Adjacent"] + 757["SweepEdge Opposite"] 758["SweepEdge Opposite"] - 759["SweepEdge Adjacent"] + 759["SweepEdge Opposite"] 760["SweepEdge Opposite"] - 761["SweepEdge Adjacent"] + 761["SweepEdge Opposite"] 762["SweepEdge Opposite"] - 763["SweepEdge Adjacent"] + 763["SweepEdge Opposite"] 764["SweepEdge Opposite"] - 765["SweepEdge Adjacent"] + 765["SweepEdge Opposite"] 766["SweepEdge Opposite"] - 767["SweepEdge Adjacent"] + 767["SweepEdge Opposite"] 768["SweepEdge Opposite"] - 769["SweepEdge Adjacent"] + 769["SweepEdge Opposite"] 770["SweepEdge Opposite"] - 771["SweepEdge Adjacent"] + 771["SweepEdge Opposite"] 772["SweepEdge Opposite"] - 773["SweepEdge Adjacent"] + 773["SweepEdge Opposite"] 774["SweepEdge Opposite"] - 775["SweepEdge Adjacent"] + 775["SweepEdge Opposite"] 776["SweepEdge Opposite"] - 777["SweepEdge Adjacent"] + 777["SweepEdge Opposite"] 778["SweepEdge Opposite"] - 779["SweepEdge Adjacent"] + 779["SweepEdge Opposite"] 780["SweepEdge Opposite"] - 781["SweepEdge Adjacent"] + 781["SweepEdge Opposite"] 782["SweepEdge Opposite"] - 783["SweepEdge Adjacent"] + 783["SweepEdge Opposite"] 784["SweepEdge Opposite"] - 785["SweepEdge Adjacent"] + 785["SweepEdge Opposite"] 786["SweepEdge Opposite"] - 787["SweepEdge Adjacent"] + 787["SweepEdge Opposite"] 788["SweepEdge Opposite"] - 789["SweepEdge Adjacent"] + 789["SweepEdge Opposite"] 790["SweepEdge Opposite"] - 791["SweepEdge Adjacent"] + 791["SweepEdge Opposite"] 792["SweepEdge Opposite"] - 793["SweepEdge Adjacent"] + 793["SweepEdge Opposite"] 794["SweepEdge Opposite"] - 795["SweepEdge Adjacent"] + 795["SweepEdge Opposite"] 796["SweepEdge Opposite"] - 797["SweepEdge Adjacent"] + 797["SweepEdge Opposite"] 798["SweepEdge Opposite"] - 799["SweepEdge Adjacent"] + 799["SweepEdge Opposite"] 800["SweepEdge Opposite"] - 801["SweepEdge Adjacent"] + 801["SweepEdge Opposite"] 802["SweepEdge Opposite"] - 803["SweepEdge Adjacent"] + 803["SweepEdge Opposite"] 804["SweepEdge Opposite"] - 805["SweepEdge Adjacent"] + 805["SweepEdge Opposite"] 806["SweepEdge Opposite"] - 807["SweepEdge Adjacent"] + 807["SweepEdge Opposite"] 808["SweepEdge Opposite"] - 809["SweepEdge Adjacent"] + 809["SweepEdge Opposite"] 810["SweepEdge Opposite"] - 811["SweepEdge Adjacent"] + 811["SweepEdge Opposite"] 812["SweepEdge Opposite"] - 813["SweepEdge Adjacent"] + 813["SweepEdge Opposite"] 814["SweepEdge Opposite"] - 815["SweepEdge Adjacent"] + 815["SweepEdge Opposite"] 816["SweepEdge Opposite"] - 817["SweepEdge Adjacent"] + 817["SweepEdge Opposite"] 818["SweepEdge Opposite"] - 819["SweepEdge Adjacent"] + 819["SweepEdge Opposite"] 820["SweepEdge Opposite"] - 821["SweepEdge Adjacent"] + 821["SweepEdge Opposite"] 822["SweepEdge Opposite"] - 823["SweepEdge Adjacent"] + 823["SweepEdge Opposite"] 824["SweepEdge Opposite"] - 825["SweepEdge Adjacent"] + 825["SweepEdge Opposite"] 826["SweepEdge Opposite"] - 827["SweepEdge Adjacent"] + 827["SweepEdge Opposite"] 828["SweepEdge Opposite"] - 829["SweepEdge Adjacent"] + 829["SweepEdge Opposite"] 830["SweepEdge Opposite"] - 831["SweepEdge Adjacent"] + 831["SweepEdge Opposite"] 832["SweepEdge Opposite"] - 833["SweepEdge Adjacent"] + 833["SweepEdge Opposite"] 834["SweepEdge Opposite"] - 835["SweepEdge Adjacent"] + 835["SweepEdge Opposite"] 836["SweepEdge Opposite"] - 837["SweepEdge Adjacent"] + 837["SweepEdge Opposite"] 838["SweepEdge Opposite"] - 839["SweepEdge Adjacent"] + 839["SweepEdge Opposite"] 840["SweepEdge Opposite"] - 841["SweepEdge Adjacent"] + 841["SweepEdge Opposite"] 842["SweepEdge Opposite"] - 843["SweepEdge Adjacent"] + 843["SweepEdge Opposite"] 844["SweepEdge Opposite"] - 845["SweepEdge Adjacent"] + 845["SweepEdge Opposite"] 846["SweepEdge Opposite"] - 847["SweepEdge Adjacent"] + 847["SweepEdge Opposite"] 848["SweepEdge Opposite"] - 849["SweepEdge Adjacent"] + 849["SweepEdge Opposite"] 850["SweepEdge Opposite"] 851["SweepEdge Adjacent"] - 852["SweepEdge Opposite"] + 852["SweepEdge Adjacent"] 853["SweepEdge Adjacent"] - 854["SweepEdge Opposite"] + 854["SweepEdge Adjacent"] 855["SweepEdge Adjacent"] - 856["SweepEdge Opposite"] + 856["SweepEdge Adjacent"] 857["SweepEdge Adjacent"] - 858["SweepEdge Opposite"] + 858["SweepEdge Adjacent"] 859["SweepEdge Adjacent"] - 860["SweepEdge Opposite"] + 860["SweepEdge Adjacent"] 861["SweepEdge Adjacent"] - 862["SweepEdge Opposite"] + 862["SweepEdge Adjacent"] 863["SweepEdge Adjacent"] - 864["SweepEdge Opposite"] + 864["SweepEdge Adjacent"] 865["SweepEdge Adjacent"] - 866["SweepEdge Opposite"] + 866["SweepEdge Adjacent"] 867["SweepEdge Adjacent"] - 868["SweepEdge Opposite"] + 868["SweepEdge Adjacent"] 869["SweepEdge Adjacent"] - 870["SweepEdge Opposite"] + 870["SweepEdge Adjacent"] 871["SweepEdge Adjacent"] - 872["SweepEdge Opposite"] + 872["SweepEdge Adjacent"] 873["SweepEdge Adjacent"] - 874["SweepEdge Opposite"] + 874["SweepEdge Adjacent"] 875["SweepEdge Adjacent"] - 876["SweepEdge Opposite"] + 876["SweepEdge Adjacent"] 877["SweepEdge Adjacent"] - 878["SweepEdge Opposite"] + 878["SweepEdge Adjacent"] 879["SweepEdge Adjacent"] - 880["SweepEdge Opposite"] + 880["SweepEdge Adjacent"] 881["SweepEdge Adjacent"] - 882["SweepEdge Opposite"] + 882["SweepEdge Adjacent"] 883["SweepEdge Adjacent"] - 884["SweepEdge Opposite"] + 884["SweepEdge Adjacent"] 885["SweepEdge Adjacent"] - 886["SweepEdge Opposite"] + 886["SweepEdge Adjacent"] 887["SweepEdge Adjacent"] - 888["SweepEdge Opposite"] + 888["SweepEdge Adjacent"] 889["SweepEdge Adjacent"] - 890["SweepEdge Opposite"] + 890["SweepEdge Adjacent"] 891["SweepEdge Adjacent"] - 892["SweepEdge Opposite"] + 892["SweepEdge Adjacent"] 893["SweepEdge Adjacent"] - 894["SweepEdge Opposite"] + 894["SweepEdge Adjacent"] 895["SweepEdge Adjacent"] - 896["SweepEdge Opposite"] + 896["SweepEdge Adjacent"] 897["SweepEdge Adjacent"] - 898["SweepEdge Opposite"] + 898["SweepEdge Adjacent"] 899["SweepEdge Adjacent"] - 900["SweepEdge Opposite"] + 900["SweepEdge Adjacent"] 901["SweepEdge Adjacent"] - 902["SweepEdge Opposite"] + 902["SweepEdge Adjacent"] 903["SweepEdge Adjacent"] - 904["SweepEdge Opposite"] + 904["SweepEdge Adjacent"] 905["SweepEdge Adjacent"] - 906["SweepEdge Opposite"] + 906["SweepEdge Adjacent"] 907["SweepEdge Adjacent"] - 908["SweepEdge Opposite"] + 908["SweepEdge Adjacent"] 909["SweepEdge Adjacent"] - 910["SweepEdge Opposite"] + 910["SweepEdge Adjacent"] 911["SweepEdge Adjacent"] - 912["SweepEdge Opposite"] + 912["SweepEdge Adjacent"] 913["SweepEdge Adjacent"] - 914["SweepEdge Opposite"] + 914["SweepEdge Adjacent"] 915["SweepEdge Adjacent"] - 916["SweepEdge Opposite"] + 916["SweepEdge Adjacent"] 917["SweepEdge Adjacent"] - 918["SweepEdge Opposite"] + 918["SweepEdge Adjacent"] 919["SweepEdge Adjacent"] - 920["SweepEdge Opposite"] + 920["SweepEdge Adjacent"] 921["SweepEdge Adjacent"] - 922["SweepEdge Opposite"] + 922["SweepEdge Adjacent"] 923["SweepEdge Adjacent"] - 924["SweepEdge Opposite"] + 924["SweepEdge Adjacent"] 925["SweepEdge Adjacent"] - 926["SweepEdge Opposite"] + 926["SweepEdge Adjacent"] 927["SweepEdge Adjacent"] - 928["SweepEdge Opposite"] + 928["SweepEdge Adjacent"] 929["SweepEdge Adjacent"] - 930["SweepEdge Opposite"] + 930["SweepEdge Adjacent"] 931["SweepEdge Adjacent"] - 932["SweepEdge Opposite"] + 932["SweepEdge Adjacent"] 933["SweepEdge Adjacent"] - 934["SweepEdge Opposite"] + 934["SweepEdge Adjacent"] 935["SweepEdge Adjacent"] - 936["SweepEdge Opposite"] + 936["SweepEdge Adjacent"] 937["SweepEdge Adjacent"] - 938["SweepEdge Opposite"] + 938["SweepEdge Adjacent"] 939["SweepEdge Adjacent"] - 940["SweepEdge Opposite"] + 940["SweepEdge Adjacent"] 941["SweepEdge Adjacent"] - 942["SweepEdge Opposite"] + 942["SweepEdge Adjacent"] 943["SweepEdge Adjacent"] - 944["SweepEdge Opposite"] + 944["SweepEdge Adjacent"] 945["SweepEdge Adjacent"] - 946["SweepEdge Opposite"] + 946["SweepEdge Adjacent"] 947["SweepEdge Adjacent"] - 948["SweepEdge Opposite"] + 948["SweepEdge Adjacent"] 949["SweepEdge Adjacent"] - 950["SweepEdge Opposite"] + 950["SweepEdge Adjacent"] 951["SweepEdge Adjacent"] - 952["SweepEdge Opposite"] + 952["SweepEdge Adjacent"] 953["SweepEdge Adjacent"] - 954["SweepEdge Opposite"] + 954["SweepEdge Adjacent"] 955["SweepEdge Adjacent"] - 956["SweepEdge Opposite"] + 956["SweepEdge Adjacent"] 957["SweepEdge Adjacent"] - 958["SweepEdge Opposite"] + 958["SweepEdge Adjacent"] 959["SweepEdge Adjacent"] - 960["SweepEdge Opposite"] + 960["SweepEdge Adjacent"] 961["SweepEdge Adjacent"] - 962["SweepEdge Opposite"] + 962["SweepEdge Adjacent"] 963["SweepEdge Adjacent"] - 964["SweepEdge Opposite"] + 964["SweepEdge Adjacent"] 965["SweepEdge Adjacent"] - 966["SweepEdge Opposite"] + 966["SweepEdge Adjacent"] 967["SweepEdge Adjacent"] - 968["SweepEdge Opposite"] + 968["SweepEdge Adjacent"] 969["SweepEdge Adjacent"] - 970["SweepEdge Opposite"] + 970["SweepEdge Adjacent"] 971["SweepEdge Adjacent"] - 972["SweepEdge Opposite"] + 972["SweepEdge Adjacent"] 973["SweepEdge Adjacent"] - 974["SweepEdge Opposite"] + 974["SweepEdge Adjacent"] 975["SweepEdge Adjacent"] - 976["SweepEdge Opposite"] + 976["SweepEdge Adjacent"] 977["SweepEdge Adjacent"] - 978["SweepEdge Opposite"] + 978["SweepEdge Adjacent"] 979["SweepEdge Adjacent"] - 980["SweepEdge Opposite"] + 980["SweepEdge Adjacent"] 981["SweepEdge Adjacent"] - 982["SweepEdge Opposite"] + 982["SweepEdge Adjacent"] 983["SweepEdge Adjacent"] - 984["SweepEdge Opposite"] + 984["SweepEdge Adjacent"] 985["SweepEdge Adjacent"] - 986["SweepEdge Opposite"] + 986["SweepEdge Adjacent"] 987["SweepEdge Adjacent"] - 988["SweepEdge Opposite"] + 988["SweepEdge Adjacent"] 989["SweepEdge Adjacent"] - 990["SweepEdge Opposite"] + 990["SweepEdge Adjacent"] 991["SweepEdge Adjacent"] - 992["SweepEdge Opposite"] + 992["SweepEdge Adjacent"] 993["SweepEdge Adjacent"] - 994["SweepEdge Opposite"] + 994["SweepEdge Adjacent"] 995["SweepEdge Adjacent"] - 996["SweepEdge Opposite"] + 996["SweepEdge Adjacent"] 997["SweepEdge Adjacent"] - 998["SweepEdge Opposite"] + 998["SweepEdge Adjacent"] 999["SweepEdge Adjacent"] - 1000["SweepEdge Opposite"] + 1000["SweepEdge Adjacent"] 1001["SweepEdge Adjacent"] - 1002["SweepEdge Opposite"] + 1002["SweepEdge Adjacent"] 1003["SweepEdge Adjacent"] - 1004["SweepEdge Opposite"] + 1004["SweepEdge Adjacent"] 1005["SweepEdge Adjacent"] - 1006["SweepEdge Opposite"] + 1006["SweepEdge Adjacent"] 1007["SweepEdge Adjacent"] - 1008["SweepEdge Opposite"] + 1008["SweepEdge Adjacent"] 1009["SweepEdge Adjacent"] - 1010["SweepEdge Opposite"] + 1010["SweepEdge Adjacent"] 1011["SweepEdge Adjacent"] - 1012["SweepEdge Opposite"] + 1012["SweepEdge Adjacent"] 1013["SweepEdge Adjacent"] - 1014["SweepEdge Opposite"] + 1014["SweepEdge Adjacent"] 1015["SweepEdge Adjacent"] - 1016["SweepEdge Opposite"] + 1016["SweepEdge Adjacent"] 1017["SweepEdge Adjacent"] - 1018["SweepEdge Opposite"] + 1018["SweepEdge Adjacent"] 1019["SweepEdge Adjacent"] - 1020["SweepEdge Opposite"] + 1020["SweepEdge Adjacent"] 1021["SweepEdge Adjacent"] - 1022["SweepEdge Opposite"] + 1022["SweepEdge Adjacent"] 1023["SweepEdge Adjacent"] - 1024["SweepEdge Opposite"] + 1024["SweepEdge Adjacent"] 1025["SweepEdge Adjacent"] - 1026["SweepEdge Opposite"] + 1026["SweepEdge Adjacent"] 1027["SweepEdge Adjacent"] - 1028["SweepEdge Opposite"] + 1028["SweepEdge Adjacent"] 1029["SweepEdge Adjacent"] - 1030["SweepEdge Opposite"] + 1030["SweepEdge Adjacent"] 1031["SweepEdge Adjacent"] - 1032["SweepEdge Opposite"] + 1032["SweepEdge Adjacent"] 1033["SweepEdge Adjacent"] - 1034["SweepEdge Opposite"] + 1034["SweepEdge Adjacent"] 1035["SweepEdge Adjacent"] - 1036["SweepEdge Opposite"] + 1036["SweepEdge Adjacent"] 1037["SweepEdge Adjacent"] - 1038["SweepEdge Opposite"] + 1038["SweepEdge Adjacent"] 1039["SweepEdge Adjacent"] - 1040["SweepEdge Opposite"] + 1040["SweepEdge Adjacent"] 1041["SweepEdge Adjacent"] - 1042["SweepEdge Opposite"] + 1042["SweepEdge Adjacent"] 1043["SweepEdge Adjacent"] - 1044["SweepEdge Opposite"] + 1044["SweepEdge Adjacent"] 1045["SweepEdge Adjacent"] - 1046["SweepEdge Opposite"] + 1046["SweepEdge Adjacent"] 1047["SweepEdge Adjacent"] - 1048["SweepEdge Opposite"] + 1048["SweepEdge Adjacent"] 1049["SweepEdge Adjacent"] - 1050["SweepEdge Opposite"] + 1050["SweepEdge Adjacent"] 1051["SweepEdge Adjacent"] - 1052["SweepEdge Opposite"] + 1052["SweepEdge Adjacent"] 1053["SweepEdge Adjacent"] - 1054["SweepEdge Opposite"] + 1054["SweepEdge Adjacent"] 1055["SweepEdge Adjacent"] - 1056["SweepEdge Opposite"] + 1056["SweepEdge Adjacent"] 1057["SweepEdge Adjacent"] - 1058["SweepEdge Opposite"] + 1058["SweepEdge Adjacent"] 1059["SweepEdge Adjacent"] - 1060["SweepEdge Opposite"] + 1060["SweepEdge Adjacent"] 1061["SweepEdge Adjacent"] - 1062["SweepEdge Opposite"] + 1062["SweepEdge Adjacent"] 1063["SweepEdge Adjacent"] - 1064["SweepEdge Opposite"] + 1064["SweepEdge Adjacent"] 1065["SweepEdge Adjacent"] - 1066["SweepEdge Opposite"] + 1066["SweepEdge Adjacent"] 1067["SweepEdge Adjacent"] - 1068["SweepEdge Opposite"] + 1068["SweepEdge Adjacent"] 1069["SweepEdge Adjacent"] - 1070["SweepEdge Opposite"] + 1070["SweepEdge Adjacent"] 1071["SweepEdge Adjacent"] - 1072["SweepEdge Opposite"] + 1072["SweepEdge Adjacent"] 1073["SweepEdge Adjacent"] - 1074["SweepEdge Opposite"] + 1074["SweepEdge Adjacent"] 1075["SweepEdge Adjacent"] - 1076["SweepEdge Opposite"] + 1076["SweepEdge Adjacent"] 1077["SweepEdge Adjacent"] - 1078["SweepEdge Opposite"] + 1078["SweepEdge Adjacent"] 1079["SweepEdge Adjacent"] - 1080["SweepEdge Opposite"] + 1080["SweepEdge Adjacent"] 1081["SweepEdge Adjacent"] - 1082["SweepEdge Opposite"] + 1082["SweepEdge Adjacent"] 1083["SweepEdge Adjacent"] - 1084["SweepEdge Opposite"] + 1084["SweepEdge Adjacent"] 1085["SweepEdge Adjacent"] - 1086["SweepEdge Opposite"] + 1086["SweepEdge Adjacent"] 1087["SweepEdge Adjacent"] - 1088["SweepEdge Opposite"] + 1088["SweepEdge Adjacent"] 1089["SweepEdge Adjacent"] - 1090["SweepEdge Opposite"] + 1090["SweepEdge Adjacent"] 1091["SweepEdge Adjacent"] - 1092["SweepEdge Opposite"] + 1092["SweepEdge Adjacent"] 1093["SweepEdge Adjacent"] - 1094["SweepEdge Opposite"] + 1094["SweepEdge Adjacent"] 1095["SweepEdge Adjacent"] - 1096["SweepEdge Opposite"] + 1096["SweepEdge Adjacent"] 1097["SweepEdge Adjacent"] - 1098["SweepEdge Opposite"] + 1098["SweepEdge Adjacent"] 1099["SweepEdge Adjacent"] - 1100["SweepEdge Opposite"] + 1100["SweepEdge Adjacent"] 1101["SweepEdge Adjacent"] - 1102["SweepEdge Opposite"] + 1102["SweepEdge Adjacent"] 1103["SweepEdge Adjacent"] - 1104["SweepEdge Opposite"] + 1104["SweepEdge Adjacent"] 1105["SweepEdge Adjacent"] - 1106["SweepEdge Opposite"] + 1106["SweepEdge Adjacent"] 1107["SweepEdge Adjacent"] - 1108["SweepEdge Opposite"] + 1108["SweepEdge Adjacent"] 1109["SweepEdge Adjacent"] - 1110["SweepEdge Opposite"] + 1110["SweepEdge Adjacent"] 1111["SweepEdge Adjacent"] - 1112["SweepEdge Opposite"] + 1112["SweepEdge Adjacent"] 1113["SweepEdge Adjacent"] - 1114["SweepEdge Opposite"] + 1114["SweepEdge Adjacent"] 1115["SweepEdge Adjacent"] - 1116["SweepEdge Opposite"] + 1116["SweepEdge Adjacent"] 1117["SweepEdge Adjacent"] - 1118["SweepEdge Opposite"] + 1118["SweepEdge Adjacent"] 1119["SweepEdge Adjacent"] - 1120["SweepEdge Opposite"] + 1120["SweepEdge Adjacent"] 1121["SweepEdge Adjacent"] - 1122["SweepEdge Opposite"] + 1122["SweepEdge Adjacent"] 1123["SweepEdge Adjacent"] - 1124["SweepEdge Opposite"] + 1124["SweepEdge Adjacent"] 1125["SweepEdge Adjacent"] - 1126["SweepEdge Opposite"] + 1126["SweepEdge Adjacent"] 1127["SweepEdge Adjacent"] - 1128["SweepEdge Opposite"] + 1128["SweepEdge Adjacent"] 1129["SweepEdge Adjacent"] - 1130["SweepEdge Opposite"] + 1130["SweepEdge Adjacent"] 1 --- 2 2 --- 3 2 --- 4 @@ -1415,1132 +1415,1132 @@ flowchart LR 2 --- 282 2 --- 283 2 --- 284 - 2 ---- 286 2 --- 285 - 3 --- 567 - 3 --- 1130 - 3 --- 571 + 2 ---- 286 + 3 --- 548 3 x--> 568 - 4 --- 566 - 4 --- 1128 - 4 --- 1129 + 3 --- 742 + 3 --- 872 + 4 --- 425 4 x--> 568 - 5 --- 565 - 5 --- 1126 - 5 --- 1127 + 4 --- 587 + 4 --- 983 + 5 --- 424 5 x--> 568 - 6 --- 564 - 6 --- 1124 - 6 --- 1125 + 5 --- 665 + 5 --- 1042 + 6 --- 523 6 x--> 568 - 7 --- 563 - 7 --- 1122 - 7 --- 1123 + 6 --- 757 + 6 --- 1104 + 7 --- 380 7 x--> 568 - 8 --- 562 - 8 --- 1120 - 8 --- 1121 + 7 --- 641 + 7 --- 947 + 8 --- 361 8 x--> 568 - 9 --- 561 - 9 --- 1118 - 9 --- 1119 + 8 --- 634 + 8 --- 858 + 9 --- 547 9 x--> 568 - 10 --- 560 - 10 --- 1116 - 10 --- 1117 + 9 --- 794 + 9 --- 932 + 10 --- 562 10 x--> 568 - 11 --- 559 - 11 --- 1114 - 11 --- 1115 + 10 --- 724 + 10 --- 863 + 11 --- 555 11 x--> 568 - 12 --- 558 - 12 --- 1112 - 12 --- 1113 + 11 --- 692 + 11 --- 879 + 12 --- 347 12 x--> 568 - 13 --- 557 - 13 --- 1110 - 13 --- 1111 + 12 --- 775 + 12 --- 1082 + 13 --- 354 13 x--> 568 - 14 --- 556 - 14 --- 1108 - 14 --- 1109 + 13 --- 754 + 13 --- 1107 + 14 --- 566 14 x--> 568 - 15 --- 555 - 15 --- 1106 - 15 --- 1107 + 14 --- 596 + 14 --- 942 + 15 --- 525 15 x--> 568 - 16 --- 554 - 16 --- 1104 - 16 --- 1105 + 15 --- 813 + 15 --- 962 + 16 --- 412 16 x--> 568 - 17 --- 553 - 17 --- 1102 - 17 --- 1103 + 16 --- 660 + 16 --- 1025 + 17 --- 316 17 x--> 568 - 18 --- 552 - 18 --- 1100 - 18 --- 1101 + 17 --- 732 + 17 --- 922 + 18 --- 528 18 x--> 568 - 19 --- 551 - 19 --- 1098 - 19 --- 1099 + 18 --- 673 + 18 --- 892 + 19 --- 339 19 x--> 568 - 20 --- 550 - 20 --- 1096 - 20 --- 1097 + 19 --- 715 + 19 --- 1056 + 20 --- 549 20 x--> 568 - 21 --- 549 - 21 --- 1094 - 21 --- 1095 + 20 --- 828 + 20 --- 1033 + 21 --- 314 21 x--> 568 - 22 --- 548 - 22 --- 1092 - 22 --- 1093 + 21 --- 580 + 21 --- 970 + 22 --- 436 22 x--> 568 - 23 --- 547 - 23 --- 1090 - 23 --- 1091 + 22 --- 570 + 22 --- 938 + 23 --- 498 23 x--> 568 - 24 --- 546 - 24 --- 1088 - 24 --- 1089 + 23 --- 820 + 23 --- 899 + 24 --- 420 24 x--> 568 - 25 --- 545 - 25 --- 1086 - 25 --- 1087 + 24 --- 691 + 24 --- 888 + 25 --- 433 25 x--> 568 - 26 --- 544 - 26 --- 1084 - 26 --- 1085 + 25 --- 758 + 25 --- 1004 + 26 --- 405 26 x--> 568 - 27 --- 543 - 27 --- 1082 - 27 --- 1083 + 26 --- 776 + 26 --- 853 + 27 --- 379 27 x--> 568 - 28 --- 542 - 28 --- 1080 - 28 --- 1081 + 27 --- 578 + 27 --- 941 + 28 --- 385 28 x--> 568 - 29 --- 541 - 29 --- 1078 - 29 --- 1079 + 28 --- 728 + 28 --- 930 + 29 --- 292 29 x--> 568 - 30 --- 540 - 30 --- 1076 - 30 --- 1077 + 29 --- 821 + 29 --- 984 + 30 --- 541 30 x--> 568 - 31 --- 539 - 31 --- 1074 - 31 --- 1075 + 30 --- 830 + 30 --- 1032 + 31 --- 306 31 x--> 568 - 32 --- 538 - 32 --- 1072 - 32 --- 1073 + 31 --- 650 + 31 --- 1054 + 32 --- 506 32 x--> 568 - 33 --- 537 - 33 --- 1070 - 33 --- 1071 + 32 --- 760 + 32 --- 1003 + 33 --- 389 33 x--> 568 - 34 --- 536 - 34 --- 1068 - 34 --- 1069 + 33 --- 644 + 33 --- 851 + 34 --- 382 34 x--> 568 - 35 --- 535 - 35 --- 1066 - 35 --- 1067 + 34 --- 699 + 34 --- 1079 + 35 --- 473 35 x--> 568 - 36 --- 534 - 36 --- 1064 - 36 --- 1065 + 35 --- 581 + 35 --- 1020 + 36 --- 338 36 x--> 568 - 37 --- 533 - 37 --- 1062 - 37 --- 1063 + 36 --- 800 + 36 --- 1108 + 37 --- 509 37 x--> 568 - 38 --- 532 - 38 --- 1060 - 38 --- 1061 + 37 --- 615 + 37 --- 901 + 38 --- 527 38 x--> 568 - 39 --- 531 - 39 --- 1058 - 39 --- 1059 + 38 --- 717 + 38 --- 1001 + 39 --- 426 39 x--> 568 - 40 --- 530 - 40 --- 1056 - 40 --- 1057 + 39 --- 788 + 39 --- 1005 + 40 --- 394 40 x--> 568 - 41 --- 529 - 41 --- 1054 - 41 --- 1055 + 40 --- 739 + 40 --- 1013 + 41 --- 432 41 x--> 568 - 42 --- 528 - 42 --- 1052 - 42 --- 1053 + 41 --- 817 + 41 --- 975 + 42 --- 531 42 x--> 568 - 43 --- 527 - 43 --- 1050 - 43 --- 1051 + 42 --- 844 + 42 --- 927 + 43 --- 560 43 x--> 568 - 44 --- 526 - 44 --- 1048 - 44 --- 1049 + 43 --- 752 + 43 --- 1062 + 44 --- 345 44 x--> 568 - 45 --- 525 - 45 --- 1046 - 45 --- 1047 + 44 --- 713 + 44 --- 937 + 45 --- 533 45 x--> 568 - 46 --- 524 - 46 --- 1044 - 46 --- 1045 + 45 --- 640 + 45 --- 887 + 46 --- 418 46 x--> 568 - 47 --- 523 - 47 --- 1042 - 47 --- 1043 + 46 --- 572 + 46 --- 1006 + 47 --- 409 47 x--> 568 - 48 --- 522 - 48 --- 1040 - 48 --- 1041 + 47 --- 765 + 47 --- 875 + 48 --- 546 48 x--> 568 - 49 --- 521 - 49 --- 1038 - 49 --- 1039 + 48 --- 682 + 48 --- 1070 + 49 --- 496 49 x--> 568 - 50 --- 520 - 50 --- 1036 - 50 --- 1037 + 49 --- 781 + 49 --- 939 + 50 --- 310 50 x--> 568 - 51 --- 519 - 51 --- 1034 - 51 --- 1035 + 50 --- 785 + 50 --- 967 + 51 --- 388 51 x--> 568 - 52 --- 518 - 52 --- 1032 - 52 --- 1033 + 51 --- 778 + 51 --- 998 + 52 --- 484 52 x--> 568 - 53 --- 517 - 53 --- 1030 - 53 --- 1031 + 52 --- 603 + 52 --- 1057 + 53 --- 332 53 x--> 568 - 54 --- 516 - 54 --- 1028 - 54 --- 1029 + 53 --- 833 + 53 --- 877 + 54 --- 399 54 x--> 568 - 55 --- 515 - 55 --- 1026 - 55 --- 1027 + 54 --- 769 + 54 --- 914 + 55 --- 510 55 x--> 568 - 56 --- 514 - 56 --- 1024 - 56 --- 1025 + 55 --- 625 + 55 --- 1078 + 56 --- 551 56 x--> 568 - 57 --- 513 - 57 --- 1022 - 57 --- 1023 + 56 --- 749 + 56 --- 1040 + 57 --- 415 57 x--> 568 - 58 --- 512 - 58 --- 1020 - 58 --- 1021 + 57 --- 849 + 57 --- 1089 + 58 --- 463 58 x--> 568 - 59 --- 511 - 59 --- 1018 - 59 --- 1019 + 58 --- 676 + 58 --- 1109 + 59 --- 377 59 x--> 568 - 60 --- 510 - 60 --- 1016 - 60 --- 1017 + 59 --- 779 + 59 --- 936 + 60 --- 481 60 x--> 568 - 61 --- 509 - 61 --- 1014 - 61 --- 1015 + 60 --- 701 + 60 --- 878 + 61 --- 507 61 x--> 568 - 62 --- 508 - 62 --- 1012 - 62 --- 1013 + 61 --- 577 + 61 --- 864 + 62 --- 491 62 x--> 568 - 63 --- 507 - 63 --- 1010 - 63 --- 1011 + 62 --- 767 + 62 --- 889 + 63 --- 536 63 x--> 568 - 64 --- 506 - 64 --- 1008 - 64 --- 1009 + 63 --- 718 + 63 --- 1096 + 64 --- 488 64 x--> 568 - 65 --- 505 - 65 --- 1006 - 65 --- 1007 + 64 --- 796 + 64 --- 1017 + 65 --- 508 65 x--> 568 - 66 --- 504 - 66 --- 1004 - 66 --- 1005 + 65 --- 808 + 65 --- 985 + 66 --- 296 66 x--> 568 - 67 --- 503 - 67 --- 1002 - 67 --- 1003 + 66 --- 789 + 66 --- 1101 + 67 --- 352 67 x--> 568 - 68 --- 502 - 68 --- 1000 - 68 --- 1001 + 67 --- 766 + 67 --- 940 + 68 --- 435 68 x--> 568 - 69 --- 501 - 69 --- 998 - 69 --- 999 + 68 --- 626 + 68 --- 921 + 69 --- 346 69 x--> 568 - 70 --- 500 - 70 --- 996 - 70 --- 997 + 69 --- 608 + 69 --- 935 + 70 --- 288 70 x--> 568 - 71 --- 499 - 71 --- 994 - 71 --- 995 + 70 --- 843 + 70 --- 896 + 71 --- 411 71 x--> 568 - 72 --- 498 - 72 --- 992 - 72 --- 993 + 71 --- 704 + 71 --- 950 + 72 --- 483 72 x--> 568 + 72 --- 700 + 72 --- 893 73 --- 497 - 73 --- 990 - 73 --- 991 73 x--> 568 - 74 --- 496 - 74 --- 988 - 74 --- 989 + 73 --- 815 + 73 --- 857 + 74 --- 522 74 x--> 568 - 75 --- 495 - 75 --- 986 - 75 --- 987 + 74 --- 686 + 74 --- 1102 + 75 --- 564 75 x--> 568 - 76 --- 494 - 76 --- 984 - 76 --- 985 + 75 --- 647 + 75 --- 960 + 76 --- 299 76 x--> 568 - 77 --- 493 - 77 --- 982 - 77 --- 983 + 76 --- 579 + 76 --- 1016 + 77 --- 303 77 x--> 568 - 78 --- 492 - 78 --- 980 - 78 --- 981 + 77 --- 710 + 77 --- 917 + 78 --- 305 78 x--> 568 - 79 --- 491 - 79 --- 978 - 79 --- 979 + 78 --- 654 + 78 --- 969 + 79 --- 369 79 x--> 568 - 80 --- 490 - 80 --- 976 - 80 --- 977 + 79 --- 642 + 79 --- 862 + 80 --- 364 80 x--> 568 - 81 --- 489 - 81 --- 974 - 81 --- 975 + 80 --- 695 + 80 --- 968 + 81 --- 357 81 x--> 568 - 82 --- 488 - 82 --- 972 - 82 --- 973 + 81 --- 707 + 81 --- 1088 + 82 --- 373 82 x--> 568 - 83 --- 487 - 83 --- 970 - 83 --- 971 + 82 --- 693 + 82 --- 1114 + 83 --- 330 83 x--> 568 - 84 --- 486 - 84 --- 968 - 84 --- 969 + 83 --- 638 + 83 --- 955 + 84 --- 329 84 x--> 568 - 85 --- 485 - 85 --- 966 - 85 --- 967 + 84 --- 726 + 84 --- 997 + 85 --- 396 85 x--> 568 - 86 --- 484 - 86 --- 964 - 86 --- 965 + 85 --- 818 + 85 --- 959 + 86 --- 419 86 x--> 568 - 87 --- 483 - 87 --- 962 - 87 --- 963 + 86 --- 823 + 86 --- 920 + 87 --- 326 87 x--> 568 - 88 --- 482 - 88 --- 960 - 88 --- 961 + 87 --- 574 + 87 --- 883 + 88 --- 401 88 x--> 568 - 89 --- 481 - 89 --- 958 - 89 --- 959 + 88 --- 712 + 88 --- 1116 + 89 --- 543 89 x--> 568 - 90 --- 480 - 90 --- 956 - 90 --- 957 + 89 --- 636 + 89 --- 894 + 90 --- 367 90 x--> 568 - 91 --- 479 - 91 --- 954 - 91 --- 955 + 90 --- 689 + 90 --- 1098 + 91 --- 393 91 x--> 568 - 92 --- 478 - 92 --- 952 - 92 --- 953 + 91 --- 740 + 91 --- 1065 + 92 --- 391 92 x--> 568 - 93 --- 477 - 93 --- 950 - 93 --- 951 + 92 --- 586 + 92 --- 1044 + 93 --- 317 93 x--> 568 - 94 --- 476 - 94 --- 948 - 94 --- 949 + 93 --- 601 + 93 --- 854 + 94 --- 320 94 x--> 568 - 95 --- 475 - 95 --- 946 - 95 --- 947 + 94 --- 784 + 94 --- 943 + 95 --- 311 95 x--> 568 - 96 --- 474 - 96 --- 944 - 96 --- 945 + 95 --- 659 + 95 --- 965 + 96 --- 515 96 x--> 568 - 97 --- 473 - 97 --- 942 - 97 --- 943 + 96 --- 591 + 96 --- 1021 + 97 --- 371 97 x--> 568 - 98 --- 472 - 98 --- 940 - 98 --- 941 + 97 --- 842 + 97 --- 1064 + 98 --- 511 98 x--> 568 - 99 --- 471 - 99 --- 938 - 99 --- 939 + 98 --- 605 + 98 --- 886 + 99 --- 538 99 x--> 568 - 100 --- 470 - 100 --- 936 - 100 --- 937 + 99 --- 667 + 99 --- 982 + 100 --- 416 100 x--> 568 - 101 --- 469 - 101 --- 934 - 101 --- 935 + 100 --- 604 + 100 --- 852 + 101 --- 304 101 x--> 568 - 102 --- 468 - 102 --- 932 - 102 --- 933 + 101 --- 629 + 101 --- 908 + 102 --- 381 102 x--> 568 - 103 --- 467 - 103 --- 930 - 103 --- 931 + 102 --- 709 + 102 --- 1046 + 103 --- 445 103 x--> 568 - 104 --- 466 - 104 --- 928 - 104 --- 929 + 103 --- 819 + 103 --- 951 + 104 --- 321 104 x--> 568 - 105 --- 465 - 105 --- 926 - 105 --- 927 + 104 --- 635 + 104 --- 964 + 105 --- 374 105 x--> 568 - 106 --- 464 - 106 --- 924 - 106 --- 925 + 105 --- 643 + 105 --- 1008 + 106 --- 557 106 x--> 568 - 107 --- 463 - 107 --- 922 - 107 --- 923 + 106 --- 753 + 106 --- 1110 + 107 --- 540 107 x--> 568 - 108 --- 462 - 108 --- 920 - 108 --- 921 + 107 --- 829 + 107 --- 1077 + 108 --- 300 108 x--> 568 - 109 --- 461 - 109 --- 918 - 109 --- 919 + 108 --- 593 + 108 --- 870 + 109 --- 535 109 x--> 568 - 110 --- 460 - 110 --- 916 - 110 --- 917 + 109 --- 619 + 109 --- 977 + 110 --- 469 110 x--> 568 - 111 --- 459 - 111 --- 914 - 111 --- 915 + 110 --- 655 + 110 --- 991 + 111 --- 461 111 x--> 568 - 112 --- 458 - 112 --- 912 - 112 --- 913 + 111 --- 627 + 111 --- 987 + 112 --- 308 112 x--> 568 - 113 --- 457 - 113 --- 910 - 113 --- 911 + 112 --- 624 + 112 --- 1094 + 113 --- 500 113 x--> 568 - 114 --- 456 - 114 --- 908 - 114 --- 909 + 113 --- 697 + 113 --- 915 + 114 --- 446 114 x--> 568 - 115 --- 455 - 115 --- 906 - 115 --- 907 + 114 --- 756 + 114 --- 1071 + 115 --- 439 115 x--> 568 - 116 --- 454 - 116 --- 904 - 116 --- 905 + 115 --- 687 + 115 --- 1000 + 116 --- 456 116 x--> 568 - 117 --- 453 - 117 --- 902 - 117 --- 903 + 116 --- 683 + 116 --- 1002 + 117 --- 408 117 x--> 568 - 118 --- 452 - 118 --- 900 - 118 --- 901 + 117 --- 799 + 117 --- 1074 + 118 --- 502 118 x--> 568 - 120 --- 451 - 120 --- 898 - 120 --- 899 + 118 --- 814 + 118 --- 1127 + 120 --- 349 120 x--> 568 + 120 --- 802 + 120 --- 1030 121 --- 450 - 121 --- 896 - 121 --- 897 121 x--> 568 - 122 --- 449 - 122 --- 894 - 122 --- 895 + 121 --- 705 + 121 --- 895 + 122 --- 466 122 x--> 568 - 123 --- 448 - 123 --- 892 - 123 --- 893 + 122 --- 714 + 122 --- 1019 + 123 --- 343 123 x--> 568 - 124 --- 447 - 124 --- 890 - 124 --- 891 + 123 --- 812 + 123 --- 1126 + 124 --- 309 124 x--> 568 - 125 --- 446 - 125 --- 888 - 125 --- 889 + 124 --- 735 + 124 --- 909 + 125 --- 400 125 x--> 568 - 126 --- 445 - 126 --- 886 - 126 --- 887 + 125 --- 806 + 125 --- 1028 + 126 --- 328 126 x--> 568 - 127 --- 444 - 127 --- 884 - 127 --- 885 + 126 --- 747 + 126 --- 897 + 127 --- 342 127 x--> 568 - 128 --- 443 - 128 --- 882 - 128 --- 883 + 127 --- 671 + 127 --- 994 + 128 --- 495 128 x--> 568 - 129 --- 442 - 129 --- 880 - 129 --- 881 + 128 --- 780 + 128 --- 1105 + 129 --- 392 129 x--> 568 - 130 --- 441 - 130 --- 878 - 130 --- 879 + 129 --- 730 + 129 --- 902 + 130 --- 355 130 x--> 568 - 131 --- 440 - 131 --- 876 - 131 --- 877 + 130 --- 670 + 130 --- 1038 + 131 --- 471 131 x--> 568 - 132 --- 439 - 132 --- 874 - 132 --- 875 + 131 --- 696 + 131 --- 907 + 132 --- 319 132 x--> 568 - 133 --- 438 - 133 --- 872 - 133 --- 873 + 132 --- 703 + 132 --- 911 + 133 --- 492 133 x--> 568 - 134 --- 437 - 134 --- 870 - 134 --- 871 + 133 --- 824 + 133 --- 867 + 134 --- 444 134 x--> 568 - 135 --- 436 - 135 --- 868 - 135 --- 869 + 134 --- 582 + 134 --- 890 + 135 --- 359 135 x--> 568 - 136 --- 435 - 136 --- 866 - 136 --- 867 + 135 --- 723 + 135 --- 860 + 136 --- 447 136 x--> 568 - 137 --- 434 - 137 --- 864 - 137 --- 865 + 136 --- 734 + 136 --- 1068 + 137 --- 458 137 x--> 568 - 138 --- 433 - 138 --- 862 - 138 --- 863 + 137 --- 826 + 137 --- 1091 + 138 --- 307 138 x--> 568 - 139 --- 432 - 139 --- 860 - 139 --- 861 + 138 --- 613 + 138 --- 1119 + 139 --- 556 139 x--> 568 - 140 --- 431 - 140 --- 858 - 140 --- 859 + 139 --- 727 + 139 --- 1128 + 140 --- 287 140 x--> 568 - 141 --- 430 - 141 --- 856 - 141 --- 857 + 140 --- 595 + 140 --- 1115 + 141 --- 477 141 x--> 568 - 142 --- 429 - 142 --- 854 - 142 --- 855 + 141 --- 653 + 141 --- 953 + 142 --- 558 142 x--> 568 - 143 --- 428 - 143 --- 852 - 143 --- 853 + 142 --- 744 + 142 --- 989 + 143 --- 493 143 x--> 568 - 144 --- 427 - 144 --- 850 - 144 --- 851 + 143 --- 771 + 143 --- 961 + 144 --- 378 144 x--> 568 - 145 --- 426 - 145 --- 848 - 145 --- 849 + 144 --- 632 + 144 --- 1015 + 145 --- 505 145 x--> 568 - 146 --- 425 - 146 --- 846 - 146 --- 847 + 145 --- 663 + 145 --- 891 + 146 --- 468 146 x--> 568 - 147 --- 424 - 147 --- 844 - 147 --- 845 + 146 --- 764 + 146 --- 1117 + 147 --- 353 147 x--> 568 - 148 --- 423 - 148 --- 842 - 148 --- 843 + 147 --- 584 + 147 --- 880 + 148 --- 459 148 x--> 568 - 149 --- 422 - 149 --- 840 - 149 --- 841 + 148 --- 736 + 148 --- 949 + 149 --- 372 149 x--> 568 - 150 --- 421 - 150 --- 838 - 150 --- 839 + 149 --- 748 + 149 --- 990 + 150 --- 363 150 x--> 568 - 151 --- 420 - 151 --- 836 - 151 --- 837 + 150 --- 609 + 150 --- 1043 + 151 --- 526 151 x--> 568 - 152 --- 419 - 152 --- 834 - 152 --- 835 + 151 --- 773 + 151 --- 945 + 152 --- 553 152 x--> 568 - 153 --- 418 - 153 --- 832 - 153 --- 833 + 152 --- 690 + 152 --- 1053 + 153 --- 517 153 x--> 568 - 154 --- 417 - 154 --- 830 - 154 --- 831 + 153 --- 645 + 153 --- 859 + 154 --- 390 154 x--> 568 - 155 --- 416 - 155 --- 828 - 155 --- 829 + 154 --- 762 + 154 --- 996 + 155 --- 501 155 x--> 568 - 156 --- 415 - 156 --- 826 - 156 --- 827 + 155 --- 847 + 155 --- 995 + 156 --- 521 156 x--> 568 - 157 --- 414 - 157 --- 824 - 157 --- 825 + 156 --- 722 + 156 --- 881 + 157 --- 323 157 x--> 568 - 158 --- 413 - 158 --- 822 - 158 --- 823 + 157 --- 616 + 157 --- 1026 + 158 --- 489 158 x--> 568 - 159 --- 412 - 159 --- 820 - 159 --- 821 + 158 --- 610 + 158 --- 948 + 159 --- 293 159 x--> 568 - 160 --- 411 - 160 --- 818 - 160 --- 819 + 159 --- 594 + 159 --- 944 + 160 --- 414 160 x--> 568 - 161 --- 410 - 161 --- 816 - 161 --- 817 + 160 --- 571 + 160 --- 1129 + 161 --- 375 161 x--> 568 - 162 --- 409 - 162 --- 814 - 162 --- 815 + 161 --- 805 + 161 --- 1086 + 162 --- 315 162 x--> 568 - 163 --- 408 - 163 --- 812 - 163 --- 813 + 162 --- 774 + 162 --- 1034 + 163 --- 448 163 x--> 568 - 164 --- 407 - 164 --- 810 - 164 --- 811 + 163 --- 698 + 163 --- 865 + 164 --- 516 164 x--> 568 - 165 --- 406 - 165 --- 808 - 165 --- 809 + 164 --- 674 + 164 --- 971 + 165 --- 289 165 x--> 568 - 166 --- 405 - 166 --- 806 - 166 --- 807 + 165 --- 573 + 165 --- 934 + 166 --- 397 166 x--> 568 - 167 --- 404 - 167 --- 804 - 167 --- 805 + 166 --- 702 + 166 --- 1063 + 167 --- 480 167 x--> 568 - 168 --- 403 - 168 --- 802 - 168 --- 803 + 167 --- 589 + 167 --- 1083 + 168 --- 331 168 x--> 568 - 169 --- 402 - 169 --- 800 - 169 --- 801 + 168 --- 811 + 168 --- 1085 + 169 --- 529 169 x--> 568 - 170 --- 401 - 170 --- 798 - 170 --- 799 + 169 --- 576 + 169 --- 925 + 170 --- 428 170 x--> 568 - 171 --- 400 - 171 --- 796 - 171 --- 797 + 170 --- 795 + 170 --- 1106 + 171 --- 322 171 x--> 568 - 172 --- 399 - 172 --- 794 - 172 --- 795 + 171 --- 662 + 171 --- 1041 + 172 --- 504 172 x--> 568 - 173 --- 398 - 173 --- 792 - 173 --- 793 + 172 --- 648 + 172 --- 874 + 173 --- 437 173 x--> 568 - 174 --- 397 - 174 --- 790 - 174 --- 791 + 173 --- 720 + 173 --- 992 + 174 --- 327 174 x--> 568 - 175 --- 396 - 175 --- 788 - 175 --- 789 + 174 --- 694 + 174 --- 981 + 175 --- 487 175 x--> 568 - 176 --- 395 - 176 --- 786 - 176 --- 787 + 175 --- 777 + 175 --- 1037 + 176 --- 406 176 x--> 568 - 177 --- 394 - 177 --- 784 - 177 --- 785 + 176 --- 617 + 176 --- 1007 + 177 --- 524 177 x--> 568 - 178 --- 393 - 178 --- 782 - 178 --- 783 + 177 --- 848 + 177 --- 1097 + 178 --- 423 178 x--> 568 - 179 --- 392 - 179 --- 780 - 179 --- 781 + 178 --- 827 + 178 --- 957 + 179 --- 301 179 x--> 568 - 180 --- 391 - 180 --- 778 - 180 --- 779 + 179 --- 783 + 179 --- 1118 + 180 --- 333 180 x--> 568 - 181 --- 390 - 181 --- 776 - 181 --- 777 + 180 --- 672 + 180 --- 1080 + 181 --- 302 181 x--> 568 - 182 --- 389 - 182 --- 774 - 182 --- 775 + 181 --- 679 + 181 --- 913 + 182 --- 550 182 x--> 568 - 183 --- 388 - 183 --- 772 - 183 --- 773 + 182 --- 630 + 182 --- 912 + 183 --- 519 183 x--> 568 - 184 --- 387 - 184 --- 770 - 184 --- 771 + 183 --- 598 + 183 --- 1067 + 184 --- 559 184 x--> 568 - 185 --- 386 - 185 --- 768 - 185 --- 769 + 184 --- 602 + 184 --- 1014 + 185 --- 341 185 x--> 568 - 186 --- 385 - 186 --- 766 - 186 --- 767 + 185 --- 585 + 185 --- 928 + 186 --- 542 186 x--> 568 - 187 --- 384 - 187 --- 764 - 187 --- 765 + 186 --- 688 + 186 --- 1060 + 187 --- 478 187 x--> 568 - 188 --- 383 - 188 --- 762 - 188 --- 763 + 187 --- 657 + 187 --- 855 + 188 --- 518 188 x--> 568 - 189 --- 382 - 189 --- 760 - 189 --- 761 + 188 --- 831 + 188 --- 986 + 189 --- 554 189 x--> 568 - 190 --- 381 - 190 --- 758 - 190 --- 759 + 189 --- 738 + 189 --- 978 + 190 --- 490 190 x--> 568 - 191 --- 380 - 191 --- 756 - 191 --- 757 + 190 --- 837 + 190 --- 905 + 191 --- 337 191 x--> 568 - 192 --- 379 - 192 --- 754 - 192 --- 755 + 191 --- 768 + 191 --- 1012 + 192 --- 520 192 x--> 568 - 193 --- 378 - 193 --- 752 - 193 --- 753 + 192 --- 612 + 192 --- 1031 + 193 --- 362 193 x--> 568 - 194 --- 377 - 194 --- 750 - 194 --- 751 + 193 --- 646 + 193 --- 1123 + 194 --- 376 194 x--> 568 - 195 --- 376 - 195 --- 748 - 195 --- 749 + 194 --- 725 + 194 --- 1055 + 195 --- 336 195 x--> 568 - 196 --- 375 - 196 --- 746 - 196 --- 747 + 195 --- 807 + 195 --- 1050 + 196 --- 539 196 x--> 568 - 197 --- 374 - 197 --- 744 - 197 --- 745 + 196 --- 719 + 196 --- 1049 + 197 --- 453 197 x--> 568 - 198 --- 373 - 198 --- 742 - 198 --- 743 + 197 --- 652 + 197 --- 988 + 198 --- 325 198 x--> 568 - 199 --- 372 - 199 --- 740 - 199 --- 741 + 198 --- 661 + 198 --- 871 + 199 --- 384 199 x--> 568 - 200 --- 371 - 200 --- 738 - 200 --- 739 + 199 --- 841 + 199 --- 933 + 200 --- 360 200 x--> 568 - 201 --- 370 - 201 --- 736 - 201 --- 737 + 200 --- 755 + 200 --- 926 + 201 --- 494 201 x--> 568 - 202 --- 369 - 202 --- 734 - 202 --- 735 + 201 --- 664 + 201 --- 1029 + 202 --- 422 202 x--> 568 - 203 --- 368 - 203 --- 732 - 203 --- 733 + 202 --- 588 + 202 --- 873 + 203 --- 462 203 x--> 568 - 204 --- 367 - 204 --- 730 - 204 --- 731 + 203 --- 791 + 203 --- 1111 + 204 --- 386 204 x--> 568 - 205 --- 366 - 205 --- 728 - 205 --- 729 + 204 --- 685 + 204 --- 903 + 205 --- 324 205 x--> 568 - 206 --- 365 - 206 --- 726 - 206 --- 727 + 205 --- 708 + 205 --- 1087 + 206 --- 503 206 x--> 568 - 207 --- 364 - 207 --- 724 - 207 --- 725 + 206 --- 846 + 206 --- 952 + 207 --- 312 207 x--> 568 - 208 --- 363 - 208 --- 722 - 208 --- 723 + 207 --- 782 + 207 --- 1113 + 208 --- 552 208 x--> 568 - 209 --- 362 - 209 --- 720 - 209 --- 721 + 208 --- 623 + 208 --- 1023 + 209 --- 457 209 x--> 568 - 210 --- 361 - 210 --- 718 - 210 --- 719 + 209 --- 729 + 209 --- 1039 + 210 --- 370 210 x--> 568 - 211 --- 360 - 211 --- 716 - 211 --- 717 + 210 --- 637 + 210 --- 1066 + 211 --- 544 211 x--> 568 - 212 --- 359 - 212 --- 714 - 212 --- 715 + 211 --- 836 + 211 --- 976 + 212 --- 472 212 x--> 568 - 213 --- 358 - 213 --- 712 - 213 --- 713 + 212 --- 721 + 212 --- 931 + 213 --- 476 213 x--> 568 - 214 --- 357 - 214 --- 710 - 214 --- 711 + 213 --- 834 + 213 --- 1121 + 214 --- 410 214 x--> 568 - 215 --- 356 - 215 --- 708 - 215 --- 709 + 214 --- 743 + 214 --- 918 + 215 --- 561 215 x--> 568 - 216 --- 355 - 216 --- 706 - 216 --- 707 + 215 --- 746 + 215 --- 869 + 216 --- 514 216 x--> 568 - 217 --- 354 - 217 --- 704 - 217 --- 705 + 216 --- 759 + 216 --- 1022 + 217 --- 449 217 x--> 568 - 218 --- 353 - 218 --- 702 - 218 --- 703 + 217 --- 797 + 217 --- 1011 + 218 --- 348 218 x--> 568 - 219 --- 352 - 219 --- 700 - 219 --- 701 + 218 --- 845 + 218 --- 993 + 219 --- 545 219 x--> 568 - 220 --- 351 - 220 --- 698 - 220 --- 699 + 219 --- 597 + 219 --- 1122 + 220 --- 455 220 x--> 568 - 221 --- 350 - 221 --- 696 - 221 --- 697 + 220 --- 810 + 220 --- 1081 + 221 --- 404 221 x--> 568 - 222 --- 349 - 222 --- 694 - 222 --- 695 + 221 --- 745 + 221 --- 882 + 222 --- 291 222 x--> 568 - 223 --- 348 - 223 --- 692 - 223 --- 693 + 222 --- 656 + 222 --- 1090 + 223 --- 344 223 x--> 568 - 224 --- 347 - 224 --- 690 - 224 --- 691 + 223 --- 600 + 223 --- 924 + 224 --- 335 224 x--> 568 - 225 --- 346 - 225 --- 688 - 225 --- 689 + 224 --- 599 + 224 --- 979 + 225 --- 298 225 x--> 568 - 226 --- 345 - 226 --- 686 - 226 --- 687 + 225 --- 716 + 225 --- 1024 + 226 --- 413 226 x--> 568 - 227 --- 344 - 227 --- 684 - 227 --- 685 + 226 --- 666 + 226 --- 958 + 227 --- 532 227 x--> 568 - 228 --- 343 - 228 --- 682 - 228 --- 683 + 227 --- 575 + 227 --- 929 + 228 --- 365 228 x--> 568 - 229 --- 342 - 229 --- 680 - 229 --- 681 + 228 --- 786 + 228 --- 1052 + 229 --- 431 229 x--> 568 - 230 --- 341 - 230 --- 678 - 230 --- 679 + 229 --- 639 + 229 --- 1073 + 230 --- 499 230 x--> 568 - 231 --- 340 - 231 --- 676 - 231 --- 677 + 230 --- 618 + 230 --- 923 + 231 --- 475 231 x--> 568 - 232 --- 339 - 232 --- 674 - 232 --- 675 + 231 --- 803 + 231 --- 1059 + 232 --- 460 232 x--> 568 - 233 --- 338 - 233 --- 672 - 233 --- 673 + 232 --- 804 + 232 --- 876 + 233 --- 482 233 x--> 568 - 234 --- 337 - 234 --- 670 - 234 --- 671 + 233 --- 798 + 233 --- 906 + 234 --- 427 234 x--> 568 - 235 --- 336 - 235 --- 668 - 235 --- 669 + 234 --- 607 + 234 --- 1112 + 235 --- 452 235 x--> 568 - 236 --- 335 - 236 --- 666 - 236 --- 667 + 235 --- 733 + 235 --- 1099 + 236 --- 297 236 x--> 568 - 237 --- 334 - 237 --- 664 - 237 --- 665 + 236 --- 770 + 236 --- 1124 + 237 --- 295 237 x--> 568 - 238 --- 333 - 238 --- 662 - 238 --- 663 + 237 --- 763 + 237 --- 974 + 238 --- 313 238 x--> 568 - 239 --- 332 - 239 --- 660 - 239 --- 661 + 238 --- 620 + 238 --- 861 + 239 --- 512 239 x--> 568 - 240 --- 331 - 240 --- 658 - 240 --- 659 + 239 --- 750 + 239 --- 956 + 240 --- 465 240 x--> 568 - 241 --- 330 - 241 --- 656 - 241 --- 657 + 240 --- 731 + 240 --- 1027 + 241 --- 440 241 x--> 568 - 242 --- 329 - 242 --- 654 - 242 --- 655 + 241 --- 611 + 241 --- 1095 + 242 --- 443 242 x--> 568 - 243 --- 328 - 243 --- 652 - 243 --- 653 + 242 --- 822 + 242 --- 972 + 243 --- 464 243 x--> 568 - 244 --- 327 - 244 --- 650 - 244 --- 651 + 243 --- 809 + 243 --- 1051 + 244 --- 467 244 x--> 568 - 245 --- 326 - 245 --- 648 - 245 --- 649 + 244 --- 651 + 244 --- 1047 + 245 --- 534 245 x--> 568 - 246 --- 325 - 246 --- 646 - 246 --- 647 + 245 --- 787 + 245 --- 1130 + 246 --- 340 246 x--> 568 - 247 --- 324 - 247 --- 644 - 247 --- 645 + 246 --- 631 + 246 --- 1093 + 247 --- 351 247 x--> 568 - 248 --- 323 - 248 --- 642 - 248 --- 643 + 247 --- 790 + 247 --- 1048 + 248 --- 334 248 x--> 568 - 249 --- 322 - 249 --- 640 - 249 --- 641 + 248 --- 678 + 248 --- 1045 + 249 --- 451 249 x--> 568 - 250 --- 321 - 250 --- 638 - 250 --- 639 + 249 --- 658 + 249 --- 1069 + 250 --- 537 250 x--> 568 - 251 --- 320 - 251 --- 636 - 251 --- 637 + 250 --- 583 + 250 --- 884 + 251 --- 474 251 x--> 568 - 252 --- 319 - 252 --- 634 - 252 --- 635 + 251 --- 668 + 251 --- 1100 + 252 --- 402 252 x--> 568 - 253 --- 318 - 253 --- 632 - 253 --- 633 + 252 --- 801 + 252 --- 1075 + 253 --- 486 253 x--> 568 - 254 --- 317 - 254 --- 630 - 254 --- 631 + 253 --- 737 + 253 --- 1076 + 254 --- 429 254 x--> 568 - 255 --- 316 - 255 --- 628 - 255 --- 629 + 254 --- 681 + 254 --- 900 + 255 --- 563 255 x--> 568 - 256 --- 315 - 256 --- 626 - 256 --- 627 + 255 --- 621 + 255 --- 868 + 256 --- 395 256 x--> 568 - 257 --- 314 - 257 --- 624 - 257 --- 625 + 256 --- 751 + 256 --- 916 + 257 --- 470 257 x--> 568 - 258 --- 313 - 258 --- 622 - 258 --- 623 + 257 --- 622 + 257 --- 885 + 258 --- 407 258 x--> 568 - 259 --- 312 - 259 --- 620 - 259 --- 621 + 258 --- 614 + 258 --- 919 + 259 --- 403 259 x--> 568 - 260 --- 311 - 260 --- 618 - 260 --- 619 + 259 --- 669 + 259 --- 1125 + 260 --- 530 260 x--> 568 - 261 --- 310 - 261 --- 616 - 261 --- 617 + 260 --- 606 + 260 --- 1058 + 261 --- 358 261 x--> 568 - 262 --- 309 - 262 --- 614 - 262 --- 615 + 261 --- 816 + 261 --- 1072 + 262 --- 567 262 x--> 568 - 263 --- 308 - 263 --- 612 - 263 --- 613 + 262 --- 792 + 262 --- 973 + 263 --- 398 263 x--> 568 - 264 --- 307 - 264 --- 610 - 264 --- 611 + 263 --- 741 + 263 --- 1010 + 264 --- 387 264 x--> 568 - 265 --- 306 - 265 --- 608 - 265 --- 609 + 264 --- 592 + 264 --- 898 + 265 --- 565 265 x--> 568 - 266 --- 305 - 266 --- 606 - 266 --- 607 + 265 --- 590 + 265 --- 1103 + 266 --- 485 266 x--> 568 - 267 --- 304 - 267 --- 604 - 267 --- 605 + 266 --- 835 + 266 --- 980 + 267 --- 438 267 x--> 568 - 268 --- 303 - 268 --- 602 - 268 --- 603 + 267 --- 649 + 267 --- 910 + 268 --- 290 268 x--> 568 - 269 --- 302 - 269 --- 600 - 269 --- 601 + 268 --- 675 + 268 --- 866 + 269 --- 421 269 x--> 568 - 270 --- 301 - 270 --- 598 - 270 --- 599 + 269 --- 772 + 269 --- 946 + 270 --- 513 270 x--> 568 - 271 --- 300 - 271 --- 596 - 271 --- 597 + 270 --- 677 + 270 --- 904 + 271 --- 356 271 x--> 568 - 272 --- 299 - 272 --- 594 - 272 --- 595 + 271 --- 825 + 271 --- 1092 + 272 --- 368 272 x--> 568 - 273 --- 298 - 273 --- 592 - 273 --- 593 + 272 --- 839 + 272 --- 963 + 273 --- 318 273 x--> 568 - 274 --- 297 - 274 --- 590 - 274 --- 591 + 273 --- 793 + 273 --- 1036 + 274 --- 434 274 x--> 568 - 275 --- 296 - 275 --- 588 - 275 --- 589 + 274 --- 680 + 274 --- 966 + 275 --- 479 275 x--> 568 - 276 --- 295 - 276 --- 586 - 276 --- 587 + 275 --- 832 + 275 --- 1009 + 276 --- 366 276 x--> 568 - 277 --- 294 - 277 --- 584 - 277 --- 585 + 276 --- 684 + 276 --- 1035 + 277 --- 441 277 x--> 568 - 278 --- 293 - 278 --- 582 - 278 --- 583 + 277 --- 633 + 277 --- 1084 + 278 --- 454 278 x--> 568 - 279 --- 292 - 279 --- 580 - 279 --- 581 + 278 --- 838 + 278 --- 1061 + 279 --- 417 279 x--> 568 - 280 --- 291 - 280 --- 578 - 280 --- 579 + 279 --- 850 + 279 --- 999 + 280 --- 294 280 x--> 568 - 281 --- 290 - 281 --- 576 - 281 --- 577 + 280 --- 840 + 280 --- 856 + 281 --- 383 281 x--> 568 - 282 --- 289 - 282 --- 574 - 282 --- 575 + 281 --- 711 + 281 --- 1120 + 282 --- 430 282 x--> 568 - 283 --- 288 - 283 --- 572 - 283 --- 573 + 282 --- 706 + 282 --- 1018 + 283 --- 350 283 x--> 568 - 284 --- 287 - 284 --- 570 - 284 x--> 571 + 283 --- 761 + 283 --- 954 + 284 --- 442 284 x--> 568 + 284 --- 628 + 284 x--> 872 286 --- 287 286 --- 288 286 --- 289 @@ -3385,1126 +3385,1126 @@ flowchart LR 286 --- 1128 286 --- 1129 286 --- 1130 - 570 <--x 287 - 570 <--x 569 - 571 <--x 287 - 571 <--x 567 - 572 <--x 288 - 572 <--x 569 - 573 <--x 287 - 573 <--x 288 - 574 <--x 289 - 574 <--x 569 - 575 <--x 288 - 575 <--x 289 - 576 <--x 290 - 576 <--x 569 - 577 <--x 289 - 577 <--x 290 - 578 <--x 291 - 578 <--x 569 - 579 <--x 290 - 579 <--x 291 - 580 <--x 292 - 580 <--x 569 - 581 <--x 291 - 581 <--x 292 - 582 <--x 293 - 582 <--x 569 - 583 <--x 292 - 583 <--x 293 - 584 <--x 294 - 584 <--x 569 - 585 <--x 293 - 585 <--x 294 - 586 <--x 295 - 586 <--x 569 - 587 <--x 294 - 587 <--x 295 - 588 <--x 296 - 588 <--x 569 - 589 <--x 295 - 589 <--x 296 - 590 <--x 297 - 590 <--x 569 - 591 <--x 296 - 591 <--x 297 - 592 <--x 298 - 592 <--x 569 - 593 <--x 297 - 593 <--x 298 - 594 <--x 299 - 594 <--x 569 - 595 <--x 298 - 595 <--x 299 - 596 <--x 300 - 596 <--x 569 - 597 <--x 299 - 597 <--x 300 - 598 <--x 301 - 598 <--x 569 - 599 <--x 300 - 599 <--x 301 - 600 <--x 302 - 600 <--x 569 - 601 <--x 301 - 601 <--x 302 - 602 <--x 303 - 602 <--x 569 - 603 <--x 302 - 603 <--x 303 - 604 <--x 304 - 604 <--x 569 - 605 <--x 303 - 605 <--x 304 - 606 <--x 305 - 606 <--x 569 - 607 <--x 304 - 607 <--x 305 - 608 <--x 306 - 608 <--x 569 - 609 <--x 305 - 609 <--x 306 - 610 <--x 307 - 610 <--x 569 - 611 <--x 306 - 611 <--x 307 - 612 <--x 308 - 612 <--x 569 + 595 <--x 287 + 1115 <--x 287 + 1128 <--x 287 + 843 <--x 288 + 896 <--x 288 + 950 <--x 288 + 573 <--x 289 + 934 <--x 289 + 971 <--x 289 + 675 <--x 290 + 866 <--x 290 + 910 <--x 290 + 656 <--x 291 + 882 <--x 291 + 1090 <--x 291 + 821 <--x 292 + 984 <--x 292 + 1032 <--x 292 + 594 <--x 293 + 944 <--x 293 + 948 <--x 293 + 840 <--x 294 + 856 <--x 294 + 999 <--x 294 + 763 <--x 295 + 974 <--x 295 + 1124 <--x 295 + 789 <--x 296 + 940 <--x 296 + 1101 <--x 296 + 770 <--x 297 + 1099 <--x 297 + 1124 <--x 297 + 716 <--x 298 + 979 <--x 298 + 1024 <--x 298 + 579 <--x 299 + 917 <--x 299 + 1016 <--x 299 + 593 <--x 300 + 870 <--x 300 + 977 <--x 300 + 783 <--x 301 + 957 <--x 301 + 1118 <--x 301 + 679 <--x 302 + 913 <--x 302 + 1080 <--x 302 + 710 <--x 303 + 917 <--x 303 + 969 <--x 303 + 629 <--x 304 + 908 <--x 304 + 1046 <--x 304 + 654 <--x 305 + 862 <--x 305 + 969 <--x 305 + 650 <--x 306 + 1003 <--x 306 + 1054 <--x 306 613 <--x 307 - 613 <--x 308 - 614 <--x 309 - 614 <--x 569 - 615 <--x 308 - 615 <--x 309 - 616 <--x 310 - 616 <--x 569 - 617 <--x 309 - 617 <--x 310 - 618 <--x 311 - 618 <--x 569 - 619 <--x 310 - 619 <--x 311 - 620 <--x 312 - 620 <--x 569 - 621 <--x 311 - 621 <--x 312 - 622 <--x 313 - 622 <--x 569 - 623 <--x 312 - 623 <--x 313 - 624 <--x 314 - 624 <--x 569 - 625 <--x 313 - 625 <--x 314 - 626 <--x 315 - 626 <--x 569 - 627 <--x 314 - 627 <--x 315 - 628 <--x 316 - 628 <--x 569 - 629 <--x 315 - 629 <--x 316 - 630 <--x 317 - 630 <--x 569 - 631 <--x 316 - 631 <--x 317 - 632 <--x 318 - 632 <--x 569 - 633 <--x 317 - 633 <--x 318 - 634 <--x 319 - 634 <--x 569 - 635 <--x 318 - 635 <--x 319 - 636 <--x 320 - 636 <--x 569 - 637 <--x 319 - 637 <--x 320 - 638 <--x 321 - 638 <--x 569 - 639 <--x 320 - 639 <--x 321 - 640 <--x 322 - 640 <--x 569 - 641 <--x 321 - 641 <--x 322 - 642 <--x 323 - 642 <--x 569 - 643 <--x 322 - 643 <--x 323 - 644 <--x 324 - 644 <--x 569 - 645 <--x 323 - 645 <--x 324 - 646 <--x 325 - 646 <--x 569 - 647 <--x 324 - 647 <--x 325 - 648 <--x 326 - 648 <--x 569 - 649 <--x 325 - 649 <--x 326 - 650 <--x 327 - 650 <--x 569 - 651 <--x 326 - 651 <--x 327 - 652 <--x 328 - 652 <--x 569 - 653 <--x 327 - 653 <--x 328 - 654 <--x 329 - 654 <--x 569 - 655 <--x 328 - 655 <--x 329 - 656 <--x 330 - 656 <--x 569 - 657 <--x 329 - 657 <--x 330 - 658 <--x 331 - 658 <--x 569 - 659 <--x 330 - 659 <--x 331 - 660 <--x 332 - 660 <--x 569 - 661 <--x 331 - 661 <--x 332 - 662 <--x 333 - 662 <--x 569 - 663 <--x 332 - 663 <--x 333 - 664 <--x 334 - 664 <--x 569 - 665 <--x 333 - 665 <--x 334 - 666 <--x 335 - 666 <--x 569 - 667 <--x 334 - 667 <--x 335 - 668 <--x 336 - 668 <--x 569 - 669 <--x 335 - 669 <--x 336 - 670 <--x 337 - 670 <--x 569 - 671 <--x 336 - 671 <--x 337 - 672 <--x 338 - 672 <--x 569 - 673 <--x 337 - 673 <--x 338 - 674 <--x 339 - 674 <--x 569 - 675 <--x 338 - 675 <--x 339 - 676 <--x 340 - 676 <--x 569 - 677 <--x 339 - 677 <--x 340 - 678 <--x 341 - 678 <--x 569 - 679 <--x 340 - 679 <--x 341 - 680 <--x 342 - 680 <--x 569 - 681 <--x 341 - 681 <--x 342 - 682 <--x 343 - 682 <--x 569 - 683 <--x 342 - 683 <--x 343 - 684 <--x 344 - 684 <--x 569 - 685 <--x 343 - 685 <--x 344 - 686 <--x 345 - 686 <--x 569 - 687 <--x 344 - 687 <--x 345 - 688 <--x 346 - 688 <--x 569 - 689 <--x 345 - 689 <--x 346 - 690 <--x 347 - 690 <--x 569 - 691 <--x 346 - 691 <--x 347 - 692 <--x 348 - 692 <--x 569 - 693 <--x 347 - 693 <--x 348 - 694 <--x 349 - 694 <--x 569 - 695 <--x 348 - 695 <--x 349 - 696 <--x 350 - 696 <--x 569 - 697 <--x 349 - 697 <--x 350 - 698 <--x 351 - 698 <--x 569 - 699 <--x 350 - 699 <--x 351 - 700 <--x 352 - 700 <--x 569 - 701 <--x 351 - 701 <--x 352 - 702 <--x 353 - 702 <--x 569 - 703 <--x 352 - 703 <--x 353 - 704 <--x 354 - 704 <--x 569 - 705 <--x 353 - 705 <--x 354 - 706 <--x 355 - 706 <--x 569 - 707 <--x 354 - 707 <--x 355 - 708 <--x 356 - 708 <--x 569 - 709 <--x 355 - 709 <--x 356 - 710 <--x 357 - 710 <--x 569 - 711 <--x 356 - 711 <--x 357 - 712 <--x 358 - 712 <--x 569 - 713 <--x 357 - 713 <--x 358 - 714 <--x 359 - 714 <--x 569 - 715 <--x 358 - 715 <--x 359 - 716 <--x 360 - 716 <--x 569 - 717 <--x 359 - 717 <--x 360 - 718 <--x 361 - 718 <--x 569 - 719 <--x 360 - 719 <--x 361 - 720 <--x 362 - 720 <--x 569 - 721 <--x 361 - 721 <--x 362 - 722 <--x 363 - 722 <--x 569 - 723 <--x 362 - 723 <--x 363 - 724 <--x 364 - 724 <--x 569 - 725 <--x 363 - 725 <--x 364 - 726 <--x 365 - 726 <--x 569 - 727 <--x 364 - 727 <--x 365 - 728 <--x 366 - 728 <--x 569 - 729 <--x 365 - 729 <--x 366 - 730 <--x 367 - 730 <--x 569 - 731 <--x 366 - 731 <--x 367 - 732 <--x 368 - 732 <--x 569 - 733 <--x 367 - 733 <--x 368 - 734 <--x 369 - 734 <--x 569 - 735 <--x 368 - 735 <--x 369 - 736 <--x 370 - 736 <--x 569 - 737 <--x 369 - 737 <--x 370 - 738 <--x 371 - 738 <--x 569 - 739 <--x 370 - 739 <--x 371 - 740 <--x 372 - 740 <--x 569 - 741 <--x 371 - 741 <--x 372 - 742 <--x 373 - 742 <--x 569 - 743 <--x 372 - 743 <--x 373 - 744 <--x 374 - 744 <--x 569 - 745 <--x 373 - 745 <--x 374 - 746 <--x 375 - 746 <--x 569 - 747 <--x 374 - 747 <--x 375 - 748 <--x 376 - 748 <--x 569 - 749 <--x 375 - 749 <--x 376 - 750 <--x 377 - 750 <--x 569 - 751 <--x 376 - 751 <--x 377 - 752 <--x 378 - 752 <--x 569 - 753 <--x 377 - 753 <--x 378 - 754 <--x 379 - 754 <--x 569 - 755 <--x 378 - 755 <--x 379 - 756 <--x 380 - 756 <--x 569 - 757 <--x 379 - 757 <--x 380 - 758 <--x 381 - 758 <--x 569 - 759 <--x 380 - 759 <--x 381 - 760 <--x 382 - 760 <--x 569 - 761 <--x 381 - 761 <--x 382 - 762 <--x 383 - 762 <--x 569 - 763 <--x 382 - 763 <--x 383 - 764 <--x 384 - 764 <--x 569 - 765 <--x 383 - 765 <--x 384 - 766 <--x 385 - 766 <--x 569 - 767 <--x 384 - 767 <--x 385 - 768 <--x 386 - 768 <--x 569 - 769 <--x 385 - 769 <--x 386 - 770 <--x 387 - 770 <--x 569 - 771 <--x 386 - 771 <--x 387 - 772 <--x 388 - 772 <--x 569 - 773 <--x 387 - 773 <--x 388 - 774 <--x 389 - 774 <--x 569 - 775 <--x 388 - 775 <--x 389 - 776 <--x 390 - 776 <--x 569 - 777 <--x 389 - 777 <--x 390 - 778 <--x 391 - 778 <--x 569 - 779 <--x 390 - 779 <--x 391 - 780 <--x 392 - 780 <--x 569 - 781 <--x 391 - 781 <--x 392 - 782 <--x 393 - 782 <--x 569 - 783 <--x 392 - 783 <--x 393 - 784 <--x 394 - 784 <--x 569 - 785 <--x 393 - 785 <--x 394 - 786 <--x 395 - 786 <--x 569 - 787 <--x 394 - 787 <--x 395 - 788 <--x 396 - 788 <--x 569 - 789 <--x 395 - 789 <--x 396 - 790 <--x 397 - 790 <--x 569 - 791 <--x 396 - 791 <--x 397 - 792 <--x 398 - 792 <--x 569 - 793 <--x 397 - 793 <--x 398 - 794 <--x 399 - 794 <--x 569 - 795 <--x 398 - 795 <--x 399 - 796 <--x 400 - 796 <--x 569 - 797 <--x 399 - 797 <--x 400 - 798 <--x 401 - 798 <--x 569 - 799 <--x 400 - 799 <--x 401 - 800 <--x 402 - 800 <--x 569 - 801 <--x 401 + 1091 <--x 307 + 1119 <--x 307 + 624 <--x 308 + 915 <--x 308 + 1094 <--x 308 + 735 <--x 309 + 909 <--x 309 + 1126 <--x 309 + 785 <--x 310 + 967 <--x 310 + 998 <--x 310 + 659 <--x 311 + 965 <--x 311 + 1021 <--x 311 + 782 <--x 312 + 952 <--x 312 + 1113 <--x 312 + 620 <--x 313 + 861 <--x 313 + 974 <--x 313 + 580 <--x 314 + 938 <--x 314 + 970 <--x 314 + 774 <--x 315 + 1034 <--x 315 + 1086 <--x 315 + 732 <--x 316 + 892 <--x 316 + 922 <--x 316 + 601 <--x 317 + 854 <--x 317 + 943 <--x 317 + 793 <--x 318 + 963 <--x 318 + 1036 <--x 318 + 703 <--x 319 + 907 <--x 319 + 911 <--x 319 + 784 <--x 320 + 943 <--x 320 + 965 <--x 320 + 635 <--x 321 + 964 <--x 321 + 1008 <--x 321 + 662 <--x 322 + 1041 <--x 322 + 1106 <--x 322 + 616 <--x 323 + 881 <--x 323 + 1026 <--x 323 + 708 <--x 324 + 903 <--x 324 + 1087 <--x 324 + 661 <--x 325 + 871 <--x 325 + 988 <--x 325 + 574 <--x 326 + 883 <--x 326 + 1116 <--x 326 + 694 <--x 327 + 981 <--x 327 + 992 <--x 327 + 747 <--x 328 + 897 <--x 328 + 1028 <--x 328 + 726 <--x 329 + 959 <--x 329 + 997 <--x 329 + 638 <--x 330 + 955 <--x 330 + 997 <--x 330 + 811 <--x 331 + 1083 <--x 331 + 1085 <--x 331 + 833 <--x 332 + 877 <--x 332 + 914 <--x 332 + 672 <--x 333 + 1080 <--x 333 + 1118 <--x 333 + 678 <--x 334 + 1045 <--x 334 + 1048 <--x 334 + 599 <--x 335 + 924 <--x 335 + 979 <--x 335 + 807 <--x 336 + 1050 <--x 336 + 1055 <--x 336 + 768 <--x 337 + 905 <--x 337 + 1012 <--x 337 + 800 <--x 338 + 901 <--x 338 + 1108 <--x 338 + 715 <--x 339 + 1033 <--x 339 + 1056 <--x 339 + 631 <--x 340 + 1093 <--x 340 + 1130 <--x 340 + 585 <--x 341 + 928 <--x 341 + 1014 <--x 341 + 671 <--x 342 + 897 <--x 342 + 994 <--x 342 + 812 <--x 343 + 1019 <--x 343 + 1126 <--x 343 + 600 <--x 344 + 924 <--x 344 + 1090 <--x 344 + 713 <--x 345 + 887 <--x 345 + 937 <--x 345 + 608 <--x 346 + 896 <--x 346 + 935 <--x 346 + 775 <--x 347 + 1082 <--x 347 + 1107 <--x 347 + 845 <--x 348 + 993 <--x 348 + 1011 <--x 348 + 802 <--x 349 + 1030 <--x 349 + 761 <--x 350 + 954 <--x 350 + 1018 <--x 350 + 790 <--x 351 + 1048 <--x 351 + 1093 <--x 351 + 766 <--x 352 + 921 <--x 352 + 940 <--x 352 + 584 <--x 353 + 880 <--x 353 + 1117 <--x 353 + 754 <--x 354 + 942 <--x 354 + 1107 <--x 354 + 670 <--x 355 + 902 <--x 355 + 1038 <--x 355 + 825 <--x 356 + 904 <--x 356 + 1092 <--x 356 + 707 <--x 357 + 1088 <--x 357 + 1114 <--x 357 + 816 <--x 358 + 1058 <--x 358 + 1072 <--x 358 + 723 <--x 359 + 860 <--x 359 + 890 <--x 359 + 755 <--x 360 + 926 <--x 360 + 933 <--x 360 + 634 <--x 361 + 858 <--x 361 + 932 <--x 361 + 646 <--x 362 + 1031 <--x 362 + 1123 <--x 362 + 609 <--x 363 + 990 <--x 363 + 1043 <--x 363 + 695 <--x 364 + 968 <--x 364 + 1088 <--x 364 + 786 <--x 365 + 929 <--x 365 + 1052 <--x 365 + 684 <--x 366 + 1009 <--x 366 + 1035 <--x 366 + 689 <--x 367 + 1065 <--x 367 + 1098 <--x 367 + 839 <--x 368 + 963 <--x 368 + 1092 <--x 368 + 642 <--x 369 + 862 <--x 369 + 968 <--x 369 + 637 <--x 370 + 1039 <--x 370 + 1066 <--x 370 + 842 <--x 371 + 886 <--x 371 + 1064 <--x 371 + 748 <--x 372 + 949 <--x 372 + 990 <--x 372 + 693 <--x 373 + 955 <--x 373 + 1114 <--x 373 + 643 <--x 374 + 1008 <--x 374 + 1110 <--x 374 + 805 <--x 375 + 1086 <--x 375 + 1129 <--x 375 + 725 <--x 376 + 1055 <--x 376 + 1123 <--x 376 + 779 <--x 377 + 878 <--x 377 + 936 <--x 377 + 632 <--x 378 + 961 <--x 378 + 1015 <--x 378 + 578 <--x 379 + 930 <--x 379 + 941 <--x 379 + 641 <--x 380 + 858 <--x 380 + 947 <--x 380 + 709 <--x 381 + 951 <--x 381 + 1046 <--x 381 + 699 <--x 382 + 1020 <--x 382 + 1079 <--x 382 + 711 <--x 383 + 856 <--x 383 + 1120 <--x 383 + 841 <--x 384 + 871 <--x 384 + 933 <--x 384 + 728 <--x 385 + 930 <--x 385 + 984 <--x 385 + 685 <--x 386 + 903 <--x 386 + 1111 <--x 386 + 592 <--x 387 + 898 <--x 387 + 1010 <--x 387 + 778 <--x 388 + 998 <--x 388 + 1057 <--x 388 + 644 <--x 389 + 851 <--x 389 + 1079 <--x 389 + 762 <--x 390 + 859 <--x 390 + 996 <--x 390 + 586 <--x 391 + 854 <--x 391 + 1044 <--x 391 + 730 <--x 392 + 902 <--x 392 + 1105 <--x 392 + 740 <--x 393 + 1044 <--x 393 + 1065 <--x 393 + 739 <--x 394 + 975 <--x 394 + 1013 <--x 394 + 751 <--x 395 + 868 <--x 395 + 916 <--x 395 + 818 <--x 396 + 920 <--x 396 + 959 <--x 396 + 702 <--x 397 + 934 <--x 397 + 1063 <--x 397 + 741 <--x 398 + 973 <--x 398 + 1010 <--x 398 + 769 <--x 399 + 914 <--x 399 + 1078 <--x 399 + 806 <--x 400 + 909 <--x 400 + 1028 <--x 400 + 712 <--x 401 + 894 <--x 401 + 1116 <--x 401 801 <--x 402 - 802 <--x 403 - 802 <--x 569 - 803 <--x 402 - 803 <--x 403 - 804 <--x 404 - 804 <--x 569 - 805 <--x 403 - 805 <--x 404 - 806 <--x 405 - 806 <--x 569 - 807 <--x 404 - 807 <--x 405 - 808 <--x 406 - 808 <--x 569 - 809 <--x 405 - 809 <--x 406 - 810 <--x 407 - 810 <--x 569 - 811 <--x 406 - 811 <--x 407 - 812 <--x 408 - 812 <--x 569 - 813 <--x 407 - 813 <--x 408 - 814 <--x 409 - 814 <--x 569 - 815 <--x 408 - 815 <--x 409 - 816 <--x 410 - 816 <--x 569 - 817 <--x 409 - 817 <--x 410 - 818 <--x 411 - 818 <--x 569 - 819 <--x 410 - 819 <--x 411 - 820 <--x 412 - 820 <--x 569 - 821 <--x 411 - 821 <--x 412 - 822 <--x 413 - 822 <--x 569 - 823 <--x 412 - 823 <--x 413 - 824 <--x 414 - 824 <--x 569 - 825 <--x 413 - 825 <--x 414 - 826 <--x 415 - 826 <--x 569 - 827 <--x 414 - 827 <--x 415 - 828 <--x 416 - 828 <--x 569 - 829 <--x 415 - 829 <--x 416 - 830 <--x 417 - 830 <--x 569 - 831 <--x 416 - 831 <--x 417 - 832 <--x 418 - 832 <--x 569 - 833 <--x 417 - 833 <--x 418 - 834 <--x 419 - 834 <--x 569 - 835 <--x 418 - 835 <--x 419 - 836 <--x 420 - 836 <--x 569 - 837 <--x 419 - 837 <--x 420 - 838 <--x 421 - 838 <--x 569 - 839 <--x 420 - 839 <--x 421 - 840 <--x 422 - 840 <--x 569 - 841 <--x 421 - 841 <--x 422 - 842 <--x 423 - 842 <--x 569 - 843 <--x 422 - 843 <--x 423 - 844 <--x 424 - 844 <--x 569 - 845 <--x 423 - 845 <--x 424 - 846 <--x 425 - 846 <--x 569 - 847 <--x 424 - 847 <--x 425 - 848 <--x 426 - 848 <--x 569 - 849 <--x 425 - 849 <--x 426 - 850 <--x 427 - 850 <--x 569 - 851 <--x 426 - 851 <--x 427 - 852 <--x 428 - 852 <--x 569 - 853 <--x 427 - 853 <--x 428 - 854 <--x 429 - 854 <--x 569 - 855 <--x 428 - 855 <--x 429 - 856 <--x 430 - 856 <--x 569 - 857 <--x 429 - 857 <--x 430 - 858 <--x 431 - 858 <--x 569 - 859 <--x 430 - 859 <--x 431 - 860 <--x 432 - 860 <--x 569 - 861 <--x 431 - 861 <--x 432 - 862 <--x 433 - 862 <--x 569 - 863 <--x 432 - 863 <--x 433 - 864 <--x 434 - 864 <--x 569 - 865 <--x 433 - 865 <--x 434 - 866 <--x 435 - 866 <--x 569 - 867 <--x 434 - 867 <--x 435 - 868 <--x 436 - 868 <--x 569 - 869 <--x 435 - 869 <--x 436 - 870 <--x 437 - 870 <--x 569 - 871 <--x 436 - 871 <--x 437 - 872 <--x 438 - 872 <--x 569 - 873 <--x 437 - 873 <--x 438 - 874 <--x 439 - 874 <--x 569 - 875 <--x 438 - 875 <--x 439 - 876 <--x 440 - 876 <--x 569 - 877 <--x 439 - 877 <--x 440 - 878 <--x 441 - 878 <--x 569 - 879 <--x 440 - 879 <--x 441 - 880 <--x 442 - 880 <--x 569 - 881 <--x 441 - 881 <--x 442 - 882 <--x 443 - 882 <--x 569 - 883 <--x 442 - 883 <--x 443 - 884 <--x 444 - 884 <--x 569 - 885 <--x 443 - 885 <--x 444 - 886 <--x 445 - 886 <--x 569 - 887 <--x 444 - 887 <--x 445 - 888 <--x 446 - 888 <--x 569 - 889 <--x 445 - 889 <--x 446 - 890 <--x 447 - 890 <--x 569 - 891 <--x 446 - 891 <--x 447 - 892 <--x 448 - 892 <--x 569 - 893 <--x 447 - 893 <--x 448 - 894 <--x 449 - 894 <--x 569 - 895 <--x 448 - 895 <--x 449 - 896 <--x 450 - 896 <--x 569 - 897 <--x 449 - 897 <--x 450 - 898 <--x 451 - 898 <--x 569 - 899 <--x 450 - 899 <--x 451 - 900 <--x 452 - 900 <--x 569 - 901 <--x 452 - 901 <--x 453 - 902 <--x 453 - 902 <--x 569 - 903 <--x 453 - 903 <--x 454 - 904 <--x 454 - 904 <--x 569 - 905 <--x 454 - 905 <--x 455 - 906 <--x 455 - 906 <--x 569 - 907 <--x 455 - 907 <--x 456 - 908 <--x 456 - 908 <--x 569 - 909 <--x 456 - 909 <--x 457 - 910 <--x 457 - 910 <--x 569 - 911 <--x 457 - 911 <--x 458 - 912 <--x 458 - 912 <--x 569 - 913 <--x 458 - 913 <--x 459 - 914 <--x 459 - 914 <--x 569 - 915 <--x 459 - 915 <--x 460 - 916 <--x 460 - 916 <--x 569 - 917 <--x 460 - 917 <--x 461 - 918 <--x 461 - 918 <--x 569 - 919 <--x 461 - 919 <--x 462 - 920 <--x 462 - 920 <--x 569 - 921 <--x 462 - 921 <--x 463 - 922 <--x 463 - 922 <--x 569 - 923 <--x 463 - 923 <--x 464 - 924 <--x 464 - 924 <--x 569 - 925 <--x 464 - 925 <--x 465 - 926 <--x 465 - 926 <--x 569 - 927 <--x 465 - 927 <--x 466 - 928 <--x 466 - 928 <--x 569 - 929 <--x 466 - 929 <--x 467 - 930 <--x 467 - 930 <--x 569 - 931 <--x 467 - 931 <--x 468 - 932 <--x 468 - 932 <--x 569 - 933 <--x 468 - 933 <--x 469 - 934 <--x 469 - 934 <--x 569 - 935 <--x 469 - 935 <--x 470 - 936 <--x 470 - 936 <--x 569 - 937 <--x 470 - 937 <--x 471 - 938 <--x 471 - 938 <--x 569 - 939 <--x 471 - 939 <--x 472 - 940 <--x 472 - 940 <--x 569 - 941 <--x 472 - 941 <--x 473 - 942 <--x 473 - 942 <--x 569 - 943 <--x 473 - 943 <--x 474 - 944 <--x 474 - 944 <--x 569 - 945 <--x 474 - 945 <--x 475 - 946 <--x 475 - 946 <--x 569 - 947 <--x 475 - 947 <--x 476 - 948 <--x 476 - 948 <--x 569 - 949 <--x 476 - 949 <--x 477 - 950 <--x 477 - 950 <--x 569 - 951 <--x 477 - 951 <--x 478 - 952 <--x 478 - 952 <--x 569 - 953 <--x 478 - 953 <--x 479 - 954 <--x 479 - 954 <--x 569 - 955 <--x 479 - 955 <--x 480 - 956 <--x 480 - 956 <--x 569 - 957 <--x 480 - 957 <--x 481 - 958 <--x 481 - 958 <--x 569 - 959 <--x 481 - 959 <--x 482 - 960 <--x 482 - 960 <--x 569 - 961 <--x 482 - 961 <--x 483 - 962 <--x 483 - 962 <--x 569 - 963 <--x 483 - 963 <--x 484 - 964 <--x 484 - 964 <--x 569 - 965 <--x 484 - 965 <--x 485 - 966 <--x 485 - 966 <--x 569 - 967 <--x 485 - 967 <--x 486 - 968 <--x 486 - 968 <--x 569 - 969 <--x 486 - 969 <--x 487 - 970 <--x 487 - 970 <--x 569 - 971 <--x 487 - 971 <--x 488 - 972 <--x 488 - 972 <--x 569 - 973 <--x 488 - 973 <--x 489 - 974 <--x 489 - 974 <--x 569 - 975 <--x 489 - 975 <--x 490 - 976 <--x 490 - 976 <--x 569 - 977 <--x 490 - 977 <--x 491 - 978 <--x 491 - 978 <--x 569 - 979 <--x 491 - 979 <--x 492 - 980 <--x 492 - 980 <--x 569 - 981 <--x 492 - 981 <--x 493 - 982 <--x 493 - 982 <--x 569 - 983 <--x 493 - 983 <--x 494 - 984 <--x 494 - 984 <--x 569 - 985 <--x 494 - 985 <--x 495 - 986 <--x 495 - 986 <--x 569 - 987 <--x 495 - 987 <--x 496 - 988 <--x 496 - 988 <--x 569 - 989 <--x 496 - 989 <--x 497 - 990 <--x 497 - 990 <--x 569 - 991 <--x 497 - 991 <--x 498 - 992 <--x 498 - 992 <--x 569 - 993 <--x 498 - 993 <--x 499 - 994 <--x 499 - 994 <--x 569 - 995 <--x 499 - 995 <--x 500 - 996 <--x 500 - 996 <--x 569 - 997 <--x 500 - 997 <--x 501 - 998 <--x 501 - 998 <--x 569 - 999 <--x 501 - 999 <--x 502 - 1000 <--x 502 - 1000 <--x 569 - 1001 <--x 502 - 1001 <--x 503 - 1002 <--x 503 - 1002 <--x 569 - 1003 <--x 503 - 1003 <--x 504 - 1004 <--x 504 - 1004 <--x 569 - 1005 <--x 504 - 1005 <--x 505 - 1006 <--x 505 - 1006 <--x 569 - 1007 <--x 505 - 1007 <--x 506 - 1008 <--x 506 - 1008 <--x 569 - 1009 <--x 506 - 1009 <--x 507 - 1010 <--x 507 - 1010 <--x 569 - 1011 <--x 507 - 1011 <--x 508 - 1012 <--x 508 - 1012 <--x 569 - 1013 <--x 508 - 1013 <--x 509 - 1014 <--x 509 - 1014 <--x 569 - 1015 <--x 509 - 1015 <--x 510 - 1016 <--x 510 - 1016 <--x 569 - 1017 <--x 510 - 1017 <--x 511 - 1018 <--x 511 - 1018 <--x 569 - 1019 <--x 511 - 1019 <--x 512 - 1020 <--x 512 - 1020 <--x 569 - 1021 <--x 512 - 1021 <--x 513 - 1022 <--x 513 - 1022 <--x 569 - 1023 <--x 513 - 1023 <--x 514 - 1024 <--x 514 - 1024 <--x 569 - 1025 <--x 514 - 1025 <--x 515 - 1026 <--x 515 - 1026 <--x 569 - 1027 <--x 515 - 1027 <--x 516 - 1028 <--x 516 - 1028 <--x 569 - 1029 <--x 516 - 1029 <--x 517 - 1030 <--x 517 - 1030 <--x 569 - 1031 <--x 517 - 1031 <--x 518 - 1032 <--x 518 - 1032 <--x 569 - 1033 <--x 518 - 1033 <--x 519 - 1034 <--x 519 - 1034 <--x 569 - 1035 <--x 519 - 1035 <--x 520 - 1036 <--x 520 - 1036 <--x 569 - 1037 <--x 520 - 1037 <--x 521 - 1038 <--x 521 - 1038 <--x 569 - 1039 <--x 521 - 1039 <--x 522 - 1040 <--x 522 - 1040 <--x 569 - 1041 <--x 522 - 1041 <--x 523 - 1042 <--x 523 - 1042 <--x 569 - 1043 <--x 523 - 1043 <--x 524 - 1044 <--x 524 - 1044 <--x 569 - 1045 <--x 524 - 1045 <--x 525 - 1046 <--x 525 - 1046 <--x 569 - 1047 <--x 525 - 1047 <--x 526 - 1048 <--x 526 - 1048 <--x 569 - 1049 <--x 526 - 1049 <--x 527 - 1050 <--x 527 - 1050 <--x 569 - 1051 <--x 527 - 1051 <--x 528 - 1052 <--x 528 - 1052 <--x 569 - 1053 <--x 528 - 1053 <--x 529 - 1054 <--x 529 - 1054 <--x 569 - 1055 <--x 529 - 1055 <--x 530 - 1056 <--x 530 - 1056 <--x 569 - 1057 <--x 530 - 1057 <--x 531 - 1058 <--x 531 - 1058 <--x 569 - 1059 <--x 531 - 1059 <--x 532 - 1060 <--x 532 - 1060 <--x 569 - 1061 <--x 532 - 1061 <--x 533 - 1062 <--x 533 - 1062 <--x 569 - 1063 <--x 533 - 1063 <--x 534 - 1064 <--x 534 - 1064 <--x 569 - 1065 <--x 534 - 1065 <--x 535 - 1066 <--x 535 - 1066 <--x 569 - 1067 <--x 535 - 1067 <--x 536 - 1068 <--x 536 - 1068 <--x 569 - 1069 <--x 536 + 1075 <--x 402 + 1100 <--x 402 + 669 <--x 403 + 919 <--x 403 + 1125 <--x 403 + 745 <--x 404 + 882 <--x 404 + 1081 <--x 404 + 776 <--x 405 + 853 <--x 405 + 941 <--x 405 + 617 <--x 406 + 1007 <--x 406 + 1037 <--x 406 + 614 <--x 407 + 885 <--x 407 + 919 <--x 407 + 799 <--x 408 + 1074 <--x 408 + 1127 <--x 408 + 765 <--x 409 + 875 <--x 409 + 1070 <--x 409 + 743 <--x 410 + 918 <--x 410 + 1121 <--x 410 + 704 <--x 411 + 893 <--x 411 + 950 <--x 411 + 660 <--x 412 + 922 <--x 412 + 1025 <--x 412 + 666 <--x 413 + 958 <--x 413 + 1024 <--x 413 + 571 <--x 414 + 944 <--x 414 + 1129 <--x 414 + 849 <--x 415 + 1089 <--x 415 + 1109 <--x 415 + 604 <--x 416 + 852 <--x 416 + 908 <--x 416 + 850 <--x 417 + 999 <--x 417 + 1061 <--x 417 + 572 <--x 418 + 875 <--x 418 + 1006 <--x 418 + 823 <--x 419 + 883 <--x 419 + 920 <--x 419 + 691 <--x 420 + 888 <--x 420 + 1004 <--x 420 + 772 <--x 421 + 866 <--x 421 + 946 <--x 421 + 588 <--x 422 + 873 <--x 422 + 1029 <--x 422 + 827 <--x 423 + 957 <--x 423 + 1097 <--x 423 + 665 <--x 424 + 1042 <--x 424 + 1104 <--x 424 + 587 <--x 425 + 983 <--x 425 + 1042 <--x 425 + 788 <--x 426 + 1005 <--x 426 + 1013 <--x 426 + 607 <--x 427 + 906 <--x 427 + 1112 <--x 427 + 795 <--x 428 + 925 <--x 428 + 1106 <--x 428 + 681 <--x 429 + 900 <--x 429 + 1076 <--x 429 + 706 <--x 430 + 1018 <--x 430 + 1120 <--x 430 + 639 <--x 431 + 1052 <--x 431 + 1073 <--x 431 + 817 <--x 432 + 927 <--x 432 + 975 <--x 432 + 758 <--x 433 + 853 <--x 433 + 1004 <--x 433 + 680 <--x 434 + 966 <--x 434 + 1036 <--x 434 + 626 <--x 435 + 921 <--x 435 + 935 <--x 435 + 570 <--x 436 + 899 <--x 436 + 938 <--x 436 + 720 <--x 437 + 874 <--x 437 + 992 <--x 437 + 649 <--x 438 + 910 <--x 438 + 980 <--x 438 + 687 <--x 439 + 1000 <--x 439 + 1002 <--x 439 + 611 <--x 440 + 1027 <--x 440 + 1095 <--x 440 + 633 <--x 441 + 1035 <--x 441 + 1084 <--x 441 + 628 <--x 442 + 872 <--x 442 + 954 <--x 442 + 822 <--x 443 + 972 <--x 443 + 1095 <--x 443 + 582 <--x 444 + 867 <--x 444 + 890 <--x 444 + 819 <--x 445 + 951 <--x 445 + 964 <--x 445 + 756 <--x 446 + 1000 <--x 446 + 1071 <--x 446 + 734 <--x 447 + 860 <--x 447 + 1068 <--x 447 + 698 <--x 448 + 865 <--x 448 + 1034 <--x 448 + 797 <--x 449 + 1011 <--x 449 + 1022 <--x 449 + 705 <--x 450 + 895 <--x 450 + 1030 <--x 450 + 658 <--x 451 + 1045 <--x 451 + 1069 <--x 451 + 733 <--x 452 + 1099 <--x 452 + 1112 <--x 452 + 652 <--x 453 + 988 <--x 453 + 1049 <--x 453 + 838 <--x 454 + 1061 <--x 454 + 1084 <--x 454 + 810 <--x 455 + 1081 <--x 455 + 1122 <--x 455 + 683 <--x 456 + 1002 <--x 456 + 1074 <--x 456 + 729 <--x 457 + 1023 <--x 457 + 1039 <--x 457 + 826 <--x 458 + 1068 <--x 458 + 1091 <--x 458 + 736 <--x 459 + 880 <--x 459 + 949 <--x 459 + 804 <--x 460 + 876 <--x 460 + 1059 <--x 460 + 627 <--x 461 + 987 <--x 461 + 1094 <--x 461 + 791 <--x 462 + 873 <--x 462 + 1111 <--x 462 + 676 <--x 463 + 936 <--x 463 + 1109 <--x 463 + 809 <--x 464 + 972 <--x 464 + 1051 <--x 464 + 731 <--x 465 + 956 <--x 465 + 1027 <--x 465 + 714 <--x 466 + 895 <--x 466 + 1019 <--x 466 + 651 <--x 467 + 1047 <--x 467 + 1051 <--x 467 + 764 <--x 468 + 891 <--x 468 + 1117 <--x 468 + 655 <--x 469 + 987 <--x 469 + 991 <--x 469 + 622 <--x 470 + 885 <--x 470 + 916 <--x 470 + 696 <--x 471 + 907 <--x 471 + 1038 <--x 471 + 721 <--x 472 + 931 <--x 472 + 976 <--x 472 + 581 <--x 473 + 1020 <--x 473 + 1108 <--x 473 + 668 <--x 474 + 884 <--x 474 + 1100 <--x 474 + 803 <--x 475 + 923 <--x 475 + 1059 <--x 475 + 834 <--x 476 + 931 <--x 476 + 1121 <--x 476 + 653 <--x 477 + 953 <--x 477 + 1115 <--x 477 + 657 <--x 478 + 855 <--x 478 + 1060 <--x 478 + 832 <--x 479 + 966 <--x 479 + 1009 <--x 479 + 589 <--x 480 + 1063 <--x 480 + 1083 <--x 480 + 701 <--x 481 + 864 <--x 481 + 878 <--x 481 + 798 <--x 482 + 876 <--x 482 + 906 <--x 482 + 700 <--x 483 + 857 <--x 483 + 893 <--x 483 + 603 <--x 484 + 877 <--x 484 + 1057 <--x 484 + 835 <--x 485 + 980 <--x 485 + 1103 <--x 485 + 737 <--x 486 + 1075 <--x 486 + 1076 <--x 486 + 777 <--x 487 + 981 <--x 487 + 1037 <--x 487 + 796 <--x 488 + 985 <--x 488 + 1017 <--x 488 + 610 <--x 489 + 948 <--x 489 + 1026 <--x 489 + 837 <--x 490 + 905 <--x 490 + 978 <--x 490 + 767 <--x 491 + 889 <--x 491 + 1096 <--x 491 + 824 <--x 492 + 867 <--x 492 + 911 <--x 492 + 771 <--x 493 + 961 <--x 493 + 989 <--x 493 + 664 <--x 494 + 926 <--x 494 + 1029 <--x 494 + 780 <--x 495 + 994 <--x 495 + 1105 <--x 495 + 781 <--x 496 + 939 <--x 496 + 967 <--x 496 + 815 <--x 497 + 857 <--x 497 + 1102 <--x 497 + 820 <--x 498 + 888 <--x 498 + 899 <--x 498 + 618 <--x 499 + 923 <--x 499 + 1073 <--x 499 + 697 <--x 500 + 915 <--x 500 + 1071 <--x 500 + 847 <--x 501 + 995 <--x 501 + 996 <--x 501 + 814 <--x 502 + 1127 <--x 502 + 846 <--x 503 + 952 <--x 503 + 1087 <--x 503 + 648 <--x 504 + 874 <--x 504 + 1041 <--x 504 + 663 <--x 505 + 891 <--x 505 + 1015 <--x 505 + 760 <--x 506 + 851 <--x 506 + 1003 <--x 506 + 577 <--x 507 + 864 <--x 507 + 889 <--x 507 + 808 <--x 508 + 985 <--x 508 + 1101 <--x 508 + 615 <--x 509 + 901 <--x 509 + 1001 <--x 509 + 625 <--x 510 + 1040 <--x 510 + 1078 <--x 510 + 605 <--x 511 + 886 <--x 511 + 982 <--x 511 + 750 <--x 512 + 861 <--x 512 + 956 <--x 512 + 677 <--x 513 + 904 <--x 513 + 946 <--x 513 + 759 <--x 514 + 869 <--x 514 + 1022 <--x 514 + 591 <--x 515 + 1021 <--x 515 + 1064 <--x 515 + 674 <--x 516 + 865 <--x 516 + 971 <--x 516 + 645 <--x 517 + 859 <--x 517 + 1053 <--x 517 + 831 <--x 518 + 855 <--x 518 + 986 <--x 518 + 598 <--x 519 + 912 <--x 519 + 1067 <--x 519 + 612 <--x 520 + 1012 <--x 520 + 1031 <--x 520 + 722 <--x 521 + 881 <--x 521 + 995 <--x 521 + 686 <--x 522 + 960 <--x 522 + 1102 <--x 522 + 757 <--x 523 + 947 <--x 523 + 1104 <--x 523 + 848 <--x 524 + 1007 <--x 524 + 1097 <--x 524 + 813 <--x 525 + 962 <--x 525 + 1025 <--x 525 + 773 <--x 526 + 945 <--x 526 + 1043 <--x 526 + 717 <--x 527 + 1001 <--x 527 + 1005 <--x 527 + 673 <--x 528 + 892 <--x 528 + 1056 <--x 528 + 576 <--x 529 + 925 <--x 529 + 1085 <--x 529 + 606 <--x 530 + 1058 <--x 530 + 1125 <--x 530 + 844 <--x 531 + 927 <--x 531 + 1062 <--x 531 + 575 <--x 532 + 929 <--x 532 + 958 <--x 532 + 640 <--x 533 + 887 <--x 533 + 1006 <--x 533 + 787 <--x 534 + 1047 <--x 534 + 1130 <--x 534 + 619 <--x 535 + 977 <--x 535 + 991 <--x 535 + 718 <--x 536 + 1017 <--x 536 + 1096 <--x 536 + 583 <--x 537 + 884 <--x 537 1069 <--x 537 - 1070 <--x 537 - 1070 <--x 569 - 1071 <--x 537 - 1071 <--x 538 - 1072 <--x 538 - 1072 <--x 569 - 1073 <--x 538 - 1073 <--x 539 - 1074 <--x 539 - 1074 <--x 569 - 1075 <--x 539 - 1075 <--x 540 - 1076 <--x 540 - 1076 <--x 569 + 667 <--x 538 + 852 <--x 538 + 982 <--x 538 + 719 <--x 539 + 1049 <--x 539 + 1050 <--x 539 + 829 <--x 540 + 870 <--x 540 1077 <--x 540 - 1077 <--x 541 - 1078 <--x 541 - 1078 <--x 569 - 1079 <--x 541 - 1079 <--x 542 - 1080 <--x 542 - 1080 <--x 569 - 1081 <--x 542 - 1081 <--x 543 - 1082 <--x 543 - 1082 <--x 569 - 1083 <--x 543 - 1083 <--x 544 - 1084 <--x 544 - 1084 <--x 569 - 1085 <--x 544 - 1085 <--x 545 - 1086 <--x 545 - 1086 <--x 569 - 1087 <--x 545 - 1087 <--x 546 - 1088 <--x 546 - 1088 <--x 569 - 1089 <--x 546 - 1089 <--x 547 - 1090 <--x 547 - 1090 <--x 569 - 1091 <--x 547 - 1091 <--x 548 - 1092 <--x 548 - 1092 <--x 569 - 1093 <--x 548 - 1093 <--x 549 - 1094 <--x 549 - 1094 <--x 569 - 1095 <--x 549 - 1095 <--x 550 - 1096 <--x 550 - 1096 <--x 569 - 1097 <--x 550 - 1097 <--x 551 - 1098 <--x 551 - 1098 <--x 569 - 1099 <--x 551 - 1099 <--x 552 - 1100 <--x 552 - 1100 <--x 569 - 1101 <--x 552 - 1101 <--x 553 - 1102 <--x 553 - 1102 <--x 569 - 1103 <--x 553 - 1103 <--x 554 - 1104 <--x 554 - 1104 <--x 569 - 1105 <--x 554 - 1105 <--x 555 - 1106 <--x 555 - 1106 <--x 569 - 1107 <--x 555 - 1107 <--x 556 - 1108 <--x 556 - 1108 <--x 569 - 1109 <--x 556 - 1109 <--x 557 + 830 <--x 541 + 1032 <--x 541 + 1054 <--x 541 + 688 <--x 542 + 928 <--x 542 + 1060 <--x 542 + 636 <--x 543 + 894 <--x 543 + 1098 <--x 543 + 836 <--x 544 + 976 <--x 544 + 1066 <--x 544 + 597 <--x 545 + 993 <--x 545 + 1122 <--x 545 + 682 <--x 546 + 939 <--x 546 + 1070 <--x 546 + 794 <--x 547 + 863 <--x 547 + 932 <--x 547 + 742 <--x 548 + 872 <--x 548 + 983 <--x 548 + 828 <--x 549 + 970 <--x 549 + 1033 <--x 549 + 630 <--x 550 + 912 <--x 550 + 913 <--x 550 + 749 <--x 551 + 1040 <--x 551 + 1089 <--x 551 + 623 <--x 552 + 1023 <--x 552 + 1113 <--x 552 + 690 <--x 553 + 945 <--x 553 + 1053 <--x 553 + 738 <--x 554 + 978 <--x 554 + 986 <--x 554 + 692 <--x 555 + 879 <--x 555 + 1082 <--x 555 + 727 <--x 556 + 1119 <--x 556 + 1128 <--x 556 + 753 <--x 557 + 1077 <--x 557 1110 <--x 557 - 1110 <--x 569 - 1111 <--x 557 - 1111 <--x 558 - 1112 <--x 558 - 1112 <--x 569 - 1113 <--x 558 - 1113 <--x 559 - 1114 <--x 559 - 1114 <--x 569 - 1115 <--x 559 - 1115 <--x 560 - 1116 <--x 560 - 1116 <--x 569 - 1117 <--x 560 - 1117 <--x 561 - 1118 <--x 561 - 1118 <--x 569 - 1119 <--x 561 - 1119 <--x 562 - 1120 <--x 562 - 1120 <--x 569 - 1121 <--x 562 - 1121 <--x 563 - 1122 <--x 563 - 1122 <--x 569 - 1123 <--x 563 - 1123 <--x 564 - 1124 <--x 564 - 1124 <--x 569 - 1125 <--x 564 - 1125 <--x 565 - 1126 <--x 565 - 1126 <--x 569 - 1127 <--x 565 - 1127 <--x 566 - 1128 <--x 566 - 1128 <--x 569 - 1129 <--x 566 - 1129 <--x 567 - 1130 <--x 567 - 1130 <--x 569 + 744 <--x 558 + 953 <--x 558 + 989 <--x 558 + 602 <--x 559 + 1014 <--x 559 + 1067 <--x 559 + 752 <--x 560 + 937 <--x 560 + 1062 <--x 560 + 746 <--x 561 + 869 <--x 561 + 918 <--x 561 + 724 <--x 562 + 863 <--x 562 + 879 <--x 562 + 621 <--x 563 + 868 <--x 563 + 900 <--x 563 + 647 <--x 564 + 960 <--x 564 + 1016 <--x 564 + 590 <--x 565 + 898 <--x 565 + 1103 <--x 565 + 596 <--x 566 + 942 <--x 566 + 962 <--x 566 + 792 <--x 567 + 973 <--x 567 + 1072 <--x 567 + 570 <--x 569 + 571 <--x 569 + 572 <--x 569 + 573 <--x 569 + 574 <--x 569 + 575 <--x 569 + 576 <--x 569 + 577 <--x 569 + 578 <--x 569 + 579 <--x 569 + 580 <--x 569 + 581 <--x 569 + 582 <--x 569 + 583 <--x 569 + 584 <--x 569 + 585 <--x 569 + 586 <--x 569 + 587 <--x 569 + 588 <--x 569 + 589 <--x 569 + 590 <--x 569 + 591 <--x 569 + 592 <--x 569 + 593 <--x 569 + 594 <--x 569 + 595 <--x 569 + 596 <--x 569 + 597 <--x 569 + 598 <--x 569 + 599 <--x 569 + 600 <--x 569 + 601 <--x 569 + 602 <--x 569 + 603 <--x 569 + 604 <--x 569 + 605 <--x 569 + 606 <--x 569 + 607 <--x 569 + 608 <--x 569 + 609 <--x 569 + 610 <--x 569 + 611 <--x 569 + 612 <--x 569 + 613 <--x 569 + 614 <--x 569 + 615 <--x 569 + 616 <--x 569 + 617 <--x 569 + 618 <--x 569 + 619 <--x 569 + 620 <--x 569 + 621 <--x 569 + 622 <--x 569 + 623 <--x 569 + 624 <--x 569 + 625 <--x 569 + 626 <--x 569 + 627 <--x 569 + 628 <--x 569 + 629 <--x 569 + 630 <--x 569 + 631 <--x 569 + 632 <--x 569 + 633 <--x 569 + 634 <--x 569 + 635 <--x 569 + 636 <--x 569 + 637 <--x 569 + 638 <--x 569 + 639 <--x 569 + 640 <--x 569 + 641 <--x 569 + 642 <--x 569 + 643 <--x 569 + 644 <--x 569 + 645 <--x 569 + 646 <--x 569 + 647 <--x 569 + 648 <--x 569 + 649 <--x 569 + 650 <--x 569 + 651 <--x 569 + 652 <--x 569 + 653 <--x 569 + 654 <--x 569 + 655 <--x 569 + 656 <--x 569 + 657 <--x 569 + 658 <--x 569 + 659 <--x 569 + 660 <--x 569 + 661 <--x 569 + 662 <--x 569 + 663 <--x 569 + 664 <--x 569 + 665 <--x 569 + 666 <--x 569 + 667 <--x 569 + 668 <--x 569 + 669 <--x 569 + 670 <--x 569 + 671 <--x 569 + 672 <--x 569 + 673 <--x 569 + 674 <--x 569 + 675 <--x 569 + 676 <--x 569 + 677 <--x 569 + 678 <--x 569 + 679 <--x 569 + 680 <--x 569 + 681 <--x 569 + 682 <--x 569 + 683 <--x 569 + 684 <--x 569 + 685 <--x 569 + 686 <--x 569 + 687 <--x 569 + 688 <--x 569 + 689 <--x 569 + 690 <--x 569 + 691 <--x 569 + 692 <--x 569 + 693 <--x 569 + 694 <--x 569 + 695 <--x 569 + 696 <--x 569 + 697 <--x 569 + 698 <--x 569 + 699 <--x 569 + 700 <--x 569 + 701 <--x 569 + 702 <--x 569 + 703 <--x 569 + 704 <--x 569 + 705 <--x 569 + 706 <--x 569 + 707 <--x 569 + 708 <--x 569 + 709 <--x 569 + 710 <--x 569 + 711 <--x 569 + 712 <--x 569 + 713 <--x 569 + 714 <--x 569 + 715 <--x 569 + 716 <--x 569 + 717 <--x 569 + 718 <--x 569 + 719 <--x 569 + 720 <--x 569 + 721 <--x 569 + 722 <--x 569 + 723 <--x 569 + 724 <--x 569 + 725 <--x 569 + 726 <--x 569 + 727 <--x 569 + 728 <--x 569 + 729 <--x 569 + 730 <--x 569 + 731 <--x 569 + 732 <--x 569 + 733 <--x 569 + 734 <--x 569 + 735 <--x 569 + 736 <--x 569 + 737 <--x 569 + 738 <--x 569 + 739 <--x 569 + 740 <--x 569 + 741 <--x 569 + 742 <--x 569 + 743 <--x 569 + 744 <--x 569 + 745 <--x 569 + 746 <--x 569 + 747 <--x 569 + 748 <--x 569 + 749 <--x 569 + 750 <--x 569 + 751 <--x 569 + 752 <--x 569 + 753 <--x 569 + 754 <--x 569 + 755 <--x 569 + 756 <--x 569 + 757 <--x 569 + 758 <--x 569 + 759 <--x 569 + 760 <--x 569 + 761 <--x 569 + 762 <--x 569 + 763 <--x 569 + 764 <--x 569 + 765 <--x 569 + 766 <--x 569 + 767 <--x 569 + 768 <--x 569 + 769 <--x 569 + 770 <--x 569 + 771 <--x 569 + 772 <--x 569 + 773 <--x 569 + 774 <--x 569 + 775 <--x 569 + 776 <--x 569 + 777 <--x 569 + 778 <--x 569 + 779 <--x 569 + 780 <--x 569 + 781 <--x 569 + 782 <--x 569 + 783 <--x 569 + 784 <--x 569 + 785 <--x 569 + 786 <--x 569 + 787 <--x 569 + 788 <--x 569 + 789 <--x 569 + 790 <--x 569 + 791 <--x 569 + 792 <--x 569 + 793 <--x 569 + 794 <--x 569 + 795 <--x 569 + 796 <--x 569 + 797 <--x 569 + 798 <--x 569 + 799 <--x 569 + 800 <--x 569 + 801 <--x 569 + 802 <--x 569 + 803 <--x 569 + 804 <--x 569 + 805 <--x 569 + 806 <--x 569 + 807 <--x 569 + 808 <--x 569 + 809 <--x 569 + 810 <--x 569 + 811 <--x 569 + 812 <--x 569 + 813 <--x 569 + 814 <--x 569 + 815 <--x 569 + 816 <--x 569 + 817 <--x 569 + 818 <--x 569 + 819 <--x 569 + 820 <--x 569 + 821 <--x 569 + 822 <--x 569 + 823 <--x 569 + 824 <--x 569 + 825 <--x 569 + 826 <--x 569 + 827 <--x 569 + 828 <--x 569 + 829 <--x 569 + 830 <--x 569 + 831 <--x 569 + 832 <--x 569 + 833 <--x 569 + 834 <--x 569 + 835 <--x 569 + 836 <--x 569 + 837 <--x 569 + 838 <--x 569 + 839 <--x 569 + 840 <--x 569 + 841 <--x 569 + 842 <--x 569 + 843 <--x 569 + 844 <--x 569 + 845 <--x 569 + 846 <--x 569 + 847 <--x 569 + 848 <--x 569 + 849 <--x 569 + 850 <--x 569 ``` diff --git a/rust/kcl-lib/tests/kw_fn/ops.snap b/rust/kcl-lib/tests/kw_fn/ops.snap index 32b1767c1..4635f5ce2 100644 --- a/rust/kcl-lib/tests/kw_fn/ops.snap +++ b/rust/kcl-lib/tests/kw_fn/ops.snap @@ -14,9 +14,6 @@ description: Operations executed kw_fn.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -60,6 +57,9 @@ description: Operations executed kw_fn.kcl }, "sourceRange": [] }, + { + "type": "GroupEnd" + }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/kw_fn_with_defaults/ops.snap b/rust/kcl-lib/tests/kw_fn_with_defaults/ops.snap index c76c4e90d..2443839a3 100644 --- a/rust/kcl-lib/tests/kw_fn_with_defaults/ops.snap +++ b/rust/kcl-lib/tests/kw_fn_with_defaults/ops.snap @@ -14,9 +14,6 @@ description: Operations executed kw_fn_with_defaults.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -60,6 +57,9 @@ description: Operations executed kw_fn_with_defaults.kcl }, "sourceRange": [] }, + { + "type": "GroupEnd" + }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/linear_pattern3d_a_pattern/artifact_commands.snap b/rust/kcl-lib/tests/linear_pattern3d_a_pattern/artifact_commands.snap index bfde998e0..0e7bc4e62 100644 --- a/rust/kcl-lib/tests/linear_pattern3d_a_pattern/artifact_commands.snap +++ b/rust/kcl-lib/tests/linear_pattern3d_a_pattern/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands linear_pattern3d_a_pattern.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands linear_pattern3d_a_pattern.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands linear_pattern3d_a_pattern.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands linear_pattern3d_a_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands linear_pattern3d_a_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands linear_pattern3d_a_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands linear_pattern3d_a_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +375,6 @@ description: Artifact commands linear_pattern3d_a_pattern.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,30 +389,12 @@ description: Artifact commands linear_pattern3d_a_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], diff --git a/rust/kcl-lib/tests/linear_pattern3d_a_pattern/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/linear_pattern3d_a_pattern/artifact_graph_flowchart.snap.md index 0811c849c..291e1c8d6 100644 --- a/rust/kcl-lib/tests/linear_pattern3d_a_pattern/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/linear_pattern3d_a_pattern/artifact_graph_flowchart.snap.md @@ -17,36 +17,36 @@ flowchart LR 13["Cap Start"] 14["Cap End"] 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] + 16["SweepEdge Opposite"] 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] + 18["SweepEdge Opposite"] + 19["SweepEdge Adjacent"] 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] + 21["SweepEdge Adjacent"] 22["SweepEdge Adjacent"] 1 --- 2 2 --- 3 2 --- 4 2 --- 5 2 --- 6 - 2 ---- 8 2 --- 7 + 2 ---- 8 3 --- 12 - 3 --- 21 - 3 --- 22 3 x--> 13 - 4 --- 11 - 4 --- 19 - 4 --- 20 + 3 --- 17 + 3 --- 20 + 4 --- 10 4 x--> 13 - 5 --- 10 - 5 --- 17 - 5 --- 18 + 4 --- 18 + 4 --- 21 + 5 --- 9 5 x--> 13 - 6 --- 9 - 6 --- 15 - 6 --- 16 + 5 --- 15 + 5 --- 22 + 6 --- 11 6 x--> 13 + 6 --- 16 + 6 --- 19 8 --- 9 8 --- 10 8 --- 11 @@ -62,19 +62,19 @@ flowchart LR 8 --- 21 8 --- 22 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 12 - 17 <--x 10 - 17 <--x 14 - 18 <--x 9 + 21 <--x 9 + 22 <--x 9 18 <--x 10 - 19 <--x 11 - 19 <--x 14 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 14 + 21 <--x 10 + 16 <--x 11 + 19 <--x 11 22 <--x 11 - 22 <--x 12 + 17 <--x 12 + 19 <--x 12 + 20 <--x 12 + 15 <--x 14 + 16 <--x 14 + 17 <--x 14 + 18 <--x 14 ``` diff --git a/rust/kcl-lib/tests/loop_tag/artifact_commands.snap b/rust/kcl-lib/tests/loop_tag/artifact_commands.snap index dad8b773a..7f4ad01e9 100644 --- a/rust/kcl-lib/tests/loop_tag/artifact_commands.snap +++ b/rust/kcl-lib/tests/loop_tag/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands loop_tag.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands loop_tag.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -965,6 +965,14 @@ description: Artifact commands loop_tag.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -976,8 +984,1350 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -993,30 +2343,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1031,39 +2363,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1078,39 +2383,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1125,39 +2403,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1172,39 +2423,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1219,39 +2443,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1266,39 +2463,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1313,39 +2483,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1360,39 +2503,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1407,39 +2523,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1454,39 +2543,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1501,39 +2563,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1548,39 +2583,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1595,39 +2603,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1642,39 +2623,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1689,39 +2643,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1736,39 +2663,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1783,39 +2683,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1830,39 +2703,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1877,39 +2723,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1924,39 +2743,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1971,39 +2763,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2018,39 +2783,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2065,39 +2803,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2112,39 +2823,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2159,18 +2843,10 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -2187,39 +2863,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2234,39 +2883,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2281,39 +2903,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2328,39 +2923,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2375,39 +2943,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2422,39 +2963,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2469,39 +2983,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2516,39 +3003,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2563,39 +3023,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2610,39 +3043,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2657,39 +3063,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2704,39 +3083,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2751,39 +3103,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2798,39 +3123,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2845,39 +3143,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2892,39 +3163,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2939,39 +3183,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2986,39 +3203,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3033,39 +3223,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3080,39 +3243,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3127,39 +3263,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3174,39 +3283,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3221,39 +3303,12 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3264,43 +3319,6 @@ description: Artifact commands loop_tag.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3315,28 +3333,10 @@ description: Artifact commands loop_tag.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/loop_tag/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/loop_tag/artifact_graph_flowchart.snap.md index 58541500a..b5338026d 100644 --- a/rust/kcl-lib/tests/loop_tag/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/loop_tag/artifact_graph_flowchart.snap.md @@ -109,104 +109,104 @@ flowchart LR 105["Cap Start"] 106["Cap End"] 107["SweepEdge Opposite"] - 108["SweepEdge Adjacent"] + 108["SweepEdge Opposite"] 109["SweepEdge Opposite"] - 110["SweepEdge Adjacent"] + 110["SweepEdge Opposite"] 111["SweepEdge Opposite"] - 112["SweepEdge Adjacent"] + 112["SweepEdge Opposite"] 113["SweepEdge Opposite"] - 114["SweepEdge Adjacent"] + 114["SweepEdge Opposite"] 115["SweepEdge Opposite"] - 116["SweepEdge Adjacent"] + 116["SweepEdge Opposite"] 117["SweepEdge Opposite"] - 118["SweepEdge Adjacent"] + 118["SweepEdge Opposite"] 119["SweepEdge Opposite"] - 120["SweepEdge Adjacent"] + 120["SweepEdge Opposite"] 121["SweepEdge Opposite"] - 122["SweepEdge Adjacent"] + 122["SweepEdge Opposite"] 123["SweepEdge Opposite"] - 124["SweepEdge Adjacent"] + 124["SweepEdge Opposite"] 125["SweepEdge Opposite"] - 126["SweepEdge Adjacent"] + 126["SweepEdge Opposite"] 127["SweepEdge Opposite"] - 128["SweepEdge Adjacent"] + 128["SweepEdge Opposite"] 129["SweepEdge Opposite"] - 130["SweepEdge Adjacent"] + 130["SweepEdge Opposite"] 131["SweepEdge Opposite"] - 132["SweepEdge Adjacent"] + 132["SweepEdge Opposite"] 133["SweepEdge Opposite"] - 134["SweepEdge Adjacent"] + 134["SweepEdge Opposite"] 135["SweepEdge Opposite"] - 136["SweepEdge Adjacent"] + 136["SweepEdge Opposite"] 137["SweepEdge Opposite"] - 138["SweepEdge Adjacent"] + 138["SweepEdge Opposite"] 139["SweepEdge Opposite"] - 140["SweepEdge Adjacent"] + 140["SweepEdge Opposite"] 141["SweepEdge Opposite"] - 142["SweepEdge Adjacent"] + 142["SweepEdge Opposite"] 143["SweepEdge Opposite"] - 144["SweepEdge Adjacent"] + 144["SweepEdge Opposite"] 145["SweepEdge Opposite"] - 146["SweepEdge Adjacent"] + 146["SweepEdge Opposite"] 147["SweepEdge Opposite"] - 148["SweepEdge Adjacent"] + 148["SweepEdge Opposite"] 149["SweepEdge Opposite"] - 150["SweepEdge Adjacent"] + 150["SweepEdge Opposite"] 151["SweepEdge Opposite"] - 152["SweepEdge Adjacent"] + 152["SweepEdge Opposite"] 153["SweepEdge Opposite"] - 154["SweepEdge Adjacent"] + 154["SweepEdge Opposite"] 155["SweepEdge Opposite"] - 156["SweepEdge Adjacent"] - 157["SweepEdge Opposite"] + 156["SweepEdge Opposite"] + 157["SweepEdge Adjacent"] 158["SweepEdge Adjacent"] - 159["SweepEdge Opposite"] + 159["SweepEdge Adjacent"] 160["SweepEdge Adjacent"] - 161["SweepEdge Opposite"] + 161["SweepEdge Adjacent"] 162["SweepEdge Adjacent"] - 163["SweepEdge Opposite"] + 163["SweepEdge Adjacent"] 164["SweepEdge Adjacent"] - 165["SweepEdge Opposite"] + 165["SweepEdge Adjacent"] 166["SweepEdge Adjacent"] - 167["SweepEdge Opposite"] + 167["SweepEdge Adjacent"] 168["SweepEdge Adjacent"] - 169["SweepEdge Opposite"] + 169["SweepEdge Adjacent"] 170["SweepEdge Adjacent"] - 171["SweepEdge Opposite"] + 171["SweepEdge Adjacent"] 172["SweepEdge Adjacent"] - 173["SweepEdge Opposite"] + 173["SweepEdge Adjacent"] 174["SweepEdge Adjacent"] - 175["SweepEdge Opposite"] + 175["SweepEdge Adjacent"] 176["SweepEdge Adjacent"] - 177["SweepEdge Opposite"] + 177["SweepEdge Adjacent"] 178["SweepEdge Adjacent"] - 179["SweepEdge Opposite"] + 179["SweepEdge Adjacent"] 180["SweepEdge Adjacent"] - 181["SweepEdge Opposite"] + 181["SweepEdge Adjacent"] 182["SweepEdge Adjacent"] - 183["SweepEdge Opposite"] + 183["SweepEdge Adjacent"] 184["SweepEdge Adjacent"] - 185["SweepEdge Opposite"] + 185["SweepEdge Adjacent"] 186["SweepEdge Adjacent"] - 187["SweepEdge Opposite"] + 187["SweepEdge Adjacent"] 188["SweepEdge Adjacent"] - 189["SweepEdge Opposite"] + 189["SweepEdge Adjacent"] 190["SweepEdge Adjacent"] - 191["SweepEdge Opposite"] + 191["SweepEdge Adjacent"] 192["SweepEdge Adjacent"] - 193["SweepEdge Opposite"] + 193["SweepEdge Adjacent"] 194["SweepEdge Adjacent"] - 195["SweepEdge Opposite"] + 195["SweepEdge Adjacent"] 196["SweepEdge Adjacent"] - 197["SweepEdge Opposite"] + 197["SweepEdge Adjacent"] 198["SweepEdge Adjacent"] - 199["SweepEdge Opposite"] + 199["SweepEdge Adjacent"] 200["SweepEdge Adjacent"] - 201["SweepEdge Opposite"] + 201["SweepEdge Adjacent"] 202["SweepEdge Adjacent"] - 203["SweepEdge Opposite"] + 203["SweepEdge Adjacent"] 204["SweepEdge Adjacent"] - 205["SweepEdge Opposite"] + 205["SweepEdge Adjacent"] 206["SweepEdge Adjacent"] 1 --- 2 2 --- 3 @@ -259,208 +259,208 @@ flowchart LR 2 --- 50 2 --- 51 2 --- 52 - 2 ---- 54 2 --- 53 + 2 ---- 54 3 --- 55 - 3 --- 107 - 3 --- 108 3 x--> 105 + 3 --- 152 + 3 --- 203 4 --- 56 - 4 --- 109 - 4 --- 110 4 x--> 105 + 4 --- 115 + 4 --- 173 5 --- 57 - 5 --- 111 - 5 --- 112 5 x--> 105 + 5 --- 149 + 5 --- 200 6 --- 58 - 6 --- 113 - 6 --- 114 6 x--> 105 + 6 --- 135 + 6 --- 168 7 --- 59 - 7 --- 115 - 7 --- 116 7 x--> 105 + 7 --- 145 + 7 --- 177 8 --- 60 - 8 --- 117 - 8 --- 118 8 x--> 105 + 8 --- 120 + 8 --- 165 9 --- 61 - 9 --- 119 - 9 --- 120 9 x--> 105 + 9 --- 110 + 9 --- 205 10 --- 62 - 10 --- 121 - 10 --- 122 10 x--> 105 + 10 --- 125 + 10 --- 175 11 --- 63 - 11 --- 123 - 11 --- 124 11 x--> 105 + 11 --- 132 + 11 --- 162 12 --- 64 - 12 --- 125 - 12 --- 126 12 x--> 105 + 12 --- 108 + 12 --- 198 13 --- 65 - 13 --- 127 - 13 --- 128 13 x--> 105 + 13 --- 116 + 13 --- 164 14 --- 66 - 14 --- 129 - 14 --- 130 14 x--> 105 + 14 --- 128 + 14 --- 158 15 --- 67 - 15 --- 131 - 15 --- 132 15 x--> 105 + 15 --- 109 + 15 --- 167 16 --- 68 - 16 --- 133 - 16 --- 134 16 x--> 105 + 16 --- 139 + 16 --- 179 17 --- 69 - 17 --- 135 - 17 --- 136 17 x--> 105 + 17 --- 153 + 17 --- 206 18 --- 70 - 18 --- 137 - 18 --- 138 18 x--> 105 + 18 --- 156 + 18 --- 160 19 --- 71 - 19 --- 139 - 19 --- 140 19 x--> 105 + 19 --- 155 + 19 --- 191 20 --- 72 - 20 --- 141 - 20 --- 142 20 x--> 105 + 20 --- 138 + 20 --- 192 21 --- 73 - 21 --- 143 - 21 --- 144 21 x--> 105 + 21 --- 130 + 21 --- 163 22 --- 74 - 22 --- 145 - 22 --- 146 22 x--> 105 + 22 --- 134 + 22 --- 180 23 --- 75 - 23 --- 147 - 23 --- 148 23 x--> 105 + 23 --- 119 + 23 --- 159 24 --- 76 - 24 --- 149 - 24 --- 150 24 x--> 105 + 24 --- 113 + 24 --- 185 25 --- 77 - 25 --- 151 - 25 --- 152 25 x--> 105 + 25 --- 133 + 25 --- 195 26 --- 78 - 26 --- 153 - 26 --- 154 26 x--> 105 + 26 --- 129 + 26 --- 166 27 --- 79 - 27 --- 155 - 27 --- 156 27 x--> 105 + 27 --- 154 + 27 --- 193 28 --- 80 - 28 --- 157 - 28 --- 158 28 x--> 105 + 28 --- 111 + 28 --- 194 29 --- 81 - 29 --- 159 - 29 --- 160 29 x--> 105 + 29 --- 118 + 29 --- 190 30 --- 82 - 30 --- 161 - 30 --- 162 30 x--> 105 + 30 --- 117 + 30 --- 197 31 --- 83 - 31 --- 163 - 31 --- 164 31 x--> 105 + 31 --- 151 + 31 --- 176 32 --- 84 - 32 --- 165 - 32 --- 166 32 x--> 105 - 33 --- 85 - 33 --- 167 - 33 --- 168 + 32 --- 121 + 32 --- 202 + 33 --- 86 33 x--> 105 - 34 --- 86 - 34 --- 169 - 34 --- 170 + 33 --- 131 + 33 --- 187 + 34 --- 87 34 x--> 105 - 35 --- 87 - 35 --- 171 - 35 --- 172 + 34 --- 142 + 34 --- 157 + 35 --- 88 35 x--> 105 - 36 --- 88 - 36 --- 173 - 36 --- 174 + 35 --- 136 + 35 --- 174 + 36 --- 89 36 x--> 105 - 37 --- 89 - 37 --- 175 - 37 --- 176 + 36 --- 124 + 36 --- 184 + 37 --- 90 37 x--> 105 - 38 --- 90 - 38 --- 177 - 38 --- 178 + 37 --- 146 + 37 --- 196 + 38 --- 91 38 x--> 105 - 39 --- 91 - 39 --- 179 - 39 --- 180 + 38 --- 148 + 38 --- 204 + 39 --- 92 39 x--> 105 - 40 --- 92 - 40 --- 181 - 40 --- 182 + 39 --- 140 + 39 --- 182 + 40 --- 93 40 x--> 105 - 41 --- 93 - 41 --- 183 - 41 --- 184 + 40 --- 143 + 40 --- 188 + 41 --- 94 41 x--> 105 - 42 --- 94 - 42 --- 185 - 42 --- 186 + 41 --- 141 + 41 --- 183 + 42 --- 95 42 x--> 105 - 43 --- 95 - 43 --- 187 - 43 --- 188 + 42 --- 107 + 42 --- 181 + 43 --- 96 43 x--> 105 - 44 --- 96 - 44 --- 189 - 44 --- 190 + 43 --- 123 + 43 --- 170 + 44 --- 97 44 x--> 105 - 45 --- 97 - 45 --- 191 - 45 --- 192 + 44 --- 122 + 44 --- 186 + 45 --- 98 45 x--> 105 - 46 --- 98 - 46 --- 193 - 46 --- 194 + 45 --- 126 + 45 --- 201 + 46 --- 99 46 x--> 105 - 47 --- 99 - 47 --- 195 - 47 --- 196 + 46 --- 137 + 46 --- 171 + 47 --- 100 47 x--> 105 - 48 --- 100 - 48 --- 197 - 48 --- 198 + 47 --- 144 + 47 --- 172 + 48 --- 101 48 x--> 105 - 49 --- 101 - 49 --- 199 - 49 --- 200 + 48 --- 150 + 48 --- 199 + 49 --- 102 49 x--> 105 - 50 --- 102 - 50 --- 201 - 50 --- 202 + 49 --- 127 + 49 --- 178 + 50 --- 103 50 x--> 105 - 51 --- 103 - 51 --- 203 - 51 --- 204 + 50 --- 112 + 50 --- 161 + 51 --- 104 51 x--> 105 - 52 --- 104 - 52 --- 205 - 52 --- 206 + 51 --- 147 + 51 --- 189 + 52 --- 85 52 x--> 105 + 52 --- 114 + 52 --- 169 54 --- 55 54 --- 56 54 --- 57 @@ -613,204 +613,204 @@ flowchart LR 54 --- 204 54 --- 205 54 --- 206 - 107 <--x 55 - 107 <--x 106 - 108 <--x 55 - 108 <--x 56 - 109 <--x 56 - 109 <--x 106 - 110 <--x 56 - 110 <--x 57 - 111 <--x 57 - 111 <--x 106 - 112 <--x 57 - 112 <--x 58 - 113 <--x 58 - 113 <--x 106 - 114 <--x 58 - 114 <--x 59 - 115 <--x 59 - 115 <--x 106 - 116 <--x 59 - 116 <--x 60 - 117 <--x 60 - 117 <--x 106 - 118 <--x 60 - 118 <--x 61 - 119 <--x 61 - 119 <--x 106 - 120 <--x 61 - 120 <--x 62 - 121 <--x 62 - 121 <--x 106 - 122 <--x 62 - 122 <--x 63 - 123 <--x 63 - 123 <--x 106 - 124 <--x 63 - 124 <--x 64 - 125 <--x 64 - 125 <--x 106 - 126 <--x 64 - 126 <--x 65 - 127 <--x 65 - 127 <--x 106 - 128 <--x 65 - 128 <--x 66 - 129 <--x 66 - 129 <--x 106 - 130 <--x 66 - 130 <--x 67 - 131 <--x 67 - 131 <--x 106 - 132 <--x 67 - 132 <--x 68 - 133 <--x 68 - 133 <--x 106 - 134 <--x 68 - 134 <--x 69 - 135 <--x 69 - 135 <--x 106 - 136 <--x 69 - 136 <--x 70 - 137 <--x 70 - 137 <--x 106 - 138 <--x 70 - 138 <--x 71 - 139 <--x 71 - 139 <--x 106 - 140 <--x 71 - 140 <--x 72 - 141 <--x 72 - 141 <--x 106 - 142 <--x 72 - 142 <--x 73 - 143 <--x 73 - 143 <--x 106 - 144 <--x 73 - 144 <--x 74 - 145 <--x 74 - 145 <--x 106 - 146 <--x 74 - 146 <--x 75 - 147 <--x 75 - 147 <--x 106 - 148 <--x 75 - 148 <--x 76 - 149 <--x 76 - 149 <--x 106 - 150 <--x 76 - 150 <--x 77 - 151 <--x 77 - 151 <--x 106 - 152 <--x 77 - 152 <--x 78 - 153 <--x 78 - 153 <--x 106 - 154 <--x 78 - 154 <--x 79 - 155 <--x 79 - 155 <--x 106 - 156 <--x 79 - 156 <--x 80 - 157 <--x 80 - 157 <--x 106 - 158 <--x 80 - 158 <--x 81 - 159 <--x 81 - 159 <--x 106 - 160 <--x 81 - 160 <--x 82 - 161 <--x 82 - 161 <--x 106 - 162 <--x 82 - 162 <--x 83 - 163 <--x 83 - 163 <--x 106 - 164 <--x 83 - 164 <--x 84 - 165 <--x 84 - 165 <--x 106 - 166 <--x 84 - 166 <--x 85 - 167 <--x 85 - 167 <--x 106 - 168 <--x 85 - 168 <--x 86 - 169 <--x 86 - 169 <--x 106 - 170 <--x 86 - 170 <--x 87 - 171 <--x 87 - 171 <--x 106 - 172 <--x 87 - 172 <--x 88 - 173 <--x 88 - 173 <--x 106 - 174 <--x 88 - 174 <--x 89 - 175 <--x 89 - 175 <--x 106 - 176 <--x 89 - 176 <--x 90 - 177 <--x 90 - 177 <--x 106 - 178 <--x 90 - 178 <--x 91 - 179 <--x 91 - 179 <--x 106 - 180 <--x 91 - 180 <--x 92 - 181 <--x 92 - 181 <--x 106 - 182 <--x 92 - 182 <--x 93 - 183 <--x 93 - 183 <--x 106 - 184 <--x 93 - 184 <--x 94 - 185 <--x 94 - 185 <--x 106 - 186 <--x 94 - 186 <--x 95 - 187 <--x 95 - 187 <--x 106 - 188 <--x 95 - 188 <--x 96 - 189 <--x 96 - 189 <--x 106 - 190 <--x 96 - 190 <--x 97 - 191 <--x 97 - 191 <--x 106 - 192 <--x 97 - 192 <--x 98 - 193 <--x 98 - 193 <--x 106 - 194 <--x 98 - 194 <--x 99 - 195 <--x 99 - 195 <--x 106 - 196 <--x 99 - 196 <--x 100 - 197 <--x 100 - 197 <--x 106 - 198 <--x 100 - 198 <--x 101 - 199 <--x 101 - 199 <--x 106 - 200 <--x 101 - 200 <--x 102 - 201 <--x 102 - 201 <--x 106 - 202 <--x 102 - 202 <--x 103 - 203 <--x 103 - 203 <--x 106 - 204 <--x 103 - 204 <--x 104 - 205 <--x 104 - 205 <--x 106 + 152 <--x 55 + 203 <--x 55 206 <--x 55 - 206 <--x 104 + 115 <--x 56 + 170 <--x 56 + 173 <--x 56 + 149 <--x 57 + 187 <--x 57 + 200 <--x 57 + 135 <--x 58 + 168 <--x 58 + 172 <--x 58 + 145 <--x 59 + 159 <--x 59 + 177 <--x 59 + 120 <--x 60 + 165 <--x 60 + 202 <--x 60 + 110 <--x 61 + 188 <--x 61 + 205 <--x 61 + 125 <--x 62 + 175 <--x 62 + 178 <--x 62 + 132 <--x 63 + 162 <--x 63 + 199 <--x 63 + 108 <--x 64 + 162 <--x 64 + 198 <--x 64 + 116 <--x 65 + 164 <--x 65 + 167 <--x 65 + 128 <--x 66 + 158 <--x 66 + 163 <--x 66 + 109 <--x 67 + 167 <--x 67 + 196 <--x 67 + 139 <--x 68 + 179 <--x 68 + 191 <--x 68 + 153 <--x 69 + 158 <--x 69 + 206 <--x 69 + 156 <--x 70 + 160 <--x 70 + 200 <--x 70 + 155 <--x 71 + 174 <--x 71 + 191 <--x 71 + 138 <--x 72 + 192 <--x 72 + 194 <--x 72 + 130 <--x 73 + 163 <--x 73 + 197 <--x 73 + 134 <--x 74 + 180 <--x 74 + 185 <--x 74 + 119 <--x 75 + 159 <--x 75 + 204 <--x 75 + 113 <--x 76 + 181 <--x 76 + 185 <--x 76 + 133 <--x 77 + 157 <--x 77 + 195 <--x 77 + 129 <--x 78 + 166 <--x 78 + 193 <--x 78 + 154 <--x 79 + 171 <--x 79 + 193 <--x 79 + 111 <--x 80 + 182 <--x 80 + 194 <--x 80 + 118 <--x 81 + 190 <--x 81 + 192 <--x 81 + 117 <--x 82 + 195 <--x 82 + 197 <--x 82 + 151 <--x 83 + 168 <--x 83 + 176 <--x 83 + 121 <--x 84 + 179 <--x 84 + 202 <--x 84 + 114 <--x 85 + 160 <--x 85 + 169 <--x 85 + 131 <--x 86 + 186 <--x 86 + 187 <--x 86 + 142 <--x 87 + 157 <--x 87 + 176 <--x 87 + 136 <--x 88 + 173 <--x 88 + 174 <--x 88 + 124 <--x 89 + 165 <--x 89 + 184 <--x 89 + 146 <--x 90 + 166 <--x 90 + 196 <--x 90 + 148 <--x 91 + 189 <--x 91 + 204 <--x 91 + 140 <--x 92 + 182 <--x 92 + 184 <--x 92 + 143 <--x 93 + 177 <--x 93 + 188 <--x 93 + 141 <--x 94 + 183 <--x 94 + 190 <--x 94 + 107 <--x 95 + 175 <--x 95 + 181 <--x 95 + 123 <--x 96 + 170 <--x 96 + 203 <--x 96 + 122 <--x 97 + 180 <--x 97 + 186 <--x 97 + 126 <--x 98 + 164 <--x 98 + 201 <--x 98 + 137 <--x 99 + 169 <--x 99 + 171 <--x 99 + 144 <--x 100 + 172 <--x 100 + 205 <--x 100 + 150 <--x 101 + 161 <--x 101 + 199 <--x 101 + 127 <--x 102 + 178 <--x 102 + 183 <--x 102 + 112 <--x 103 + 161 <--x 103 + 201 <--x 103 + 147 <--x 104 + 189 <--x 104 + 198 <--x 104 + 107 <--x 106 + 108 <--x 106 + 109 <--x 106 + 110 <--x 106 + 111 <--x 106 + 112 <--x 106 + 113 <--x 106 + 114 <--x 106 + 115 <--x 106 + 116 <--x 106 + 117 <--x 106 + 118 <--x 106 + 119 <--x 106 + 120 <--x 106 + 121 <--x 106 + 122 <--x 106 + 123 <--x 106 + 124 <--x 106 + 125 <--x 106 + 126 <--x 106 + 127 <--x 106 + 128 <--x 106 + 129 <--x 106 + 130 <--x 106 + 131 <--x 106 + 132 <--x 106 + 133 <--x 106 + 134 <--x 106 + 135 <--x 106 + 136 <--x 106 + 137 <--x 106 + 138 <--x 106 + 139 <--x 106 + 140 <--x 106 + 141 <--x 106 + 142 <--x 106 + 143 <--x 106 + 144 <--x 106 + 145 <--x 106 + 146 <--x 106 + 147 <--x 106 + 148 <--x 106 + 149 <--x 106 + 150 <--x 106 + 151 <--x 106 + 152 <--x 106 + 153 <--x 106 + 154 <--x 106 + 155 <--x 106 + 156 <--x 106 ``` diff --git a/rust/kcl-lib/tests/loop_tag/ops.snap b/rust/kcl-lib/tests/loop_tag/ops.snap index a18d84151..b6a8b3448 100644 --- a/rust/kcl-lib/tests/loop_tag/ops.snap +++ b/rust/kcl-lib/tests/loop_tag/ops.snap @@ -3,6 +3,1106 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed loop_tag.kcl --- [ + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cos", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "sin", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, { "labeledArgs": { "planeOrSolid": { @@ -33,33 +1133,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -75,33 +1155,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -117,33 +1177,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -159,33 +1199,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -201,33 +1221,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -243,33 +1243,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -285,33 +1265,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -327,33 +1287,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -369,33 +1309,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -411,33 +1331,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -453,33 +1353,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -495,33 +1375,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -537,33 +1397,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -579,33 +1419,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -621,33 +1441,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -663,33 +1463,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -705,33 +1485,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -747,33 +1507,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -789,33 +1529,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -831,33 +1551,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -873,33 +1573,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -915,33 +1595,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -957,33 +1617,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -999,33 +1639,13 @@ description: Operations executed loop_tag.kcl "type": "GroupBegin", "group": { "type": "FunctionCall", - "name": "cos", + "name": "calculatePoint", "functionSourceRange": [], "unlabeledArg": null, "labeledArgs": {} }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1037,37 +1657,6 @@ description: Operations executed loop_tag.kcl }, "sourceRange": [] }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -1079,1045 +1668,6 @@ description: Operations executed loop_tag.kcl }, "sourceRange": [] }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "calculatePoint", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cos", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "sin", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "length": { @@ -2149,5 +1699,455 @@ description: Operations executed loop_tag.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/module_return_using_var/artifact_commands.snap b/rust/kcl-lib/tests/module_return_using_var/artifact_commands.snap index 1472e2af5..a6d430450 100644 --- a/rust/kcl-lib/tests/module_return_using_var/artifact_commands.snap +++ b/rust/kcl-lib/tests/module_return_using_var/artifact_commands.snap @@ -94,13 +94,6 @@ description: Artifact commands module_return_using_var.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -121,6 +114,13 @@ description: Artifact commands module_return_using_var.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -224,6 +224,14 @@ description: Artifact commands module_return_using_var.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -235,8 +243,108 @@ description: Artifact commands module_return_using_var.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -252,30 +360,12 @@ description: Artifact commands module_return_using_var.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -290,39 +380,12 @@ description: Artifact commands module_return_using_var.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -337,18 +400,10 @@ description: Artifact commands module_return_using_var.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -361,43 +416,6 @@ description: Artifact commands module_return_using_var.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -412,28 +430,10 @@ description: Artifact commands module_return_using_var.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/module_return_using_var/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/module_return_using_var/artifact_graph_flowchart.snap.md index 8f490b320..4b2aa39a8 100644 --- a/rust/kcl-lib/tests/module_return_using_var/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/module_return_using_var/artifact_graph_flowchart.snap.md @@ -18,12 +18,12 @@ flowchart LR 14["Cap Start"] 15["Cap End"] 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] + 17["SweepEdge Opposite"] 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 20["SweepEdge Opposite"] + 19["SweepEdge Opposite"] + 20["SweepEdge Adjacent"] 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] + 22["SweepEdge Adjacent"] 23["SweepEdge Adjacent"] 1 --- 2 2 --- 3 @@ -31,24 +31,24 @@ flowchart LR 2 --- 5 2 --- 6 2 --- 7 - 2 ---- 9 2 --- 8 - 3 --- 10 - 3 --- 16 - 3 --- 17 + 2 ---- 9 + 3 --- 11 3 x--> 14 - 4 --- 11 - 4 --- 18 - 4 --- 19 + 3 --- 19 + 3 --- 20 + 4 --- 12 4 x--> 14 - 5 --- 12 - 5 --- 20 - 5 --- 21 + 4 --- 17 + 4 --- 21 + 5 --- 13 5 x--> 14 - 6 --- 13 - 6 --- 22 - 6 --- 23 + 5 --- 16 + 5 --- 22 + 6 --- 10 6 x--> 14 + 6 --- 18 + 6 --- 23 9 --- 10 9 --- 11 9 --- 12 @@ -63,20 +63,20 @@ flowchart LR 9 --- 21 9 --- 22 9 --- 23 - 16 <--x 10 - 16 <--x 15 - 17 <--x 10 - 17 <--x 11 - 18 <--x 11 - 18 <--x 15 + 18 <--x 10 + 22 <--x 10 + 23 <--x 10 19 <--x 11 - 19 <--x 12 + 20 <--x 11 + 23 <--x 11 + 17 <--x 12 20 <--x 12 - 20 <--x 15 21 <--x 12 + 16 <--x 13 21 <--x 13 22 <--x 13 - 22 <--x 15 - 23 <--x 10 - 23 <--x 13 + 16 <--x 15 + 17 <--x 15 + 18 <--x 15 + 19 <--x 15 ``` diff --git a/rust/kcl-lib/tests/module_return_using_var/ops.snap b/rust/kcl-lib/tests/module_return_using_var/ops.snap index 36fd4d471..a539d78e1 100644 --- a/rust/kcl-lib/tests/module_return_using_var/ops.snap +++ b/rust/kcl-lib/tests/module_return_using_var/ops.snap @@ -12,53 +12,6 @@ description: Operations executed module_return_using_var.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/multi_transform/artifact_commands.snap b/rust/kcl-lib/tests/multi_transform/artifact_commands.snap index 56e22004f..5489d4877 100644 --- a/rust/kcl-lib/tests/multi_transform/artifact_commands.snap +++ b/rust/kcl-lib/tests/multi_transform/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands multi_transform.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,21 @@ description: Artifact commands multi_transform.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -113,33 +121,6 @@ description: Artifact commands multi_transform.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 14.14213562373095, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -212,8 +193,27 @@ description: Artifact commands multi_transform.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 14.14213562373095, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -243,6 +243,14 @@ description: Artifact commands multi_transform.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -254,8 +262,108 @@ description: Artifact commands multi_transform.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -271,30 +379,12 @@ description: Artifact commands multi_transform.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -309,39 +399,12 @@ description: Artifact commands multi_transform.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -356,18 +419,10 @@ description: Artifact commands multi_transform.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -380,43 +435,6 @@ description: Artifact commands multi_transform.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -431,30 +449,12 @@ description: Artifact commands multi_transform.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], diff --git a/rust/kcl-lib/tests/multi_transform/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/multi_transform/artifact_graph_flowchart.snap.md index 1d527edc8..c2e0ce920 100644 --- a/rust/kcl-lib/tests/multi_transform/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/multi_transform/artifact_graph_flowchart.snap.md @@ -21,12 +21,12 @@ flowchart LR 15["Cap Start"] 16["Cap End"] 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] + 18["SweepEdge Opposite"] 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] + 20["SweepEdge Opposite"] + 21["SweepEdge Adjacent"] 22["SweepEdge Adjacent"] - 23["SweepEdge Opposite"] + 23["SweepEdge Adjacent"] 24["SweepEdge Adjacent"] 1 --- 2 1 --- 3 @@ -35,24 +35,24 @@ flowchart LR 3 --- 6 3 --- 7 3 --- 8 - 3 ---- 10 3 --- 9 + 3 ---- 10 4 --- 11 - 4 --- 17 - 4 --- 18 4 x--> 15 + 4 --- 19 + 4 --- 23 5 --- 12 - 5 --- 19 - 5 --- 20 5 x--> 15 + 5 --- 17 + 5 --- 24 6 --- 13 - 6 --- 21 - 6 --- 22 6 x--> 15 - 7 --- 14 - 7 --- 23 - 7 --- 24 - 7 x--> 15 + 6 --- 18 + 6 --- 21 + 8 --- 14 + 8 x--> 15 + 8 --- 20 + 8 --- 22 10 --- 11 10 --- 12 10 --- 13 @@ -67,20 +67,20 @@ flowchart LR 10 --- 22 10 --- 23 10 --- 24 - 17 <--x 11 - 17 <--x 16 - 18 <--x 11 - 18 <--x 12 - 19 <--x 12 - 19 <--x 16 - 20 <--x 12 - 20 <--x 13 - 21 <--x 13 - 21 <--x 16 - 22 <--x 13 - 22 <--x 14 - 23 <--x 14 - 23 <--x 16 + 19 <--x 11 + 23 <--x 11 24 <--x 11 - 24 <--x 14 + 17 <--x 12 + 22 <--x 12 + 24 <--x 12 + 18 <--x 13 + 21 <--x 13 + 23 <--x 13 + 20 <--x 14 + 21 <--x 14 + 22 <--x 14 + 17 <--x 16 + 18 <--x 16 + 19 <--x 16 + 20 <--x 16 ``` diff --git a/rust/kcl-lib/tests/multiple-foreign-imports-all-render/ops.snap b/rust/kcl-lib/tests/multiple-foreign-imports-all-render/ops.snap index 1bfe186c0..445c3b293 100644 --- a/rust/kcl-lib/tests/multiple-foreign-imports-all-render/ops.snap +++ b/rust/kcl-lib/tests/multiple-foreign-imports-all-render/ops.snap @@ -12,9 +12,6 @@ description: Operations executed multiple-foreign-imports-all-render.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -24,36 +21,6 @@ description: Operations executed multiple-foreign-imports-all-render.kcl }, "sourceRange": [] }, - { - "type": "GroupBegin", - "group": { - "type": "ModuleInstance", - "name": "cube", - "moduleId": 0 - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "geometry": { - "value": { - "type": "ImportedGeometry", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "clone", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -63,32 +30,11 @@ description: Operations executed multiple-foreign-imports-all-render.kcl }, "sourceRange": [] }, - { - "type": "GroupBegin", - "group": { - "type": "ModuleInstance", - "name": "cube", - "moduleId": 0 - }, - "sourceRange": [] - }, { "type": "GroupEnd" }, { - "labeledArgs": { - "geometry": { - "value": { - "type": "ImportedGeometry", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "clone", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null + "type": "GroupEnd" }, { "type": "GroupEnd" diff --git a/rust/kcl-lib/tests/neg_xz_plane/artifact_commands.snap b/rust/kcl-lib/tests/neg_xz_plane/artifact_commands.snap index 097ac712a..491af68b6 100644 --- a/rust/kcl-lib/tests/neg_xz_plane/artifact_commands.snap +++ b/rust/kcl-lib/tests/neg_xz_plane/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands neg_xz_plane.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands neg_xz_plane.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -166,6 +166,14 @@ description: Artifact commands neg_xz_plane.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -177,8 +185,81 @@ description: Artifact commands neg_xz_plane.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -194,30 +275,12 @@ description: Artifact commands neg_xz_plane.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -232,18 +295,10 @@ description: Artifact commands neg_xz_plane.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -256,43 +311,6 @@ description: Artifact commands neg_xz_plane.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -307,28 +325,10 @@ description: Artifact commands neg_xz_plane.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/neg_xz_plane/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/neg_xz_plane/artifact_graph_flowchart.snap.md index 310295db1..6a0e2619e 100644 --- a/rust/kcl-lib/tests/neg_xz_plane/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/neg_xz_plane/artifact_graph_flowchart.snap.md @@ -15,29 +15,29 @@ flowchart LR 11["Cap Start"] 12["Cap End"] 13["SweepEdge Opposite"] - 14["SweepEdge Adjacent"] + 14["SweepEdge Opposite"] 15["SweepEdge Opposite"] 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] + 17["SweepEdge Adjacent"] 18["SweepEdge Adjacent"] 1 --- 2 2 --- 3 2 --- 4 2 --- 5 - 2 ---- 7 2 --- 6 + 2 ---- 7 3 --- 10 - 3 --- 17 - 3 --- 18 3 x--> 11 + 3 --- 13 + 3 --- 18 4 --- 9 - 4 --- 15 - 4 --- 16 4 x--> 11 + 4 --- 14 + 4 --- 16 5 --- 8 - 5 --- 13 - 5 --- 14 5 x--> 11 + 5 --- 15 + 5 --- 17 7 --- 8 7 --- 9 7 --- 10 @@ -49,16 +49,16 @@ flowchart LR 7 --- 16 7 --- 17 7 --- 18 - 13 <--x 8 - 13 <--x 12 - 14 <--x 8 - 14 <--x 10 - 15 <--x 9 - 15 <--x 12 + 15 <--x 8 16 <--x 8 + 17 <--x 8 + 14 <--x 9 16 <--x 9 - 17 <--x 10 - 17 <--x 12 18 <--x 9 + 13 <--x 10 + 17 <--x 10 18 <--x 10 + 13 <--x 12 + 14 <--x 12 + 15 <--x 12 ``` diff --git a/rust/kcl-lib/tests/out_of_band_sketches/artifact_commands.snap b/rust/kcl-lib/tests/out_of_band_sketches/artifact_commands.snap index b4f8b60ae..6274f82c6 100644 --- a/rust/kcl-lib/tests/out_of_band_sketches/artifact_commands.snap +++ b/rust/kcl-lib/tests/out_of_band_sketches/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands out_of_band_sketches.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands out_of_band_sketches.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -172,13 +172,6 @@ description: Artifact commands out_of_band_sketches.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -199,6 +192,13 @@ description: Artifact commands out_of_band_sketches.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -299,229 +299,6 @@ description: Artifact commands out_of_band_sketches.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 10.14, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -553,7 +330,11 @@ description: Artifact commands out_of_band_sketches.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 10.14, + "faces": null, + "opposite": "None" } }, { @@ -564,6 +345,244 @@ description: Artifact commands out_of_band_sketches.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -577,26 +596,7 @@ description: Artifact commands out_of_band_sketches.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -615,39 +615,12 @@ description: Artifact commands out_of_band_sketches.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -662,39 +635,12 @@ description: Artifact commands out_of_band_sketches.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -709,39 +655,12 @@ description: Artifact commands out_of_band_sketches.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -756,9 +675,90 @@ description: Artifact commands out_of_band_sketches.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } } ] diff --git a/rust/kcl-lib/tests/out_of_band_sketches/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/out_of_band_sketches/artifact_graph_flowchart.snap.md index dd6dbdcc2..ec8b2b406 100644 --- a/rust/kcl-lib/tests/out_of_band_sketches/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/out_of_band_sketches/artifact_graph_flowchart.snap.md @@ -1,157 +1,157 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[45, 90, 0]"] - 3["Segment
[167, 190, 0]"] - 4["Segment
[211, 239, 0]"] + subgraph path3 [Path] + 3["Path
[45, 90, 0]"] + 5["Segment
[167, 190, 0]"] + 6["Segment
[211, 239, 0]"] 9["Segment
[549, 573, 0]"] 10["Segment
[594, 601, 0]"] - 11[Solid2d] - end - subgraph path6 [Path] - 6["Path
[301, 345, 0]"] - 7["Segment
[422, 445, 0]"] - 8["Segment
[466, 495, 0]"] - 12["Segment
[649, 677, 0]"] - 13["Segment
[698, 705, 0]"] 14[Solid2d] end + subgraph path4 [Path] + 4["Path
[301, 345, 0]"] + 7["Segment
[422, 445, 0]"] + 8["Segment
[466, 495, 0]"] + 11["Segment
[649, 677, 0]"] + 12["Segment
[698, 705, 0]"] + 13[Solid2d] + end 1["Plane
[12, 31, 0]"] - 5["Plane
[268, 287, 0]"] + 2["Plane
[268, 287, 0]"] 15["Sweep Extrusion
[716, 781, 0]"] - 16[Wall] + 16["Sweep Extrusion
[716, 781, 0]"] 17[Wall] 18[Wall] 19[Wall] - 20["Cap Start"] - 21["Cap End"] - 22["SweepEdge Opposite"] - 23["SweepEdge Adjacent"] - 24["SweepEdge Opposite"] - 25["SweepEdge Adjacent"] - 26["SweepEdge Opposite"] - 27["SweepEdge Adjacent"] - 28["SweepEdge Opposite"] - 29["SweepEdge Adjacent"] - 30["Sweep Extrusion
[716, 781, 0]"] - 31[Wall] - 32[Wall] - 33[Wall] - 34[Wall] - 35["Cap Start"] - 36["Cap End"] - 37["SweepEdge Opposite"] + 20[Wall] + 21[Wall] + 22[Wall] + 23[Wall] + 24[Wall] + 25["Cap Start"] + 26["Cap Start"] + 27["Cap End"] + 28["Cap End"] + 29["SweepEdge Opposite"] + 30["SweepEdge Opposite"] + 31["SweepEdge Opposite"] + 32["SweepEdge Opposite"] + 33["SweepEdge Opposite"] + 34["SweepEdge Opposite"] + 35["SweepEdge Opposite"] + 36["SweepEdge Opposite"] + 37["SweepEdge Adjacent"] 38["SweepEdge Adjacent"] - 39["SweepEdge Opposite"] + 39["SweepEdge Adjacent"] 40["SweepEdge Adjacent"] - 41["SweepEdge Opposite"] + 41["SweepEdge Adjacent"] 42["SweepEdge Adjacent"] - 43["SweepEdge Opposite"] + 43["SweepEdge Adjacent"] 44["SweepEdge Adjacent"] - 1 --- 2 - 2 --- 3 + 1 --- 3 2 --- 4 - 2 --- 9 - 2 --- 10 - 2 ---- 15 - 2 --- 11 - 3 --- 19 - 3 --- 28 - 3 --- 29 - 3 x--> 20 - 4 --- 18 - 4 --- 26 - 4 --- 27 - 4 x--> 20 - 5 --- 6 - 6 --- 7 - 6 --- 8 - 6 --- 12 - 6 --- 13 - 6 ---- 30 - 6 --- 14 - 7 --- 34 - 7 --- 43 + 3 --- 5 + 3 --- 6 + 3 --- 9 + 3 --- 10 + 3 --- 14 + 3 ---- 15 + 4 --- 7 + 4 --- 8 + 4 --- 11 + 4 --- 12 + 4 --- 13 + 4 ---- 16 + 5 --- 20 + 5 x--> 25 + 5 --- 31 + 5 --- 40 + 6 --- 19 + 6 x--> 25 + 6 --- 29 + 6 --- 39 + 7 --- 23 + 7 x--> 26 + 7 --- 35 7 --- 44 - 7 x--> 35 - 8 --- 33 - 8 --- 41 + 8 --- 22 + 8 x--> 26 + 8 --- 36 8 --- 42 - 8 x--> 35 9 --- 17 - 9 --- 24 - 9 --- 25 - 9 x--> 20 - 10 --- 16 - 10 --- 22 - 10 --- 23 - 10 x--> 20 - 12 --- 32 - 12 --- 39 - 12 --- 40 - 12 x--> 35 - 13 --- 31 - 13 --- 37 - 13 --- 38 - 13 x--> 35 - 15 --- 16 + 9 x--> 25 + 9 --- 32 + 9 --- 37 + 10 --- 18 + 10 x--> 25 + 10 --- 30 + 10 --- 38 + 11 --- 24 + 11 x--> 26 + 11 --- 33 + 11 --- 43 + 12 --- 21 + 12 x--> 26 + 12 --- 34 + 12 --- 41 15 --- 17 15 --- 18 15 --- 19 15 --- 20 - 15 --- 21 - 15 --- 22 - 15 --- 23 - 15 --- 24 15 --- 25 - 15 --- 26 15 --- 27 - 15 --- 28 15 --- 29 - 22 <--x 16 - 22 <--x 21 - 23 <--x 16 - 23 <--x 19 - 24 <--x 17 - 24 <--x 21 - 25 <--x 16 - 25 <--x 17 - 26 <--x 18 - 26 <--x 21 - 27 <--x 17 - 27 <--x 18 - 28 <--x 19 - 28 <--x 21 - 29 <--x 18 + 15 --- 30 + 15 --- 31 + 15 --- 32 + 15 --- 37 + 15 --- 38 + 15 --- 39 + 15 --- 40 + 16 --- 21 + 16 --- 22 + 16 --- 23 + 16 --- 24 + 16 --- 26 + 16 --- 28 + 16 --- 33 + 16 --- 34 + 16 --- 35 + 16 --- 36 + 16 --- 41 + 16 --- 42 + 16 --- 43 + 16 --- 44 + 32 <--x 17 + 37 <--x 17 + 39 <--x 17 + 30 <--x 18 + 37 <--x 18 + 38 <--x 18 29 <--x 19 - 30 --- 31 - 30 --- 32 - 30 --- 33 - 30 --- 34 - 30 --- 35 - 30 --- 36 - 30 --- 37 - 30 --- 38 - 30 --- 39 - 30 --- 40 - 30 --- 41 - 30 --- 42 - 30 --- 43 - 30 --- 44 - 37 <--x 31 - 37 <--x 36 - 38 <--x 31 - 38 <--x 34 - 39 <--x 32 - 39 <--x 36 - 40 <--x 31 - 40 <--x 32 - 41 <--x 33 - 41 <--x 36 - 42 <--x 32 - 42 <--x 33 - 43 <--x 34 - 43 <--x 36 - 44 <--x 33 - 44 <--x 34 + 39 <--x 19 + 40 <--x 19 + 31 <--x 20 + 38 <--x 20 + 40 <--x 20 + 34 <--x 21 + 41 <--x 21 + 43 <--x 21 + 36 <--x 22 + 42 <--x 22 + 44 <--x 22 + 35 <--x 23 + 41 <--x 23 + 44 <--x 23 + 33 <--x 24 + 42 <--x 24 + 43 <--x 24 + 29 <--x 27 + 30 <--x 27 + 31 <--x 27 + 32 <--x 27 + 33 <--x 28 + 34 <--x 28 + 35 <--x 28 + 36 <--x 28 ``` diff --git a/rust/kcl-lib/tests/parametric/artifact_commands.snap b/rust/kcl-lib/tests/parametric/artifact_commands.snap index aa1b1c7c9..9c78038ba 100644 --- a/rust/kcl-lib/tests/parametric/artifact_commands.snap +++ b/rust/kcl-lib/tests/parametric/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands parametric.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands parametric.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -217,6 +217,14 @@ description: Artifact commands parametric.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -228,8 +236,162 @@ description: Artifact commands parametric.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -245,30 +407,12 @@ description: Artifact commands parametric.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -283,39 +427,12 @@ description: Artifact commands parametric.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -330,39 +447,12 @@ description: Artifact commands parametric.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -377,18 +467,10 @@ description: Artifact commands parametric.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -405,39 +487,12 @@ description: Artifact commands parametric.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -448,43 +503,6 @@ description: Artifact commands parametric.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -499,28 +517,10 @@ description: Artifact commands parametric.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/parametric/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/parametric/artifact_graph_flowchart.snap.md index 32e6e5741..00a37d3f6 100644 --- a/rust/kcl-lib/tests/parametric/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/parametric/artifact_graph_flowchart.snap.md @@ -21,16 +21,16 @@ flowchart LR 17["Cap Start"] 18["Cap End"] 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] + 20["SweepEdge Opposite"] 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] + 22["SweepEdge Opposite"] 23["SweepEdge Opposite"] - 24["SweepEdge Adjacent"] - 25["SweepEdge Opposite"] + 24["SweepEdge Opposite"] + 25["SweepEdge Adjacent"] 26["SweepEdge Adjacent"] - 27["SweepEdge Opposite"] + 27["SweepEdge Adjacent"] 28["SweepEdge Adjacent"] - 29["SweepEdge Opposite"] + 29["SweepEdge Adjacent"] 30["SweepEdge Adjacent"] 1 --- 2 2 --- 3 @@ -39,32 +39,32 @@ flowchart LR 2 --- 6 2 --- 7 2 --- 8 - 2 ---- 10 2 --- 9 + 2 ---- 10 3 --- 16 - 3 --- 29 - 3 --- 30 3 x--> 17 - 4 --- 15 - 4 --- 27 - 4 --- 28 + 3 --- 23 + 3 --- 25 + 4 --- 14 4 x--> 17 - 5 --- 14 - 5 --- 25 - 5 --- 26 + 4 --- 21 + 4 --- 27 + 5 --- 13 5 x--> 17 - 6 --- 13 - 6 --- 23 - 6 --- 24 + 5 --- 19 + 5 --- 29 + 6 --- 15 6 x--> 17 + 6 --- 22 + 6 --- 26 7 --- 12 - 7 --- 21 - 7 --- 22 7 x--> 17 + 7 --- 20 + 7 --- 30 8 --- 11 - 8 --- 19 - 8 --- 20 8 x--> 17 + 8 --- 24 + 8 --- 28 10 --- 11 10 --- 12 10 --- 13 @@ -85,28 +85,28 @@ flowchart LR 10 --- 28 10 --- 29 10 --- 30 - 19 <--x 11 - 19 <--x 18 - 20 <--x 11 - 20 <--x 16 - 21 <--x 12 - 21 <--x 18 - 22 <--x 11 - 22 <--x 12 - 23 <--x 13 - 23 <--x 18 - 24 <--x 12 - 24 <--x 13 + 24 <--x 11 + 28 <--x 11 + 30 <--x 11 + 20 <--x 12 + 26 <--x 12 + 30 <--x 12 + 19 <--x 13 + 27 <--x 13 + 29 <--x 13 + 21 <--x 14 25 <--x 14 - 25 <--x 18 - 26 <--x 13 - 26 <--x 14 - 27 <--x 15 - 27 <--x 18 - 28 <--x 14 - 28 <--x 15 - 29 <--x 16 - 29 <--x 18 - 30 <--x 15 - 30 <--x 16 + 27 <--x 14 + 22 <--x 15 + 26 <--x 15 + 29 <--x 15 + 23 <--x 16 + 25 <--x 16 + 28 <--x 16 + 19 <--x 18 + 20 <--x 18 + 21 <--x 18 + 22 <--x 18 + 23 <--x 18 + 24 <--x 18 ``` diff --git a/rust/kcl-lib/tests/parametric_with_tan_arc/artifact_commands.snap b/rust/kcl-lib/tests/parametric_with_tan_arc/artifact_commands.snap index fd6c0a936..2a6654627 100644 --- a/rust/kcl-lib/tests/parametric_with_tan_arc/artifact_commands.snap +++ b/rust/kcl-lib/tests/parametric_with_tan_arc/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands parametric_with_tan_arc.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands parametric_with_tan_arc.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -249,6 +249,14 @@ description: Artifact commands parametric_with_tan_arc.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -260,8 +268,216 @@ description: Artifact commands parametric_with_tan_arc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -277,30 +493,12 @@ description: Artifact commands parametric_with_tan_arc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -315,39 +513,12 @@ description: Artifact commands parametric_with_tan_arc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -362,39 +533,12 @@ description: Artifact commands parametric_with_tan_arc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -409,39 +553,12 @@ description: Artifact commands parametric_with_tan_arc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -456,18 +573,10 @@ description: Artifact commands parametric_with_tan_arc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -484,39 +593,12 @@ description: Artifact commands parametric_with_tan_arc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -531,39 +613,12 @@ description: Artifact commands parametric_with_tan_arc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -574,43 +629,6 @@ description: Artifact commands parametric_with_tan_arc.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -625,28 +643,10 @@ description: Artifact commands parametric_with_tan_arc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/parametric_with_tan_arc/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/parametric_with_tan_arc/artifact_graph_flowchart.snap.md index 2363f1ab3..8c981f7ab 100644 --- a/rust/kcl-lib/tests/parametric_with_tan_arc/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/parametric_with_tan_arc/artifact_graph_flowchart.snap.md @@ -25,20 +25,20 @@ flowchart LR 21["Cap Start"] 22["Cap End"] 23["SweepEdge Opposite"] - 24["SweepEdge Adjacent"] + 24["SweepEdge Opposite"] 25["SweepEdge Opposite"] - 26["SweepEdge Adjacent"] + 26["SweepEdge Opposite"] 27["SweepEdge Opposite"] - 28["SweepEdge Adjacent"] + 28["SweepEdge Opposite"] 29["SweepEdge Opposite"] - 30["SweepEdge Adjacent"] - 31["SweepEdge Opposite"] + 30["SweepEdge Opposite"] + 31["SweepEdge Adjacent"] 32["SweepEdge Adjacent"] - 33["SweepEdge Opposite"] + 33["SweepEdge Adjacent"] 34["SweepEdge Adjacent"] - 35["SweepEdge Opposite"] + 35["SweepEdge Adjacent"] 36["SweepEdge Adjacent"] - 37["SweepEdge Opposite"] + 37["SweepEdge Adjacent"] 38["SweepEdge Adjacent"] 1 --- 2 2 --- 3 @@ -49,40 +49,40 @@ flowchart LR 2 --- 8 2 --- 9 2 --- 10 - 2 ---- 12 2 --- 11 - 3 --- 13 - 3 --- 23 - 3 --- 24 + 2 ---- 12 + 3 --- 19 3 x--> 21 - 4 --- 14 - 4 --- 25 - 4 --- 26 + 3 --- 28 + 3 --- 31 + 4 --- 16 4 x--> 21 + 4 --- 24 + 4 --- 34 5 --- 15 - 5 --- 27 - 5 --- 28 5 x--> 21 - 6 --- 16 - 6 --- 29 - 6 --- 30 + 5 --- 27 + 5 --- 32 + 6 --- 17 6 x--> 21 - 7 --- 17 - 7 --- 31 - 7 --- 32 + 6 --- 23 + 6 --- 36 + 7 --- 14 7 x--> 21 - 8 --- 18 - 8 --- 33 - 8 --- 34 + 7 --- 25 + 7 --- 37 + 8 --- 13 8 x--> 21 - 9 --- 19 - 9 --- 35 - 9 --- 36 + 8 --- 30 + 8 --- 38 + 9 --- 18 9 x--> 21 + 9 --- 29 + 9 --- 33 10 --- 20 - 10 --- 37 - 10 --- 38 10 x--> 21 + 10 --- 26 + 10 --- 35 12 --- 13 12 --- 14 12 --- 15 @@ -109,36 +109,36 @@ flowchart LR 12 --- 36 12 --- 37 12 --- 38 - 23 <--x 13 - 23 <--x 22 - 24 <--x 13 - 24 <--x 14 - 25 <--x 14 - 25 <--x 22 - 26 <--x 14 - 26 <--x 15 - 27 <--x 15 - 27 <--x 22 - 28 <--x 15 - 28 <--x 16 - 29 <--x 16 - 29 <--x 22 - 30 <--x 16 - 30 <--x 17 - 31 <--x 17 - 31 <--x 22 - 32 <--x 17 - 32 <--x 18 - 33 <--x 18 - 33 <--x 22 - 34 <--x 18 - 34 <--x 19 - 35 <--x 19 - 35 <--x 22 - 36 <--x 19 - 36 <--x 20 - 37 <--x 20 - 37 <--x 22 + 30 <--x 13 + 37 <--x 13 38 <--x 13 - 38 <--x 20 + 25 <--x 14 + 36 <--x 14 + 37 <--x 14 + 27 <--x 15 + 32 <--x 15 + 34 <--x 15 + 24 <--x 16 + 31 <--x 16 + 34 <--x 16 + 23 <--x 17 + 32 <--x 17 + 36 <--x 17 + 29 <--x 18 + 33 <--x 18 + 38 <--x 18 + 28 <--x 19 + 31 <--x 19 + 35 <--x 19 + 26 <--x 20 + 33 <--x 20 + 35 <--x 20 + 23 <--x 22 + 24 <--x 22 + 25 <--x 22 + 26 <--x 22 + 27 <--x 22 + 28 <--x 22 + 29 <--x 22 + 30 <--x 22 ``` diff --git a/rust/kcl-lib/tests/pattern_circular_in_module/artifact_commands.snap b/rust/kcl-lib/tests/pattern_circular_in_module/artifact_commands.snap index 26e04e87b..da2e45289 100644 --- a/rust/kcl-lib/tests/pattern_circular_in_module/artifact_commands.snap +++ b/rust/kcl-lib/tests/pattern_circular_in_module/artifact_commands.snap @@ -54,1085 +54,6 @@ description: Artifact commands pattern_circular_in_module.kcl "hide": true } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.5, - "y": 25.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 5.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -5.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "entity_circular_pattern", - "entity_id": "[uuid]", - "axis": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "center": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "num_repetitions": 3, - "arc_degrees": 360.0, - "rotate_duplicates": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1178,7 +99,29 @@ description: Artifact commands pattern_circular_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.5, + "y": 25.0, + "z": 0.0 + } } }, { @@ -1201,6 +144,44 @@ description: Artifact commands pattern_circular_in_module.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 5.0, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -1235,6 +216,40 @@ description: Artifact commands pattern_circular_in_module.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -5.0, + "z": 0.0 + }, + "relative": true + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -1260,6 +275,35 @@ description: Artifact commands pattern_circular_in_module.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 3, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, { "cmdId": "[uuid]", "range": [], @@ -1301,223 +345,96 @@ description: Artifact commands pattern_circular_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { @@ -1551,228 +468,11 @@ description: Artifact commands pattern_circular_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" } }, { @@ -1790,228 +490,11 @@ description: Artifact commands pattern_circular_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" } }, { @@ -2029,7 +512,33 @@ description: Artifact commands pattern_circular_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" } }, { @@ -2040,6 +549,982 @@ description: Artifact commands pattern_circular_in_module.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -2053,7 +1538,7 @@ description: Artifact commands pattern_circular_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2062,17 +1547,52 @@ description: Artifact commands pattern_circular_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -2091,39 +1611,12 @@ description: Artifact commands pattern_circular_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2138,39 +1631,12 @@ description: Artifact commands pattern_circular_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2185,39 +1651,12 @@ description: Artifact commands pattern_circular_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2232,9 +1671,570 @@ description: Artifact commands pattern_circular_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } } ] diff --git a/rust/kcl-lib/tests/pattern_circular_in_module/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/pattern_circular_in_module/artifact_graph_flowchart.snap.md index 3e4c66291..0cb1d4b37 100644 --- a/rust/kcl-lib/tests/pattern_circular_in_module/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/pattern_circular_in_module/artifact_graph_flowchart.snap.md @@ -1,163 +1,163 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[63, 90, 8]"] - 3["Segment
[98, 116, 8]"] - 4["Segment
[124, 143, 8]"] - 5["Segment
[151, 170, 8]"] - 6["Segment
[178, 185, 8]"] - 7[Solid2d] + subgraph path3 [Path] + 3["Path
[63, 90, 8]"] + 5["Segment
[98, 116, 8]"] + 8["Segment
[124, 143, 8]"] + 10["Segment
[151, 170, 8]"] + 11["Segment
[178, 185, 8]"] + 13[Solid2d] end - subgraph path27 [Path] - 27["Path
[63, 90, 8]"] - 28["Segment
[98, 116, 8]"] - 29["Segment
[124, 143, 8]"] - 30["Segment
[151, 170, 8]"] - 31["Segment
[178, 185, 8]"] - 32[Solid2d] + subgraph path4 [Path] + 4["Path
[63, 90, 8]"] + 6["Segment
[98, 116, 8]"] + 7["Segment
[124, 143, 8]"] + 9["Segment
[151, 170, 8]"] + 12["Segment
[178, 185, 8]"] + 14[Solid2d] end 1["Plane
[38, 55, 8]"] - 8["Sweep Extrusion
[342, 376, 8]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12[Wall] - 13["Cap Start"] - 14["Cap End"] - 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 23["Sweep Extrusion
[342, 376, 8]"] - 24["Sweep Extrusion
[342, 376, 8]"] - 25["Sweep Extrusion
[342, 376, 8]"] - 26["Plane
[38, 55, 8]"] - 33["Sweep Extrusion
[342, 376, 8]"] - 34[Wall] - 35[Wall] - 36[Wall] - 37[Wall] - 38["Cap Start"] - 39["Cap End"] + 2["Plane
[38, 55, 8]"] + 15["Sweep Extrusion
[342, 376, 8]"] + 16["Sweep Extrusion
[342, 376, 8]"] + 17["Sweep Extrusion
[342, 376, 8]"] + 18["Sweep Extrusion
[342, 376, 8]"] + 19["Sweep Extrusion
[342, 376, 8]"] + 20["Sweep Extrusion
[342, 376, 8]"] + 21["Sweep Extrusion
[342, 376, 8]"] + 22["Sweep Extrusion
[342, 376, 8]"] + 23[Wall] + 24[Wall] + 25[Wall] + 26[Wall] + 27[Wall] + 28[Wall] + 29[Wall] + 30[Wall] + 31["Cap Start"] + 32["Cap Start"] + 33["Cap End"] + 34["Cap End"] + 35["SweepEdge Opposite"] + 36["SweepEdge Opposite"] + 37["SweepEdge Opposite"] + 38["SweepEdge Opposite"] + 39["SweepEdge Opposite"] 40["SweepEdge Opposite"] - 41["SweepEdge Adjacent"] + 41["SweepEdge Opposite"] 42["SweepEdge Opposite"] 43["SweepEdge Adjacent"] - 44["SweepEdge Opposite"] + 44["SweepEdge Adjacent"] 45["SweepEdge Adjacent"] - 46["SweepEdge Opposite"] + 46["SweepEdge Adjacent"] 47["SweepEdge Adjacent"] - 48["Sweep Extrusion
[342, 376, 8]"] - 49["Sweep Extrusion
[342, 376, 8]"] - 50["Sweep Extrusion
[342, 376, 8]"] - 1 --- 2 - 2 --- 3 + 48["SweepEdge Adjacent"] + 49["SweepEdge Adjacent"] + 50["SweepEdge Adjacent"] + 1 --- 3 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 9 - 3 --- 15 - 3 --- 16 - 3 x--> 13 - 4 --- 10 - 4 --- 17 - 4 --- 18 - 4 x--> 13 - 5 --- 11 - 5 --- 19 - 5 --- 20 - 5 x--> 13 - 6 --- 12 - 6 --- 21 - 6 --- 22 - 6 x--> 13 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 - 8 --- 16 - 8 --- 17 - 8 --- 18 - 8 --- 19 - 8 --- 20 - 8 --- 21 - 8 --- 22 - 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 10 - 17 <--x 10 - 17 <--x 14 - 18 <--x 10 - 18 <--x 11 - 19 <--x 11 - 19 <--x 14 - 20 <--x 11 - 20 <--x 12 - 21 <--x 12 - 21 <--x 14 - 22 <--x 9 - 22 <--x 12 - 26 --- 27 - 27 --- 28 - 27 --- 29 - 27 --- 30 - 27 --- 31 - 27 ---- 33 - 27 --- 32 - 28 --- 34 - 28 --- 40 - 28 --- 41 - 28 x--> 38 - 29 --- 35 - 29 --- 42 - 29 --- 43 - 29 x--> 38 - 30 --- 36 - 30 --- 44 - 30 --- 45 - 30 x--> 38 - 31 --- 37 - 31 --- 46 - 31 --- 47 - 31 x--> 38 - 33 --- 34 - 33 --- 35 - 33 --- 36 - 33 --- 37 - 33 --- 38 - 33 --- 39 - 33 --- 40 - 33 --- 41 - 33 --- 42 - 33 --- 43 - 33 --- 44 - 33 --- 45 - 33 --- 46 - 33 --- 47 + 3 --- 5 + 3 --- 8 + 3 --- 10 + 3 --- 11 + 3 --- 13 + 3 ---- 22 + 4 --- 6 + 4 --- 7 + 4 --- 9 + 4 --- 12 + 4 --- 14 + 4 ---- 17 + 5 --- 28 + 5 x--> 32 + 5 --- 42 + 5 --- 47 + 6 --- 26 + 6 x--> 31 + 6 --- 35 + 6 --- 46 + 7 --- 24 + 7 x--> 31 + 7 --- 38 + 7 --- 44 + 8 --- 29 + 8 x--> 32 + 8 --- 40 + 8 --- 48 + 9 --- 23 + 9 x--> 31 + 9 --- 37 + 9 --- 45 + 10 --- 30 + 10 x--> 32 + 10 --- 39 + 10 --- 49 + 11 --- 27 + 11 x--> 32 + 11 --- 41 + 11 --- 50 + 12 --- 25 + 12 x--> 31 + 12 --- 36 + 12 --- 43 + 17 --- 23 + 17 --- 24 + 17 --- 25 + 17 --- 26 + 17 --- 31 + 17 --- 33 + 17 --- 35 + 17 --- 36 + 17 --- 37 + 17 --- 38 + 17 --- 43 + 17 --- 44 + 17 --- 45 + 17 --- 46 + 22 --- 27 + 22 --- 28 + 22 --- 29 + 22 --- 30 + 22 --- 32 + 22 --- 34 + 22 --- 39 + 22 --- 40 + 22 --- 41 + 22 --- 42 + 22 --- 47 + 22 --- 48 + 22 --- 49 + 22 --- 50 + 37 <--x 23 + 44 <--x 23 + 45 <--x 23 + 38 <--x 24 + 44 <--x 24 + 46 <--x 24 + 36 <--x 25 + 43 <--x 25 + 45 <--x 25 + 35 <--x 26 + 43 <--x 26 + 46 <--x 26 + 41 <--x 27 + 49 <--x 27 + 50 <--x 27 + 42 <--x 28 + 47 <--x 28 + 50 <--x 28 + 40 <--x 29 + 47 <--x 29 + 48 <--x 29 + 39 <--x 30 + 48 <--x 30 + 49 <--x 30 + 35 <--x 33 + 36 <--x 33 + 37 <--x 33 + 38 <--x 33 + 39 <--x 34 40 <--x 34 - 40 <--x 39 41 <--x 34 - 41 <--x 35 - 42 <--x 35 - 42 <--x 39 - 43 <--x 35 - 43 <--x 36 - 44 <--x 36 - 44 <--x 39 - 45 <--x 36 - 45 <--x 37 - 46 <--x 37 - 46 <--x 39 - 47 <--x 34 - 47 <--x 37 + 42 <--x 34 ``` diff --git a/rust/kcl-lib/tests/pattern_circular_in_module/ops.snap b/rust/kcl-lib/tests/pattern_circular_in_module/ops.snap index e8eb6d6d3..98b290757 100644 --- a/rust/kcl-lib/tests/pattern_circular_in_module/ops.snap +++ b/rust/kcl-lib/tests/pattern_circular_in_module/ops.snap @@ -3,90 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed pattern_circular_in_module.kcl --- [ - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "thing", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { diff --git a/rust/kcl-lib/tests/pattern_into_union/artifact_commands.snap b/rust/kcl-lib/tests/pattern_into_union/artifact_commands.snap index 0ed64ec75..67833b421 100644 --- a/rust/kcl-lib/tests/pattern_into_union/artifact_commands.snap +++ b/rust/kcl-lib/tests/pattern_into_union/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands pattern_into_union.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands pattern_into_union.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -251,6 +251,14 @@ description: Artifact commands pattern_into_union.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -262,8 +270,216 @@ description: Artifact commands pattern_into_union.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -279,30 +495,12 @@ description: Artifact commands pattern_into_union.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -317,39 +515,12 @@ description: Artifact commands pattern_into_union.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -364,39 +535,12 @@ description: Artifact commands pattern_into_union.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -411,39 +555,12 @@ description: Artifact commands pattern_into_union.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -458,18 +575,10 @@ description: Artifact commands pattern_into_union.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -486,39 +595,12 @@ description: Artifact commands pattern_into_union.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -533,39 +615,12 @@ description: Artifact commands pattern_into_union.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -576,43 +631,6 @@ description: Artifact commands pattern_into_union.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -627,30 +645,12 @@ description: Artifact commands pattern_into_union.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -692,13 +692,6 @@ description: Artifact commands pattern_into_union.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -719,6 +712,13 @@ description: Artifact commands pattern_into_union.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -805,6 +805,14 @@ description: Artifact commands pattern_into_union.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -816,8 +824,108 @@ description: Artifact commands pattern_into_union.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -833,9 +941,40 @@ description: Artifact commands pattern_into_union.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -852,39 +991,12 @@ description: Artifact commands pattern_into_union.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -895,43 +1007,6 @@ description: Artifact commands pattern_into_union.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -942,91 +1017,6 @@ description: Artifact commands pattern_into_union.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1039,6 +1029,16 @@ description: Artifact commands pattern_into_union.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1671,13 +1671,6 @@ description: Artifact commands pattern_into_union.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1698,6 +1691,13 @@ description: Artifact commands pattern_into_union.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1784,6 +1784,14 @@ description: Artifact commands pattern_into_union.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1795,8 +1803,108 @@ description: Artifact commands pattern_into_union.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1812,9 +1920,40 @@ description: Artifact commands pattern_into_union.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1831,39 +1970,12 @@ description: Artifact commands pattern_into_union.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1874,43 +1986,6 @@ description: Artifact commands pattern_into_union.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1921,91 +1996,6 @@ description: Artifact commands pattern_into_union.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -2018,6 +2008,16 @@ description: Artifact commands pattern_into_union.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], diff --git a/rust/kcl-lib/tests/pattern_into_union/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/pattern_into_union/artifact_graph_flowchart.snap.md index 2832eccbc..5179562ab 100644 --- a/rust/kcl-lib/tests/pattern_into_union/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/pattern_into_union/artifact_graph_flowchart.snap.md @@ -1,298 +1,298 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[412, 437, 0]"] - 3["Segment
[443, 484, 0]"] - 4["Segment
[490, 536, 0]"] - 5["Segment
[542, 567, 0]"] - 6["Segment
[573, 604, 0]"] - 7["Segment
[610, 639, 0]"] - 8["Segment
[645, 691, 0]"] - 9["Segment
[697, 732, 0]"] - 10["Segment
[738, 745, 0]"] - 11[Solid2d] + subgraph path4 [Path] + 4["Path
[412, 437, 0]"] + 7["Segment
[443, 484, 0]"] + 8["Segment
[490, 536, 0]"] + 9["Segment
[542, 567, 0]"] + 10["Segment
[573, 604, 0]"] + 11["Segment
[610, 639, 0]"] + 12["Segment
[645, 691, 0]"] + 13["Segment
[697, 732, 0]"] + 14["Segment
[738, 745, 0]"] + 24[Solid2d] end - subgraph path40 [Path] - 40["Path
[810, 851, 0]"] - 41["Segment
[857, 900, 0]"] - 42["Segment
[906, 1006, 0]"] - 43["Segment
[1012, 1041, 0]"] - 44["Segment
[1047, 1054, 0]"] - 45[Solid2d] + subgraph path5 [Path] + 5["Path
[810, 851, 0]"] + 15["Segment
[857, 900, 0]"] + 16["Segment
[906, 1006, 0]"] + 17["Segment
[1012, 1041, 0]"] + 18["Segment
[1047, 1054, 0]"] + 25[Solid2d] end - subgraph path63 [Path] - 63["Path
[1384, 1433, 0]"] - 64["Segment
[1439, 1479, 0]"] - 65["Segment
[1485, 1585, 0]"] - 66["Segment
[1591, 1628, 0]"] - 67["Segment
[1634, 1641, 0]"] - 68[Solid2d] + subgraph path6 [Path] + 6["Path
[1384, 1433, 0]"] + 19["Segment
[1439, 1479, 0]"] + 20["Segment
[1485, 1585, 0]"] + 21["Segment
[1591, 1628, 0]"] + 22["Segment
[1634, 1641, 0]"] + 23[Solid2d] end 1["Plane
[389, 406, 0]"] - 12["Sweep Extrusion
[751, 775, 0]"] - 13[Wall] - 14[Wall] - 15[Wall] - 16[Wall] - 17[Wall] - 18[Wall] - 19[Wall] - 20[Wall] - 21["Cap Start"] - 22["Cap End"] - 23["SweepEdge Opposite"] - 24["SweepEdge Adjacent"] - 25["SweepEdge Opposite"] - 26["SweepEdge Adjacent"] - 27["SweepEdge Opposite"] - 28["SweepEdge Adjacent"] - 29["SweepEdge Opposite"] - 30["SweepEdge Adjacent"] - 31["SweepEdge Opposite"] - 32["SweepEdge Adjacent"] - 33["SweepEdge Opposite"] - 34["SweepEdge Adjacent"] - 35["SweepEdge Opposite"] - 36["SweepEdge Adjacent"] - 37["SweepEdge Opposite"] - 38["SweepEdge Adjacent"] - 39["Plane
[787, 804, 0]"] - 46["Sweep Extrusion
[1060, 1098, 0]"] - 47[Wall] - 48[Wall] - 49[Wall] - 50[Wall] - 51["Cap Start"] - 52["Cap End"] + 2["Plane
[787, 804, 0]"] + 3["Plane
[1361, 1378, 0]"] + 26["Sweep Extrusion
[751, 775, 0]"] + 27["Sweep Extrusion
[1060, 1098, 0]"] + 28["Sweep Extrusion
[1647, 1685, 0]"] + 29[Wall] + 30[Wall] + 31[Wall] + 32[Wall] + 33[Wall] + 34[Wall] + 35[Wall] + 36[Wall] + 37[Wall] + 38[Wall] + 39[Wall] + 40[Wall] + 41[Wall] + 42[Wall] + 43[Wall] + 44[Wall] + 45["Cap Start"] + 46["Cap Start"] + 47["Cap Start"] + 48["Cap End"] + 49["Cap End"] + 50["Cap End"] + 51["SweepEdge Opposite"] + 52["SweepEdge Opposite"] 53["SweepEdge Opposite"] - 54["SweepEdge Adjacent"] + 54["SweepEdge Opposite"] 55["SweepEdge Opposite"] - 56["SweepEdge Adjacent"] + 56["SweepEdge Opposite"] 57["SweepEdge Opposite"] - 58["SweepEdge Adjacent"] + 58["SweepEdge Opposite"] 59["SweepEdge Opposite"] - 60["SweepEdge Adjacent"] - 61["EdgeCut Fillet
[1104, 1185, 0]"] - 62["Plane
[1361, 1378, 0]"] - 69["Sweep Extrusion
[1647, 1685, 0]"] - 70[Wall] - 71[Wall] - 72[Wall] - 73[Wall] - 74["Cap Start"] - 75["Cap End"] - 76["SweepEdge Opposite"] + 60["SweepEdge Opposite"] + 61["SweepEdge Opposite"] + 62["SweepEdge Opposite"] + 63["SweepEdge Opposite"] + 64["SweepEdge Opposite"] + 65["SweepEdge Opposite"] + 66["SweepEdge Opposite"] + 67["SweepEdge Adjacent"] + 68["SweepEdge Adjacent"] + 69["SweepEdge Adjacent"] + 70["SweepEdge Adjacent"] + 71["SweepEdge Adjacent"] + 72["SweepEdge Adjacent"] + 73["SweepEdge Adjacent"] + 74["SweepEdge Adjacent"] + 75["SweepEdge Adjacent"] + 76["SweepEdge Adjacent"] 77["SweepEdge Adjacent"] - 78["SweepEdge Opposite"] + 78["SweepEdge Adjacent"] 79["SweepEdge Adjacent"] - 80["SweepEdge Opposite"] + 80["SweepEdge Adjacent"] 81["SweepEdge Adjacent"] - 82["SweepEdge Opposite"] - 83["SweepEdge Adjacent"] + 82["SweepEdge Adjacent"] + 83["EdgeCut Fillet
[1104, 1185, 0]"] 84["EdgeCut Fillet
[1691, 1773, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 + 1 --- 4 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 --- 8 - 2 --- 9 - 2 --- 10 - 2 ---- 12 - 2 --- 11 - 3 --- 13 - 3 --- 23 - 3 --- 24 - 3 x--> 22 + 3 --- 6 + 4 --- 7 + 4 --- 8 + 4 --- 9 + 4 --- 10 + 4 --- 11 + 4 --- 12 + 4 --- 13 4 --- 14 - 4 --- 25 - 4 --- 26 - 4 x--> 22 + 4 --- 24 + 4 ---- 26 5 --- 15 - 5 --- 27 - 5 --- 28 - 5 x--> 22 - 6 --- 16 - 6 --- 29 - 6 --- 30 - 6 x--> 22 - 7 --- 17 - 7 --- 31 - 7 --- 32 - 7 x--> 22 - 8 --- 18 - 8 --- 33 - 8 --- 34 - 8 x--> 22 - 9 --- 19 - 9 --- 35 - 9 --- 36 - 9 x--> 22 - 10 --- 20 - 10 --- 37 - 10 --- 38 - 10 x--> 22 - 12 --- 13 - 12 --- 14 - 12 --- 15 - 12 --- 16 - 12 --- 17 - 12 --- 18 - 12 --- 19 - 12 --- 20 - 12 --- 21 - 12 --- 22 - 12 --- 23 - 12 --- 24 - 12 --- 25 - 12 --- 26 - 12 --- 27 - 12 --- 28 - 12 --- 29 - 12 --- 30 - 12 --- 31 - 12 --- 32 - 12 --- 33 - 12 --- 34 - 12 --- 35 - 12 --- 36 + 5 --- 16 + 5 --- 17 + 5 --- 18 + 5 --- 25 + 5 ---- 27 + 6 --- 19 + 6 --- 20 + 6 --- 21 + 6 --- 22 + 6 --- 23 + 6 ---- 28 + 7 --- 43 + 7 x--> 50 + 7 --- 64 + 7 --- 75 + 8 --- 40 + 8 x--> 50 + 8 --- 60 + 8 --- 78 + 9 --- 39 + 9 x--> 50 + 9 --- 63 + 9 --- 76 + 10 --- 41 + 10 x--> 50 + 10 --- 59 + 10 --- 80 + 11 --- 38 + 11 x--> 50 + 11 --- 61 + 11 --- 81 12 --- 37 - 12 --- 38 - 23 <--x 13 - 23 <--x 21 - 24 <--x 13 - 24 <--x 14 - 25 <--x 14 - 25 <--x 21 - 26 <--x 14 - 26 <--x 15 - 27 <--x 15 - 27 <--x 21 - 28 <--x 15 - 28 <--x 16 - 29 <--x 16 - 29 <--x 21 - 30 <--x 16 - 30 <--x 17 - 31 <--x 17 - 31 <--x 21 - 32 <--x 17 - 32 <--x 18 - 33 <--x 18 - 33 <--x 21 - 34 <--x 18 - 34 <--x 19 - 35 <--x 19 - 35 <--x 21 - 36 <--x 19 - 36 <--x 20 - 37 <--x 20 - 37 <--x 21 - 38 <--x 13 - 38 <--x 20 - 39 --- 40 - 40 --- 41 - 40 --- 42 - 40 --- 43 - 40 --- 44 - 40 ---- 46 - 40 --- 45 - 41 --- 47 - 41 --- 53 - 41 --- 54 - 41 x--> 52 - 42 --- 48 - 42 --- 55 - 42 --- 56 - 42 x--> 52 - 43 --- 49 - 43 --- 57 - 43 --- 58 - 43 x--> 52 - 44 --- 50 - 44 --- 59 - 44 --- 60 - 44 x--> 52 - 46 --- 47 - 46 --- 48 - 46 --- 49 - 46 --- 50 - 46 --- 51 - 46 --- 52 - 46 --- 53 - 46 --- 54 - 46 --- 55 - 46 --- 56 - 46 --- 57 - 46 --- 58 - 46 --- 59 - 46 --- 60 - 53 <--x 47 - 53 <--x 51 - 54 <--x 47 - 54 <--x 48 - 55 <--x 48 - 55 <--x 51 - 57 <--x 49 - 57 <--x 51 - 58 <--x 49 - 58 <--x 50 - 59 <--x 50 - 59 <--x 51 + 12 x--> 50 + 12 --- 66 + 12 --- 82 + 13 --- 42 + 13 x--> 50 + 13 --- 65 + 13 --- 77 + 14 --- 44 + 14 x--> 50 + 14 --- 62 + 14 --- 79 + 15 --- 35 + 15 x--> 49 + 15 --- 55 + 15 --- 73 + 16 --- 34 + 16 x--> 49 + 16 --- 58 + 16 --- 72 + 17 --- 36 + 17 x--> 49 + 17 --- 56 + 17 --- 71 + 18 --- 33 + 18 x--> 49 + 18 --- 57 + 18 --- 74 + 19 --- 31 + 19 x--> 48 + 19 --- 53 + 19 --- 69 + 20 --- 32 + 20 x--> 48 + 20 --- 52 + 20 --- 68 + 21 --- 30 + 21 x--> 48 + 21 --- 51 + 21 --- 70 + 22 --- 29 + 22 x--> 48 + 22 --- 54 + 22 --- 67 + 26 --- 37 + 26 --- 38 + 26 --- 39 + 26 --- 40 + 26 --- 41 + 26 --- 42 + 26 --- 43 + 26 --- 44 + 26 --- 47 + 26 --- 50 + 26 --- 59 + 26 --- 60 + 26 --- 61 + 26 --- 62 + 26 --- 63 + 26 --- 64 + 26 --- 65 + 26 --- 66 + 26 --- 75 + 26 --- 76 + 26 --- 77 + 26 --- 78 + 26 --- 79 + 26 --- 80 + 26 --- 81 + 26 --- 82 + 27 --- 33 + 27 --- 34 + 27 --- 35 + 27 --- 36 + 27 --- 46 + 27 --- 49 + 27 --- 55 + 27 --- 56 + 27 --- 57 + 27 --- 58 + 27 --- 71 + 27 --- 72 + 27 --- 73 + 27 --- 74 + 28 --- 29 + 28 --- 30 + 28 --- 31 + 28 --- 32 + 28 --- 45 + 28 --- 48 + 28 --- 51 + 28 --- 52 + 28 --- 53 + 28 --- 54 + 28 --- 67 + 28 --- 68 + 28 --- 69 + 28 --- 70 + 54 <--x 29 + 67 <--x 29 + 70 <--x 29 + 51 <--x 30 + 70 <--x 30 + 53 <--x 31 + 67 <--x 31 + 69 <--x 31 + 52 <--x 32 + 69 <--x 32 + 57 <--x 33 + 71 <--x 33 + 74 <--x 33 + 58 <--x 34 + 73 <--x 34 + 55 <--x 35 + 73 <--x 35 + 74 <--x 35 + 56 <--x 36 + 71 <--x 36 + 66 <--x 37 + 81 <--x 37 + 82 <--x 37 + 61 <--x 38 + 80 <--x 38 + 81 <--x 38 + 63 <--x 39 + 76 <--x 39 + 78 <--x 39 + 60 <--x 40 + 75 <--x 40 + 78 <--x 40 + 59 <--x 41 + 76 <--x 41 + 80 <--x 41 + 65 <--x 42 + 77 <--x 42 + 82 <--x 42 + 64 <--x 43 + 75 <--x 43 + 79 <--x 43 + 62 <--x 44 + 77 <--x 44 + 79 <--x 44 + 51 <--x 45 + 52 <--x 45 + 53 <--x 45 + 54 <--x 45 + 55 <--x 46 + 56 <--x 46 + 57 <--x 46 + 58 <--x 46 + 59 <--x 47 60 <--x 47 - 60 <--x 50 - 56 <--x 61 - 62 --- 63 - 63 --- 64 - 63 --- 65 - 63 --- 66 - 63 --- 67 - 63 ---- 69 - 63 --- 68 - 64 --- 73 - 64 --- 82 - 64 --- 83 - 64 x--> 75 - 65 --- 72 - 65 --- 80 - 65 --- 81 - 65 x--> 75 - 66 --- 71 - 66 --- 78 - 66 --- 79 - 66 x--> 75 - 67 --- 70 - 67 --- 76 - 67 --- 77 - 67 x--> 75 - 69 --- 70 - 69 --- 71 - 69 --- 72 - 69 --- 73 - 69 --- 74 - 69 --- 75 - 69 --- 76 - 69 --- 77 - 69 --- 78 - 69 --- 79 - 69 --- 80 - 69 --- 81 - 69 --- 82 - 69 --- 83 - 76 <--x 70 - 76 <--x 74 - 77 <--x 70 - 77 <--x 73 - 78 <--x 71 - 78 <--x 74 - 79 <--x 70 - 79 <--x 71 - 80 <--x 72 - 80 <--x 74 - 82 <--x 73 - 82 <--x 74 - 83 <--x 72 - 83 <--x 73 - 81 <--x 84 + 61 <--x 47 + 62 <--x 47 + 63 <--x 47 + 64 <--x 47 + 65 <--x 47 + 66 <--x 47 + 68 <--x 84 + 72 <--x 83 ``` diff --git a/rust/kcl-lib/tests/pattern_linear_in_module/artifact_commands.snap b/rust/kcl-lib/tests/pattern_linear_in_module/artifact_commands.snap index 8f860c72c..d33cc5066 100644 --- a/rust/kcl-lib/tests/pattern_linear_in_module/artifact_commands.snap +++ b/rust/kcl-lib/tests/pattern_linear_in_module/artifact_commands.snap @@ -54,953 +54,6 @@ description: Artifact commands pattern_linear_in_module.kcl "hide": true } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 1.0, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "entity_linear_pattern_transform", - "entity_id": "[uuid]", - "transform": [], - "transforms": [ - [ - { - "translate": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 - }, - "rotation": { - "axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "angle": { - "unit": "degrees", - "value": 0.0 - }, - "origin": { - "type": "local" - } - }, - "replicate": true - } - ], - [ - { - "translate": { - "x": 8.0, - "y": 0.0, - "z": 0.0 - }, - "scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 - }, - "rotation": { - "axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "angle": { - "unit": "degrees", - "value": 0.0 - }, - "origin": { - "type": "local" - } - }, - "replicate": true - } - ], - [ - { - "translate": { - "x": 12.0, - "y": 0.0, - "z": 0.0 - }, - "scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 - }, - "rotation": { - "axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "angle": { - "unit": "degrees", - "value": 0.0 - }, - "origin": { - "type": "local" - } - }, - "replicate": true - } - ], - [ - { - "translate": { - "x": 16.0, - "y": 0.0, - "z": 0.0 - }, - "scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 - }, - "rotation": { - "axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "angle": { - "unit": "degrees", - "value": 0.0 - }, - "origin": { - "type": "local" - } - }, - "replicate": true - } - ], - [ - { - "translate": { - "x": 20.0, - "y": 0.0, - "z": 0.0 - }, - "scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 - }, - "rotation": { - "axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "angle": { - "unit": "degrees", - "value": 0.0 - }, - "origin": { - "type": "local" - } - }, - "replicate": true - } - ], - [ - { - "translate": { - "x": 24.0, - "y": 0.0, - "z": 0.0 - }, - "scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 - }, - "rotation": { - "axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "angle": { - "unit": "degrees", - "value": 0.0 - }, - "origin": { - "type": "local" - } - }, - "replicate": true - } - ] - ] - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1026,6 +79,22 @@ description: Artifact commands pattern_linear_in_module.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1046,29 +115,18 @@ description: Artifact commands pattern_linear_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 1.0, - "y": 0.0, + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, "z": 0.0 } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1098,8 +156,264 @@ description: Artifact commands pattern_linear_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 1.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_linear_pattern_transform", + "entity_id": "[uuid]", + "transform": [], + "transforms": [ + [ + { + "translate": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "rotation": { + "axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "angle": { + "unit": "degrees", + "value": 0.0 + }, + "origin": { + "type": "local" + } + }, + "replicate": true + } + ], + [ + { + "translate": { + "x": 8.0, + "y": 0.0, + "z": 0.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "rotation": { + "axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "angle": { + "unit": "degrees", + "value": 0.0 + }, + "origin": { + "type": "local" + } + }, + "replicate": true + } + ], + [ + { + "translate": { + "x": 12.0, + "y": 0.0, + "z": 0.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "rotation": { + "axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "angle": { + "unit": "degrees", + "value": 0.0 + }, + "origin": { + "type": "local" + } + }, + "replicate": true + } + ], + [ + { + "translate": { + "x": 16.0, + "y": 0.0, + "z": 0.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "rotation": { + "axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "angle": { + "unit": "degrees", + "value": 0.0 + }, + "origin": { + "type": "local" + } + }, + "replicate": true + } + ], + [ + { + "translate": { + "x": 20.0, + "y": 0.0, + "z": 0.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "rotation": { + "axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "angle": { + "unit": "degrees", + "value": 0.0 + }, + "origin": { + "type": "local" + } + }, + "replicate": true + } + ], + [ + { + "translate": { + "x": 24.0, + "y": 0.0, + "z": 0.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "rotation": { + "axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "angle": { + "unit": "degrees", + "value": 0.0 + }, + "origin": { + "type": "local" + } + }, + "replicate": true + } + ] + ] } }, { @@ -1307,82 +621,192 @@ description: Artifact commands pattern_linear_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 1.0, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } } }, { @@ -1416,87 +840,11 @@ description: Artifact commands pattern_linear_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" } }, { @@ -1514,87 +862,11 @@ description: Artifact commands pattern_linear_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" } }, { @@ -1612,87 +884,11 @@ description: Artifact commands pattern_linear_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" } }, { @@ -1710,87 +906,11 @@ description: Artifact commands pattern_linear_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" } }, { @@ -1808,87 +928,11 @@ description: Artifact commands pattern_linear_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - } + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" } }, { @@ -1906,7 +950,33 @@ description: Artifact commands pattern_linear_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 1.0, + "faces": null, + "opposite": "None" } }, { @@ -1917,6 +987,586 @@ description: Artifact commands pattern_linear_in_module.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1930,7 +1580,7 @@ description: Artifact commands pattern_linear_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1939,17 +1589,106 @@ description: Artifact commands pattern_linear_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -1968,9 +1707,270 @@ description: Artifact commands pattern_linear_in_module.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } } ] diff --git a/rust/kcl-lib/tests/pattern_linear_in_module/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/pattern_linear_in_module/artifact_graph_flowchart.snap.md index 5c757b505..0a9da25d3 100644 --- a/rust/kcl-lib/tests/pattern_linear_in_module/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/pattern_linear_in_module/artifact_graph_flowchart.snap.md @@ -1,71 +1,71 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[54, 89, 8]"] - 3["Segment
[54, 89, 8]"] - 4[Solid2d] + subgraph path3 [Path] + 3["Path
[54, 89, 8]"] + 5["Segment
[54, 89, 8]"] + 7[Solid2d] end - subgraph path18 [Path] - 18["Path
[54, 89, 8]"] - 19["Segment
[54, 89, 8]"] - 20[Solid2d] + subgraph path4 [Path] + 4["Path
[54, 89, 8]"] + 6["Segment
[54, 89, 8]"] + 8[Solid2d] end 1["Plane
[29, 46, 8]"] - 5["Sweep Extrusion
[200, 219, 8]"] - 6[Wall] - 7["Cap Start"] - 8["Cap End"] - 9["SweepEdge Opposite"] - 10["SweepEdge Adjacent"] + 2["Plane
[29, 46, 8]"] + 9["Sweep Extrusion
[200, 219, 8]"] + 10["Sweep Extrusion
[200, 219, 8]"] 11["Sweep Extrusion
[200, 219, 8]"] 12["Sweep Extrusion
[200, 219, 8]"] 13["Sweep Extrusion
[200, 219, 8]"] 14["Sweep Extrusion
[200, 219, 8]"] 15["Sweep Extrusion
[200, 219, 8]"] 16["Sweep Extrusion
[200, 219, 8]"] - 17["Plane
[29, 46, 8]"] + 17["Sweep Extrusion
[200, 219, 8]"] + 18["Sweep Extrusion
[200, 219, 8]"] + 19["Sweep Extrusion
[200, 219, 8]"] + 20["Sweep Extrusion
[200, 219, 8]"] 21["Sweep Extrusion
[200, 219, 8]"] - 22[Wall] - 23["Cap Start"] - 24["Cap End"] - 25["SweepEdge Opposite"] - 26["SweepEdge Adjacent"] - 27["Sweep Extrusion
[200, 219, 8]"] - 28["Sweep Extrusion
[200, 219, 8]"] - 29["Sweep Extrusion
[200, 219, 8]"] - 30["Sweep Extrusion
[200, 219, 8]"] - 31["Sweep Extrusion
[200, 219, 8]"] - 32["Sweep Extrusion
[200, 219, 8]"] - 1 --- 2 - 2 --- 3 - 2 ---- 5 + 22["Sweep Extrusion
[200, 219, 8]"] + 23[Wall] + 24[Wall] + 25["Cap Start"] + 26["Cap Start"] + 27["Cap End"] + 28["Cap End"] + 29["SweepEdge Opposite"] + 30["SweepEdge Opposite"] + 31["SweepEdge Adjacent"] + 32["SweepEdge Adjacent"] + 1 --- 3 2 --- 4 - 3 --- 6 - 3 --- 9 - 3 --- 10 - 3 x--> 7 - 5 --- 6 - 5 --- 7 - 5 --- 8 - 5 --- 9 - 5 --- 10 - 9 <--x 6 - 9 <--x 8 - 10 <--x 6 - 17 --- 18 - 18 --- 19 - 18 ---- 21 - 18 --- 20 - 19 --- 22 - 19 --- 25 - 19 --- 26 - 19 x--> 23 - 21 --- 22 - 21 --- 23 - 21 --- 24 - 21 --- 25 - 21 --- 26 - 25 <--x 22 - 25 <--x 24 - 26 <--x 22 + 3 --- 5 + 3 --- 7 + 3 ---- 20 + 4 --- 6 + 4 --- 8 + 4 ---- 13 + 5 --- 24 + 5 x--> 26 + 5 --- 30 + 5 --- 32 + 6 --- 23 + 6 x--> 25 + 6 --- 29 + 6 --- 31 + 13 --- 23 + 13 --- 25 + 13 --- 27 + 13 --- 29 + 13 --- 31 + 20 --- 24 + 20 --- 26 + 20 --- 28 + 20 --- 30 + 20 --- 32 + 29 <--x 23 + 31 <--x 23 + 30 <--x 24 + 32 <--x 24 + 29 <--x 27 + 30 <--x 28 ``` diff --git a/rust/kcl-lib/tests/pattern_linear_in_module/ops.snap b/rust/kcl-lib/tests/pattern_linear_in_module/ops.snap index 65e0b86be..dcbecf385 100644 --- a/rust/kcl-lib/tests/pattern_linear_in_module/ops.snap +++ b/rust/kcl-lib/tests/pattern_linear_in_module/ops.snap @@ -102,108 +102,6 @@ description: Operations executed pattern_linear_in_module.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "thing", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Array", - "value": [ - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - } - ] - }, - "sourceRange": [] - } - }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/pentagon_fillet_sugar/artifact_commands.snap b/rust/kcl-lib/tests/pentagon_fillet_sugar/artifact_commands.snap index b2ccb7a18..8ad1a08ff 100644 --- a/rust/kcl-lib/tests/pentagon_fillet_sugar/artifact_commands.snap +++ b/rust/kcl-lib/tests/pentagon_fillet_sugar/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands pentagon_fillet_sugar.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands pentagon_fillet_sugar.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -175,6 +175,14 @@ description: Artifact commands pentagon_fillet_sugar.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -186,8 +194,81 @@ description: Artifact commands pentagon_fillet_sugar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -203,30 +284,12 @@ description: Artifact commands pentagon_fillet_sugar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -241,18 +304,10 @@ description: Artifact commands pentagon_fillet_sugar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -265,43 +320,6 @@ description: Artifact commands pentagon_fillet_sugar.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -316,30 +334,12 @@ description: Artifact commands pentagon_fillet_sugar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -356,7 +356,12 @@ description: Artifact commands pentagon_fillet_sugar.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -372,6 +377,19 @@ description: Artifact commands pentagon_fillet_sugar.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 280.0, + "y": 100.0, + "z": 0.0 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -379,6 +397,27 @@ description: Artifact commands pentagon_fillet_sugar.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -404,181 +443,6 @@ description: Artifact commands pentagon_fillet_sugar.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 100.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 5.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 5.0, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 280.0, - "y": 100.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -612,6 +476,14 @@ description: Artifact commands pentagon_fillet_sugar.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -635,13 +507,6 @@ description: Artifact commands pentagon_fillet_sugar.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -650,6 +515,40 @@ description: Artifact commands pentagon_fillet_sugar.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -659,34 +558,6 @@ description: Artifact commands pentagon_fillet_sugar.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -697,6 +568,88 @@ description: Artifact commands pentagon_fillet_sugar.kcl "face_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 5.0, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 5.0, + "tolerance": 0.0000001, + "cut_type": "fillet" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 100.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, { "cmdId": "[uuid]", "range": [], @@ -706,6 +659,43 @@ description: Artifact commands pentagon_fillet_sugar.kcl "edge_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -739,5 +729,15 @@ description: Artifact commands pentagon_fillet_sugar.kcl "tolerance": 0.0000001, "cut_type": "fillet" } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } } ] diff --git a/rust/kcl-lib/tests/pentagon_fillet_sugar/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/pentagon_fillet_sugar/artifact_graph_flowchart.snap.md index 2bc9ff050..ed49e32e2 100644 --- a/rust/kcl-lib/tests/pentagon_fillet_sugar/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/pentagon_fillet_sugar/artifact_graph_flowchart.snap.md @@ -1,124 +1,124 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[96, 121, 0]"] - 3["Segment
[127, 181, 0]"] - 4["Segment
[187, 242, 0]"] - 5["Segment
[248, 303, 0]"] + subgraph path4 [Path] + 4["Path
[96, 121, 0]"] + 7["Segment
[127, 181, 0]"] + 8["Segment
[187, 242, 0]"] + 9["Segment
[248, 303, 0]"] end - subgraph path18 [Path] - 18["Path
[409, 460, 0]"] - 19["Segment
[468, 582, 0]"] - 20["Segment
[590, 598, 0]"] - 21[Solid2d] + subgraph path5 [Path] + 5["Path
[409, 460, 0]"] + 10["Segment
[468, 582, 0]"] + 13["Segment
[590, 598, 0]"] + 14[Solid2d] end - subgraph path29 [Path] - 29["Path
[409, 460, 0]"] - 30["Segment
[468, 582, 0]"] - 31["Segment
[590, 598, 0]"] - 32[Solid2d] + subgraph path6 [Path] + 6["Path
[409, 460, 0]"] + 11["Segment
[468, 582, 0]"] + 12["Segment
[590, 598, 0]"] + 15[Solid2d] end 1["Plane
[73, 90, 0]"] - 6["Sweep Extrusion
[309, 341, 0]"] - 7[Wall] - 8[Wall] - 9[Wall] - 10["Cap Start"] - 11["Cap End"] - 12["SweepEdge Opposite"] - 13["SweepEdge Adjacent"] - 14["SweepEdge Opposite"] - 15["SweepEdge Adjacent"] - 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] - 22["Sweep Extrusion
[641, 669, 0]"] + 2["StartSketchOnFace
[372, 401, 0]"] + 3["StartSketchOnFace
[372, 401, 0]"] + 16["Sweep Extrusion
[309, 341, 0]"] + 17["Sweep Extrusion
[641, 669, 0]"] + 18["Sweep Extrusion
[841, 869, 0]"] + 19[Wall] + 20[Wall] + 21[Wall] + 22[Wall] 23[Wall] - 24["Cap End"] - 25["SweepEdge Opposite"] - 26["SweepEdge Adjacent"] - 27["EdgeCut Fillet
[675, 802, 0]"] - 28["EdgeCut Fillet
[675, 802, 0]"] - 33["Sweep Extrusion
[841, 869, 0]"] - 34[Wall] - 35["Cap End"] - 36["SweepEdge Opposite"] + 24["Cap Start"] + 25["Cap End"] + 26["Cap End"] + 27["Cap End"] + 28["SweepEdge Opposite"] + 29["SweepEdge Opposite"] + 30["SweepEdge Opposite"] + 31["SweepEdge Opposite"] + 32["SweepEdge Opposite"] + 33["SweepEdge Adjacent"] + 34["SweepEdge Adjacent"] + 35["SweepEdge Adjacent"] + 36["SweepEdge Adjacent"] 37["SweepEdge Adjacent"] - 38["EdgeCut Fillet
[875, 1002, 0]"] - 39["EdgeCut Fillet
[875, 1002, 0]"] - 40["StartSketchOnFace
[372, 401, 0]"] - 41["StartSketchOnFace
[372, 401, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 ---- 6 - 3 --- 7 - 3 --- 12 - 3 --- 13 - 3 x--> 10 + 38["EdgeCut Fillet
[675, 802, 0]"] + 39["EdgeCut Fillet
[675, 802, 0]"] + 40["EdgeCut Fillet
[875, 1002, 0]"] + 41["EdgeCut Fillet
[875, 1002, 0]"] + 1 --- 4 + 22 x--> 2 + 23 x--> 3 + 4 --- 7 4 --- 8 - 4 --- 14 - 4 --- 15 - 4 x--> 10 - 5 --- 9 - 5 --- 16 - 5 --- 17 - 5 x--> 10 - 6 --- 7 - 6 --- 8 - 6 --- 9 - 6 --- 10 + 4 --- 9 + 4 ---- 16 + 5 --- 10 + 5 --- 13 + 5 --- 14 + 5 ---- 17 + 22 --- 5 6 --- 11 6 --- 12 - 6 --- 13 - 6 --- 14 6 --- 15 - 6 --- 16 - 6 --- 17 - 7 --- 29 - 9 --- 18 - 12 <--x 7 - 12 <--x 11 - 13 <--x 7 - 13 <--x 8 - 14 <--x 8 - 14 <--x 11 - 15 <--x 8 - 15 <--x 9 - 16 <--x 9 - 16 <--x 11 - 17 <--x 7 - 17 <--x 9 + 6 ---- 18 + 23 --- 6 + 7 --- 23 + 7 x--> 24 + 7 --- 32 + 7 --- 36 + 8 --- 21 + 8 x--> 24 + 8 --- 31 + 8 --- 35 + 9 --- 22 + 9 x--> 24 + 9 --- 30 + 9 --- 37 + 10 --- 20 + 10 x--> 22 + 10 --- 29 + 10 --- 34 + 10 --- 38 + 11 --- 19 + 11 x--> 23 + 11 --- 28 + 11 --- 33 + 11 --- 40 + 16 --- 21 + 16 --- 22 + 16 --- 23 + 16 --- 24 + 16 --- 27 + 16 --- 30 + 16 --- 31 + 16 --- 32 + 16 --- 35 + 16 --- 36 + 16 --- 37 + 17 --- 20 + 17 --- 26 + 17 --- 29 + 17 --- 34 18 --- 19 - 18 --- 20 - 18 ---- 22 - 18 --- 21 - 19 --- 23 - 19 --- 25 - 19 --- 26 - 19 --- 27 - 19 <--x 9 - 22 --- 23 - 22 --- 24 - 22 --- 25 - 22 --- 26 - 26 <--x 23 - 25 <--x 28 - 29 --- 30 - 29 --- 31 - 29 ---- 33 - 29 --- 32 - 30 --- 34 - 30 --- 36 - 30 --- 37 - 30 --- 38 - 30 <--x 7 - 33 --- 34 - 33 --- 35 - 33 --- 36 - 33 --- 37 - 37 <--x 34 - 36 <--x 39 - 9 <--x 40 - 7 <--x 41 + 18 --- 25 + 18 --- 28 + 18 --- 33 + 33 <--x 19 + 34 <--x 20 + 31 <--x 21 + 35 <--x 21 + 36 <--x 21 + 30 <--x 22 + 35 <--x 22 + 37 <--x 22 + 32 <--x 23 + 36 <--x 23 + 37 <--x 23 + 30 <--x 27 + 31 <--x 27 + 32 <--x 27 + 28 <--x 41 + 29 <--x 39 ``` diff --git a/rust/kcl-lib/tests/pentagon_fillet_sugar/ops.snap b/rust/kcl-lib/tests/pentagon_fillet_sugar/ops.snap index 309ed0231..9317b7b70 100644 --- a/rust/kcl-lib/tests/pentagon_fillet_sugar/ops.snap +++ b/rust/kcl-lib/tests/pentagon_fillet_sugar/ops.snap @@ -50,17 +50,6 @@ description: Operations executed pentagon_fillet_sugar.kcl "sourceRange": [] } }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "circl", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "face": { @@ -85,101 +74,6 @@ description: Operations executed pentagon_fillet_sugar.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 100.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "KclStdLibCall", - "name": "fillet", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "radius": { - "value": { - "type": "Number", - "value": 5.0, - "ty": { - "type": "Default", - "len": { - "type": "Mm" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "tags": { - "value": { - "type": "Array", - "value": [ - { - "type": "TagIdentifier", - "value": "arc_tag", - "artifact_id": "[uuid]" - }, - { - "type": "Uuid", - "value": "[uuid]" - } - ] - }, - "sourceRange": [] - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "circl", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "face": { @@ -205,7 +99,15 @@ description: Operations executed pentagon_fillet_sugar.kcl } }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "circl", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -287,5 +189,103 @@ description: Operations executed pentagon_fillet_sugar.kcl } }, "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "circl", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 100.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "KclStdLibCall", + "name": "fillet", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + }, + "labeledArgs": { + "radius": { + "value": { + "type": "Number", + "value": 5.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "tags": { + "value": { + "type": "Array", + "value": [ + { + "type": "TagIdentifier", + "value": "arc_tag", + "artifact_id": "[uuid]" + }, + { + "type": "Uuid", + "value": "[uuid]" + } + ] + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/pipe_as_arg/artifact_commands.snap b/rust/kcl-lib/tests/pipe_as_arg/artifact_commands.snap index 213684c3d..58df7301f 100644 --- a/rust/kcl-lib/tests/pipe_as_arg/artifact_commands.snap +++ b/rust/kcl-lib/tests/pipe_as_arg/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands pipe_as_arg.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands pipe_as_arg.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -200,6 +200,14 @@ description: Artifact commands pipe_as_arg.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -211,8 +219,108 @@ description: Artifact commands pipe_as_arg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -228,30 +336,12 @@ description: Artifact commands pipe_as_arg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -266,39 +356,12 @@ description: Artifact commands pipe_as_arg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -313,18 +376,10 @@ description: Artifact commands pipe_as_arg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -337,43 +392,6 @@ description: Artifact commands pipe_as_arg.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -388,28 +406,10 @@ description: Artifact commands pipe_as_arg.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/pipe_as_arg/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/pipe_as_arg/artifact_graph_flowchart.snap.md index 3413d5bc0..745561a19 100644 --- a/rust/kcl-lib/tests/pipe_as_arg/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/pipe_as_arg/artifact_graph_flowchart.snap.md @@ -18,12 +18,12 @@ flowchart LR 14["Cap Start"] 15["Cap End"] 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] + 17["SweepEdge Opposite"] 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 20["SweepEdge Opposite"] + 19["SweepEdge Opposite"] + 20["SweepEdge Adjacent"] 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] + 22["SweepEdge Adjacent"] 23["SweepEdge Adjacent"] 1 --- 2 2 --- 3 @@ -31,24 +31,24 @@ flowchart LR 2 --- 5 2 --- 6 2 --- 7 - 2 ---- 9 2 --- 8 + 2 ---- 9 3 --- 13 - 3 --- 22 - 3 --- 23 3 x--> 14 - 4 --- 12 - 4 --- 20 - 4 --- 21 + 3 --- 17 + 3 --- 20 + 4 --- 11 4 x--> 14 - 5 --- 11 - 5 --- 18 - 5 --- 19 + 4 --- 18 + 4 --- 22 + 5 --- 10 5 x--> 14 - 6 --- 10 - 6 --- 16 - 6 --- 17 + 5 --- 19 + 5 --- 21 + 6 --- 12 6 x--> 14 + 6 --- 16 + 6 --- 23 9 --- 10 9 --- 11 9 --- 12 @@ -63,20 +63,20 @@ flowchart LR 9 --- 21 9 --- 22 9 --- 23 - 16 <--x 10 - 16 <--x 15 - 17 <--x 10 - 17 <--x 13 - 18 <--x 11 - 18 <--x 15 19 <--x 10 - 19 <--x 11 - 20 <--x 12 - 20 <--x 15 - 21 <--x 11 + 21 <--x 10 + 22 <--x 10 + 18 <--x 11 + 20 <--x 11 + 22 <--x 11 + 16 <--x 12 21 <--x 12 - 22 <--x 13 - 22 <--x 15 23 <--x 12 + 17 <--x 13 + 20 <--x 13 23 <--x 13 + 16 <--x 15 + 17 <--x 15 + 18 <--x 15 + 19 <--x 15 ``` diff --git a/rust/kcl-lib/tests/pipe_as_arg/ops.snap b/rust/kcl-lib/tests/pipe_as_arg/ops.snap index 50acdea3b..732e831e2 100644 --- a/rust/kcl-lib/tests/pipe_as_arg/ops.snap +++ b/rust/kcl-lib/tests/pipe_as_arg/ops.snap @@ -3,31 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed pipe_as_arg.kcl --- [ - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "double", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cube", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -75,6 +50,31 @@ description: Operations executed pipe_as_arg.kcl "sourceRange": [] } }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "double", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupEnd" + }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/poop_chute/artifact_commands.snap b/rust/kcl-lib/tests/poop_chute/artifact_commands.snap index c937d2d4d..f5966c4b5 100644 --- a/rust/kcl-lib/tests/poop_chute/artifact_commands.snap +++ b/rust/kcl-lib/tests/poop_chute/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands poop_chute.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands poop_chute.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -309,6 +309,14 @@ description: Artifact commands poop_chute.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -338,8 +346,351 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -355,30 +706,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -393,39 +726,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -440,39 +746,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -487,39 +766,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -534,39 +786,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -581,39 +806,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -628,18 +826,10 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -656,39 +846,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -703,39 +866,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -750,39 +886,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -797,39 +906,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -844,39 +926,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -887,43 +942,6 @@ description: Artifact commands poop_chute.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -938,30 +956,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1003,13 +1003,6 @@ description: Artifact commands poop_chute.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1030,6 +1023,13 @@ description: Artifact commands poop_chute.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1269,6 +1269,14 @@ description: Artifact commands poop_chute.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -1280,8 +1288,351 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -1297,30 +1648,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1335,39 +1668,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1382,39 +1688,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1429,39 +1708,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1476,39 +1728,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1523,39 +1748,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1570,18 +1768,10 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -1598,39 +1788,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1645,39 +1808,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1692,39 +1828,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1739,39 +1848,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1786,39 +1868,12 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1829,43 +1884,6 @@ description: Artifact commands poop_chute.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -1880,28 +1898,10 @@ description: Artifact commands poop_chute.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/poop_chute/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/poop_chute/artifact_graph_flowchart.snap.md index 328435552..8a27c2797 100644 --- a/rust/kcl-lib/tests/poop_chute/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/poop_chute/artifact_graph_flowchart.snap.md @@ -1,445 +1,445 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[206, 250, 0]"] - 3["Segment
[256, 290, 0]"] - 4["Segment
[296, 365, 0]"] - 5["Segment
[371, 398, 0]"] - 6["Segment
[404, 435, 0]"] - 7["Segment
[441, 476, 0]"] - 8["Segment
[482, 562, 0]"] - 9["Segment
[568, 599, 0]"] - 10["Segment
[605, 664, 0]"] - 11["Segment
[670, 697, 0]"] - 12["Segment
[703, 725, 0]"] - 13["Segment
[731, 766, 0]"] - 14["Segment
[772, 818, 0]"] - 15["Segment
[824, 832, 0]"] - 16[Solid2d] + subgraph path3 [Path] + 3["Path
[206, 250, 0]"] + 5["Segment
[256, 290, 0]"] + 6["Segment
[296, 365, 0]"] + 7["Segment
[371, 398, 0]"] + 8["Segment
[404, 435, 0]"] + 9["Segment
[441, 476, 0]"] + 10["Segment
[482, 562, 0]"] + 11["Segment
[568, 599, 0]"] + 12["Segment
[605, 664, 0]"] + 13["Segment
[670, 697, 0]"] + 14["Segment
[703, 725, 0]"] + 15["Segment
[731, 766, 0]"] + 16["Segment
[772, 818, 0]"] + 17["Segment
[824, 832, 0]"] + 32[Solid2d] end - subgraph path60 [Path] - 60["Path
[1000, 1044, 0]"] - 61["Segment
[1050, 1084, 0]"] - 62["Segment
[1090, 1159, 0]"] - 63["Segment
[1165, 1192, 0]"] - 64["Segment
[1198, 1229, 0]"] - 65["Segment
[1235, 1270, 0]"] - 66["Segment
[1276, 1356, 0]"] - 67["Segment
[1362, 1393, 0]"] - 68["Segment
[1399, 1458, 0]"] - 69["Segment
[1464, 1491, 0]"] - 70["Segment
[1497, 1519, 0]"] - 71["Segment
[1525, 1560, 0]"] - 72["Segment
[1566, 1612, 0]"] - 73["Segment
[1618, 1626, 0]"] - 74[Solid2d] + subgraph path4 [Path] + 4["Path
[1000, 1044, 0]"] + 18["Segment
[1050, 1084, 0]"] + 19["Segment
[1090, 1159, 0]"] + 20["Segment
[1165, 1192, 0]"] + 21["Segment
[1198, 1229, 0]"] + 22["Segment
[1235, 1270, 0]"] + 23["Segment
[1276, 1356, 0]"] + 24["Segment
[1362, 1393, 0]"] + 25["Segment
[1399, 1458, 0]"] + 26["Segment
[1464, 1491, 0]"] + 27["Segment
[1497, 1519, 0]"] + 28["Segment
[1525, 1560, 0]"] + 29["Segment
[1566, 1612, 0]"] + 30["Segment
[1618, 1626, 0]"] + 31[Solid2d] end 1["Plane
[182, 200, 0]"] - 17["Sweep Revolve
[843, 962, 0]"] - 18[Wall] - 19[Wall] - 20[Wall] - 21[Wall] - 22[Wall] - 23[Wall] - 24[Wall] - 25[Wall] - 26[Wall] - 27[Wall] - 28[Wall] - 29[Wall] - 30[Wall] - 31["Cap Start"] - 32["Cap End"] - 33["SweepEdge Opposite"] - 34["SweepEdge Adjacent"] - 35["SweepEdge Opposite"] - 36["SweepEdge Adjacent"] - 37["SweepEdge Opposite"] - 38["SweepEdge Adjacent"] - 39["SweepEdge Opposite"] - 40["SweepEdge Adjacent"] - 41["SweepEdge Opposite"] - 42["SweepEdge Adjacent"] - 43["SweepEdge Opposite"] - 44["SweepEdge Adjacent"] - 45["SweepEdge Opposite"] - 46["SweepEdge Adjacent"] - 47["SweepEdge Opposite"] - 48["SweepEdge Adjacent"] - 49["SweepEdge Opposite"] - 50["SweepEdge Adjacent"] - 51["SweepEdge Opposite"] - 52["SweepEdge Adjacent"] - 53["SweepEdge Opposite"] - 54["SweepEdge Adjacent"] - 55["SweepEdge Opposite"] - 56["SweepEdge Adjacent"] - 57["SweepEdge Opposite"] - 58["SweepEdge Adjacent"] - 59["Plane
[976, 994, 0]"] - 75["Sweep Extrusion
[1632, 1670, 0]"] - 76[Wall] - 77[Wall] - 78[Wall] - 79[Wall] - 80[Wall] - 81[Wall] - 82[Wall] - 83[Wall] - 84[Wall] - 85[Wall] - 86[Wall] - 87[Wall] - 88[Wall] - 89["Cap Start"] - 90["Cap End"] - 91["SweepEdge Opposite"] + 2["Plane
[976, 994, 0]"] + 33["Sweep Revolve
[843, 962, 0]"] + 34["Sweep Extrusion
[1632, 1670, 0]"] + 35[Wall] + 36[Wall] + 37[Wall] + 38[Wall] + 39[Wall] + 40[Wall] + 41[Wall] + 42[Wall] + 43[Wall] + 44[Wall] + 45[Wall] + 46[Wall] + 47[Wall] + 48[Wall] + 49[Wall] + 50[Wall] + 51[Wall] + 52[Wall] + 53[Wall] + 54[Wall] + 55[Wall] + 56[Wall] + 57[Wall] + 58[Wall] + 59[Wall] + 60[Wall] + 61["Cap Start"] + 62["Cap Start"] + 63["Cap End"] + 64["Cap End"] + 65["SweepEdge Opposite"] + 66["SweepEdge Opposite"] + 67["SweepEdge Opposite"] + 68["SweepEdge Opposite"] + 69["SweepEdge Opposite"] + 70["SweepEdge Opposite"] + 71["SweepEdge Opposite"] + 72["SweepEdge Opposite"] + 73["SweepEdge Opposite"] + 74["SweepEdge Opposite"] + 75["SweepEdge Opposite"] + 76["SweepEdge Opposite"] + 77["SweepEdge Opposite"] + 78["SweepEdge Opposite"] + 79["SweepEdge Opposite"] + 80["SweepEdge Opposite"] + 81["SweepEdge Opposite"] + 82["SweepEdge Opposite"] + 83["SweepEdge Opposite"] + 84["SweepEdge Opposite"] + 85["SweepEdge Opposite"] + 86["SweepEdge Opposite"] + 87["SweepEdge Opposite"] + 88["SweepEdge Opposite"] + 89["SweepEdge Opposite"] + 90["SweepEdge Opposite"] + 91["SweepEdge Adjacent"] 92["SweepEdge Adjacent"] - 93["SweepEdge Opposite"] + 93["SweepEdge Adjacent"] 94["SweepEdge Adjacent"] - 95["SweepEdge Opposite"] + 95["SweepEdge Adjacent"] 96["SweepEdge Adjacent"] - 97["SweepEdge Opposite"] + 97["SweepEdge Adjacent"] 98["SweepEdge Adjacent"] - 99["SweepEdge Opposite"] + 99["SweepEdge Adjacent"] 100["SweepEdge Adjacent"] - 101["SweepEdge Opposite"] + 101["SweepEdge Adjacent"] 102["SweepEdge Adjacent"] - 103["SweepEdge Opposite"] + 103["SweepEdge Adjacent"] 104["SweepEdge Adjacent"] - 105["SweepEdge Opposite"] + 105["SweepEdge Adjacent"] 106["SweepEdge Adjacent"] - 107["SweepEdge Opposite"] + 107["SweepEdge Adjacent"] 108["SweepEdge Adjacent"] - 109["SweepEdge Opposite"] + 109["SweepEdge Adjacent"] 110["SweepEdge Adjacent"] - 111["SweepEdge Opposite"] + 111["SweepEdge Adjacent"] 112["SweepEdge Adjacent"] - 113["SweepEdge Opposite"] + 113["SweepEdge Adjacent"] 114["SweepEdge Adjacent"] - 115["SweepEdge Opposite"] + 115["SweepEdge Adjacent"] 116["SweepEdge Adjacent"] - 1 --- 2 - 2 --- 3 + 1 --- 3 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 --- 8 - 2 --- 9 - 2 --- 10 - 2 --- 11 - 2 --- 12 - 2 --- 13 - 2 --- 14 - 2 --- 15 - 2 ---- 17 - 2 --- 16 - 3 --- 18 - 3 --- 33 - 3 --- 34 - 3 x--> 31 + 3 --- 5 + 3 --- 6 + 3 --- 7 + 3 --- 8 + 3 --- 9 + 3 --- 10 + 3 --- 11 + 3 --- 12 + 3 --- 13 + 3 --- 14 + 3 --- 15 + 3 --- 16 + 3 --- 17 + 3 --- 32 + 3 ---- 33 + 4 --- 18 4 --- 19 - 4 --- 35 - 4 --- 36 - 4 x--> 31 - 5 --- 20 - 5 --- 37 - 5 --- 38 - 5 x--> 31 - 6 --- 21 - 6 --- 39 + 4 --- 20 + 4 --- 21 + 4 --- 22 + 4 --- 23 + 4 --- 24 + 4 --- 25 + 4 --- 26 + 4 --- 27 + 4 --- 28 + 4 --- 29 + 4 --- 30 + 4 --- 31 + 4 ---- 34 + 5 --- 41 + 5 x--> 61 + 5 --- 76 + 5 --- 94 6 --- 40 - 6 x--> 31 - 7 --- 22 - 7 --- 41 + 6 x--> 61 + 6 --- 69 + 6 --- 98 7 --- 42 - 7 x--> 31 - 8 --- 23 - 8 --- 43 - 8 --- 44 - 8 x--> 31 - 9 --- 24 - 9 --- 45 - 9 --- 46 - 9 x--> 31 - 10 --- 25 - 10 --- 47 - 10 --- 48 - 10 x--> 31 - 11 --- 26 - 11 --- 49 - 11 --- 50 - 11 x--> 31 - 12 --- 27 - 12 --- 51 - 12 --- 52 - 12 x--> 31 - 13 --- 28 - 13 --- 53 - 13 --- 54 - 13 x--> 31 - 14 --- 29 - 14 --- 55 - 14 --- 56 - 14 x--> 31 - 15 --- 30 - 15 --- 57 - 15 --- 58 - 15 x--> 31 - 17 --- 18 - 17 --- 19 - 17 --- 20 - 17 --- 21 - 17 --- 22 - 17 --- 23 - 17 --- 24 - 17 --- 25 - 17 --- 26 - 17 --- 27 - 17 --- 28 - 17 --- 29 - 17 --- 30 - 17 --- 31 - 17 --- 32 - 17 --- 33 - 17 --- 34 - 17 --- 35 - 17 --- 36 - 17 --- 37 - 17 --- 38 + 7 x--> 61 + 7 --- 75 + 7 --- 93 + 8 --- 38 + 8 x--> 61 + 8 --- 70 + 8 --- 95 + 9 --- 37 + 9 x--> 61 + 9 --- 68 + 9 --- 101 + 10 --- 44 + 10 x--> 61 + 10 --- 74 + 10 --- 100 + 11 --- 46 + 11 x--> 61 + 11 --- 66 + 11 --- 97 + 12 --- 45 + 12 x--> 61 + 12 --- 73 + 12 --- 103 + 13 --- 35 + 13 x--> 61 + 13 --- 71 + 13 --- 102 + 14 --- 36 + 14 x--> 61 + 14 --- 72 + 14 --- 91 + 15 --- 47 + 15 x--> 61 + 15 --- 65 + 15 --- 99 + 16 --- 43 + 16 x--> 61 + 16 --- 77 + 16 --- 92 17 --- 39 - 17 --- 40 - 17 --- 41 - 17 --- 42 - 17 --- 43 - 17 --- 44 - 17 --- 45 - 17 --- 46 - 17 --- 47 - 17 --- 48 - 17 --- 49 - 17 --- 50 - 17 --- 51 - 17 --- 52 - 17 --- 53 - 17 --- 54 - 17 --- 55 - 17 --- 56 - 17 --- 57 - 17 --- 58 - 33 <--x 18 - 33 <--x 32 - 34 <--x 18 - 34 <--x 19 - 35 <--x 19 - 35 <--x 32 - 36 <--x 19 - 36 <--x 20 - 37 <--x 20 - 37 <--x 32 - 38 <--x 20 - 38 <--x 21 - 39 <--x 21 - 39 <--x 32 - 40 <--x 21 - 40 <--x 22 - 41 <--x 22 - 41 <--x 32 - 42 <--x 22 - 42 <--x 23 - 43 <--x 23 - 43 <--x 32 - 44 <--x 23 - 44 <--x 24 - 45 <--x 24 - 45 <--x 32 - 46 <--x 24 - 46 <--x 25 - 47 <--x 25 - 47 <--x 32 - 48 <--x 25 - 48 <--x 26 - 49 <--x 26 - 49 <--x 32 - 50 <--x 26 - 50 <--x 27 - 51 <--x 27 - 51 <--x 32 - 52 <--x 27 - 52 <--x 28 - 53 <--x 28 - 53 <--x 32 - 54 <--x 28 - 54 <--x 29 - 55 <--x 29 - 55 <--x 32 - 56 <--x 29 - 56 <--x 30 - 57 <--x 30 - 57 <--x 32 - 58 <--x 30 - 58 <--x 18 - 59 --- 60 - 60 --- 61 - 60 --- 62 - 60 --- 63 - 60 --- 64 - 60 --- 65 - 60 --- 66 - 60 --- 67 - 60 --- 68 - 60 --- 69 - 60 --- 70 - 60 --- 71 - 60 --- 72 - 60 --- 73 - 60 ---- 75 - 60 --- 74 - 61 --- 76 - 61 --- 91 - 61 --- 92 - 61 x--> 89 - 62 --- 77 - 62 --- 93 - 62 --- 94 - 62 x--> 89 - 63 --- 78 - 63 --- 95 - 63 --- 96 - 63 x--> 89 - 64 --- 79 - 64 --- 97 - 64 --- 98 - 64 x--> 89 - 65 --- 80 - 65 --- 99 - 65 --- 100 - 65 x--> 89 - 66 --- 81 - 66 --- 101 - 66 --- 102 - 66 x--> 89 - 67 --- 82 - 67 --- 103 - 67 --- 104 - 67 x--> 89 - 68 --- 83 - 68 --- 105 - 68 --- 106 - 68 x--> 89 - 69 --- 84 - 69 --- 107 - 69 --- 108 - 69 x--> 89 - 70 --- 85 - 70 --- 109 - 70 --- 110 - 70 x--> 89 - 71 --- 86 - 71 --- 111 - 71 --- 112 - 71 x--> 89 - 72 --- 87 - 72 --- 113 - 72 --- 114 - 72 x--> 89 - 73 --- 88 - 73 --- 115 - 73 --- 116 - 73 x--> 89 - 75 --- 76 - 75 --- 77 - 75 --- 78 - 75 --- 79 - 75 --- 80 - 75 --- 81 - 75 --- 82 - 75 --- 83 - 75 --- 84 - 75 --- 85 - 75 --- 86 - 75 --- 87 - 75 --- 88 - 75 --- 89 - 75 --- 90 - 75 --- 91 - 75 --- 92 - 75 --- 93 - 75 --- 94 - 75 --- 95 - 75 --- 96 - 75 --- 97 - 75 --- 98 - 75 --- 99 - 75 --- 100 - 75 --- 101 - 75 --- 102 - 75 --- 103 - 75 --- 104 - 75 --- 105 - 75 --- 106 - 75 --- 107 - 75 --- 108 - 75 --- 109 - 75 --- 110 - 75 --- 111 - 75 --- 112 - 75 --- 113 - 75 --- 114 - 75 --- 115 - 75 --- 116 - 91 <--x 76 - 91 <--x 90 - 92 <--x 76 - 92 <--x 77 - 93 <--x 77 - 93 <--x 90 - 94 <--x 77 - 94 <--x 78 - 95 <--x 78 - 95 <--x 90 - 96 <--x 78 - 96 <--x 79 - 97 <--x 79 - 97 <--x 90 - 98 <--x 79 - 98 <--x 80 - 99 <--x 80 - 99 <--x 90 - 100 <--x 80 - 100 <--x 81 - 101 <--x 81 - 101 <--x 90 - 102 <--x 81 - 102 <--x 82 - 103 <--x 82 - 103 <--x 90 - 104 <--x 82 - 104 <--x 83 - 105 <--x 83 - 105 <--x 90 - 106 <--x 83 - 106 <--x 84 - 107 <--x 84 - 107 <--x 90 - 108 <--x 84 - 108 <--x 85 - 109 <--x 85 - 109 <--x 90 - 110 <--x 85 - 110 <--x 86 - 111 <--x 86 - 111 <--x 90 - 112 <--x 86 - 112 <--x 87 - 113 <--x 87 - 113 <--x 90 - 114 <--x 87 - 114 <--x 88 - 115 <--x 88 - 115 <--x 90 - 116 <--x 76 - 116 <--x 88 + 17 x--> 61 + 17 --- 67 + 17 --- 96 + 18 --- 55 + 18 x--> 62 + 18 --- 88 + 18 --- 114 + 19 --- 54 + 19 x--> 62 + 19 --- 85 + 19 --- 113 + 20 --- 50 + 20 x--> 62 + 20 --- 89 + 20 --- 106 + 21 --- 51 + 21 x--> 62 + 21 --- 79 + 21 --- 110 + 22 --- 49 + 22 x--> 62 + 22 --- 83 + 22 --- 107 + 23 --- 59 + 23 x--> 62 + 23 --- 84 + 23 --- 108 + 24 --- 52 + 24 x--> 62 + 24 --- 90 + 24 --- 104 + 25 --- 58 + 25 x--> 62 + 25 --- 81 + 25 --- 116 + 26 --- 60 + 26 x--> 62 + 26 --- 80 + 26 --- 109 + 27 --- 56 + 27 x--> 62 + 27 --- 82 + 27 --- 115 + 28 --- 48 + 28 x--> 62 + 28 --- 78 + 28 --- 111 + 29 --- 53 + 29 x--> 62 + 29 --- 86 + 29 --- 105 + 30 --- 57 + 30 x--> 62 + 30 --- 87 + 30 --- 112 + 33 --- 35 + 33 --- 36 + 33 --- 37 + 33 --- 38 + 33 --- 39 + 33 --- 40 + 33 --- 41 + 33 --- 42 + 33 --- 43 + 33 --- 44 + 33 --- 45 + 33 --- 46 + 33 --- 47 + 33 --- 61 + 33 --- 63 + 33 --- 65 + 33 --- 66 + 33 --- 67 + 33 --- 68 + 33 --- 69 + 33 --- 70 + 33 --- 71 + 33 --- 72 + 33 --- 73 + 33 --- 74 + 33 --- 75 + 33 --- 76 + 33 --- 77 + 33 --- 91 + 33 --- 92 + 33 --- 93 + 33 --- 94 + 33 --- 95 + 33 --- 96 + 33 --- 97 + 33 --- 98 + 33 --- 99 + 33 --- 100 + 33 --- 101 + 33 --- 102 + 33 --- 103 + 34 --- 48 + 34 --- 49 + 34 --- 50 + 34 --- 51 + 34 --- 52 + 34 --- 53 + 34 --- 54 + 34 --- 55 + 34 --- 56 + 34 --- 57 + 34 --- 58 + 34 --- 59 + 34 --- 60 + 34 --- 62 + 34 --- 64 + 34 --- 78 + 34 --- 79 + 34 --- 80 + 34 --- 81 + 34 --- 82 + 34 --- 83 + 34 --- 84 + 34 --- 85 + 34 --- 86 + 34 --- 87 + 34 --- 88 + 34 --- 89 + 34 --- 90 + 34 --- 104 + 34 --- 105 + 34 --- 106 + 34 --- 107 + 34 --- 108 + 34 --- 109 + 34 --- 110 + 34 --- 111 + 34 --- 112 + 34 --- 113 + 34 --- 114 + 34 --- 115 + 34 --- 116 + 71 <--x 35 + 102 <--x 35 + 103 <--x 35 + 72 <--x 36 + 91 <--x 36 + 102 <--x 36 + 68 <--x 37 + 95 <--x 37 + 101 <--x 37 + 70 <--x 38 + 93 <--x 38 + 95 <--x 38 + 67 <--x 39 + 92 <--x 39 + 96 <--x 39 + 69 <--x 40 + 94 <--x 40 + 98 <--x 40 + 76 <--x 41 + 94 <--x 41 + 96 <--x 41 + 75 <--x 42 + 93 <--x 42 + 98 <--x 42 + 77 <--x 43 + 92 <--x 43 + 99 <--x 43 + 74 <--x 44 + 100 <--x 44 + 101 <--x 44 + 73 <--x 45 + 97 <--x 45 + 103 <--x 45 + 66 <--x 46 + 97 <--x 46 + 100 <--x 46 + 65 <--x 47 + 91 <--x 47 + 99 <--x 47 + 78 <--x 48 + 111 <--x 48 + 115 <--x 48 + 83 <--x 49 + 107 <--x 49 + 110 <--x 49 + 89 <--x 50 + 106 <--x 50 + 113 <--x 50 + 79 <--x 51 + 106 <--x 51 + 110 <--x 51 + 90 <--x 52 + 104 <--x 52 + 108 <--x 52 + 86 <--x 53 + 105 <--x 53 + 111 <--x 53 + 85 <--x 54 + 113 <--x 54 + 114 <--x 54 + 88 <--x 55 + 112 <--x 55 + 114 <--x 55 + 82 <--x 56 + 109 <--x 56 + 115 <--x 56 + 87 <--x 57 + 105 <--x 57 + 112 <--x 57 + 81 <--x 58 + 104 <--x 58 + 116 <--x 58 + 84 <--x 59 + 107 <--x 59 + 108 <--x 59 + 80 <--x 60 + 109 <--x 60 + 116 <--x 60 + 65 <--x 63 + 66 <--x 63 + 67 <--x 63 + 68 <--x 63 + 69 <--x 63 + 70 <--x 63 + 71 <--x 63 + 72 <--x 63 + 73 <--x 63 + 74 <--x 63 + 75 <--x 63 + 76 <--x 63 + 77 <--x 63 + 78 <--x 64 + 79 <--x 64 + 80 <--x 64 + 81 <--x 64 + 82 <--x 64 + 83 <--x 64 + 84 <--x 64 + 85 <--x 64 + 86 <--x 64 + 87 <--x 64 + 88 <--x 64 + 89 <--x 64 + 90 <--x 64 ``` diff --git a/rust/kcl-lib/tests/revolve_about_edge/artifact_commands.snap b/rust/kcl-lib/tests/revolve_about_edge/artifact_commands.snap index 4c9f9d14c..5ef0bd956 100644 --- a/rust/kcl-lib/tests/revolve_about_edge/artifact_commands.snap +++ b/rust/kcl-lib/tests/revolve_about_edge/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands revolve_about_edge.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands revolve_about_edge.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -139,6 +139,14 @@ description: Artifact commands revolve_about_edge.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -155,33 +163,6 @@ description: Artifact commands revolve_about_edge.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -40.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -211,8 +192,35 @@ description: Artifact commands revolve_about_edge.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -40.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -234,8 +242,27 @@ description: Artifact commands revolve_about_edge.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -247,34 +274,6 @@ description: Artifact commands revolve_about_edge.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -289,9 +288,10 @@ description: Artifact commands revolve_about_edge.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } } ] diff --git a/rust/kcl-lib/tests/revolve_about_edge/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/revolve_about_edge/artifact_graph_flowchart.snap.md index 73462beae..b69900c65 100644 --- a/rust/kcl-lib/tests/revolve_about_edge/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/revolve_about_edge/artifact_graph_flowchart.snap.md @@ -1,38 +1,38 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[37, 65, 0]"] - 3["Segment
[71, 119, 0]"] + subgraph path3 [Path] + 3["Path
[37, 65, 0]"] + 5["Segment
[71, 119, 0]"] end - subgraph path5 [Path] - 5["Path
[157, 195, 0]"] + subgraph path4 [Path] + 4["Path
[157, 195, 0]"] 6["Segment
[157, 195, 0]"] 7[Solid2d] end 1["Plane
[12, 31, 0]"] - 4["Plane
[132, 151, 0]"] + 2["Plane
[132, 151, 0]"] 8["Sweep RevolveAboutEdge
[201, 249, 0]"] 9[Wall] 10["Cap Start"] 11["Cap End"] 12["SweepEdge Opposite"] 13["SweepEdge Adjacent"] - 1 --- 2 - 2 --- 3 - 4 --- 5 - 5 --- 6 - 5 ---- 8 - 5 --- 7 + 1 --- 3 + 2 --- 4 + 3 --- 5 + 4 --- 6 + 4 --- 7 + 4 ---- 8 6 --- 9 + 6 x--> 10 6 --- 12 6 --- 13 - 6 x--> 10 8 --- 9 8 --- 10 8 --- 11 8 --- 12 8 --- 13 12 <--x 9 - 12 <--x 11 13 <--x 9 + 12 <--x 11 ``` diff --git a/rust/kcl-lib/tests/riddle_small/artifact_commands.snap b/rust/kcl-lib/tests/riddle_small/artifact_commands.snap index 2667cb201..40990f8af 100644 --- a/rust/kcl-lib/tests/riddle_small/artifact_commands.snap +++ b/rust/kcl-lib/tests/riddle_small/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands riddle_small.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands riddle_small.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands riddle_small.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands riddle_small.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands riddle_small.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands riddle_small.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands riddle_small.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +375,6 @@ description: Artifact commands riddle_small.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,28 +389,10 @@ description: Artifact commands riddle_small.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/riddle_small/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/riddle_small/artifact_graph_flowchart.snap.md index c95b87462..926e5481a 100644 --- a/rust/kcl-lib/tests/riddle_small/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/riddle_small/artifact_graph_flowchart.snap.md @@ -17,36 +17,36 @@ flowchart LR 13["Cap Start"] 14["Cap End"] 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] + 16["SweepEdge Opposite"] 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] + 18["SweepEdge Opposite"] + 19["SweepEdge Adjacent"] 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] + 21["SweepEdge Adjacent"] 22["SweepEdge Adjacent"] 1 --- 2 2 --- 3 2 --- 4 2 --- 5 2 --- 6 - 2 ---- 8 2 --- 7 + 2 ---- 8 3 --- 12 - 3 --- 21 - 3 --- 22 3 x--> 13 - 4 --- 11 - 4 --- 19 - 4 --- 20 + 3 --- 17 + 3 --- 20 + 4 --- 10 4 x--> 13 - 5 --- 10 - 5 --- 17 - 5 --- 18 + 4 --- 18 + 4 --- 21 + 5 --- 9 5 x--> 13 - 6 --- 9 - 6 --- 15 - 6 --- 16 + 5 --- 15 + 5 --- 22 + 6 --- 11 6 x--> 13 + 6 --- 16 + 6 --- 19 8 --- 9 8 --- 10 8 --- 11 @@ -62,19 +62,19 @@ flowchart LR 8 --- 21 8 --- 22 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 12 - 17 <--x 10 - 17 <--x 14 - 18 <--x 9 + 21 <--x 9 + 22 <--x 9 18 <--x 10 - 19 <--x 11 - 19 <--x 14 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 14 + 21 <--x 10 + 16 <--x 11 + 19 <--x 11 22 <--x 11 - 22 <--x 12 + 17 <--x 12 + 19 <--x 12 + 20 <--x 12 + 15 <--x 14 + 16 <--x 14 + 17 <--x 14 + 18 <--x 14 ``` diff --git a/rust/kcl-lib/tests/riddle_small/ops.snap b/rust/kcl-lib/tests/riddle_small/ops.snap index 93c84116a..830902086 100644 --- a/rust/kcl-lib/tests/riddle_small/ops.snap +++ b/rust/kcl-lib/tests/riddle_small/ops.snap @@ -14,9 +14,6 @@ description: Operations executed riddle_small.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "type": "GroupBegin", "group": { @@ -28,9 +25,6 @@ description: Operations executed riddle_small.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "planeOrSolid": { @@ -77,5 +71,11 @@ description: Operations executed riddle_small.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/rotate_after_fillet/artifact_commands.snap b/rust/kcl-lib/tests/rotate_after_fillet/artifact_commands.snap index 708f85818..74d13564b 100644 --- a/rust/kcl-lib/tests/rotate_after_fillet/artifact_commands.snap +++ b/rust/kcl-lib/tests/rotate_after_fillet/artifact_commands.snap @@ -54,6 +54,14 @@ description: Artifact commands rotate_after_fillet.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -70,33 +78,6 @@ description: Artifact commands rotate_after_fillet.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.469, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -126,8 +107,27 @@ description: Artifact commands rotate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.469, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -157,13 +157,6 @@ description: Artifact commands rotate_after_fillet.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -172,6 +165,40 @@ description: Artifact commands rotate_after_fillet.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -181,34 +208,6 @@ description: Artifact commands rotate_after_fillet.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -219,15 +218,6 @@ description: Artifact commands rotate_after_fillet.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -266,19 +256,22 @@ description: Artifact commands rotate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -301,6 +294,13 @@ description: Artifact commands rotate_after_fillet.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -417,6 +417,14 @@ description: Artifact commands rotate_after_fillet.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -428,8 +436,162 @@ description: Artifact commands rotate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -445,30 +607,12 @@ description: Artifact commands rotate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -483,39 +627,12 @@ description: Artifact commands rotate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -530,39 +647,12 @@ description: Artifact commands rotate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -577,18 +667,10 @@ description: Artifact commands rotate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -605,39 +687,12 @@ description: Artifact commands rotate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -652,39 +707,12 @@ description: Artifact commands rotate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -699,28 +727,8 @@ description: Artifact commands rotate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -735,33 +743,6 @@ description: Artifact commands rotate_after_fillet.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.3125, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -791,8 +772,27 @@ description: Artifact commands rotate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.3125, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -818,13 +818,6 @@ description: Artifact commands rotate_after_fillet.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -833,6 +826,40 @@ description: Artifact commands rotate_after_fillet.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -842,34 +869,6 @@ description: Artifact commands rotate_after_fillet.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -884,9 +883,22 @@ description: Artifact commands rotate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 0.02, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { @@ -916,18 +928,6 @@ description: Artifact commands rotate_after_fillet.kcl "ambient_occlusion": 0.0 } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 0.02, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, { "cmdId": "[uuid]", "range": [], diff --git a/rust/kcl-lib/tests/rotate_after_fillet/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/rotate_after_fillet/artifact_graph_flowchart.snap.md index ddf9b7247..c6abbf566 100644 --- a/rust/kcl-lib/tests/rotate_after_fillet/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/rotate_after_fillet/artifact_graph_flowchart.snap.md @@ -1,168 +1,168 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[337, 407, 0]"] - 3["Segment
[337, 407, 0]"] - 4[Solid2d] + subgraph path4 [Path] + 4["Path
[337, 407, 0]"] + 7["Segment
[337, 407, 0]"] + 16[Solid2d] end - subgraph path13 [Path] - 13["Path
[652, 712, 0]"] - 14["Segment
[720, 799, 0]"] - 15["Segment
[807, 886, 0]"] - 16["Segment
[894, 973, 0]"] - 17["Segment
[981, 1059, 0]"] - 18["Segment
[1067, 1145, 0]"] - 19["Segment
[1153, 1160, 0]"] - 20[Solid2d] + subgraph path5 [Path] + 5["Path
[652, 712, 0]"] + 8["Segment
[720, 799, 0]"] + 9["Segment
[807, 886, 0]"] + 10["Segment
[894, 973, 0]"] + 11["Segment
[981, 1059, 0]"] + 12["Segment
[1067, 1145, 0]"] + 13["Segment
[1153, 1160, 0]"] + 15[Solid2d] end - subgraph path41 [Path] - 41["Path
[1268, 1337, 0]"] - 42["Segment
[1268, 1337, 0]"] - 43[Solid2d] + subgraph path6 [Path] + 6["Path
[1268, 1337, 0]"] + 14["Segment
[1268, 1337, 0]"] + 17[Solid2d] end 1["Plane
[312, 329, 0]"] - 5["Sweep Extrusion
[415, 448, 0]"] - 6[Wall] - 7["Cap Start"] - 8["Cap End"] - 9["SweepEdge Opposite"] - 10["SweepEdge Adjacent"] - 11["EdgeCut Fillet
[456, 522, 0]"] - 12["EdgeCut Fillet
[456, 522, 0]"] - 21["Sweep Extrusion
[1168, 1208, 0]"] + 2["StartSketchOnFace
[605, 644, 0]"] + 3["StartSketchOnFace
[1223, 1260, 0]"] + 18["Sweep Extrusion
[415, 448, 0]"] + 19["Sweep Extrusion
[1168, 1208, 0]"] + 20["Sweep Extrusion
[1345, 1373, 0]"] + 21[Wall] 22[Wall] 23[Wall] 24[Wall] 25[Wall] 26[Wall] 27[Wall] - 28["Cap Start"] - 29["SweepEdge Opposite"] - 30["SweepEdge Adjacent"] - 31["SweepEdge Opposite"] - 32["SweepEdge Adjacent"] + 28[Wall] + 29["Cap Start"] + 30["Cap Start"] + 31["Cap End"] + 32["Cap End"] 33["SweepEdge Opposite"] - 34["SweepEdge Adjacent"] + 34["SweepEdge Opposite"] 35["SweepEdge Opposite"] - 36["SweepEdge Adjacent"] + 36["SweepEdge Opposite"] 37["SweepEdge Opposite"] - 38["SweepEdge Adjacent"] + 38["SweepEdge Opposite"] 39["SweepEdge Opposite"] - 40["SweepEdge Adjacent"] - 44["Sweep Extrusion
[1345, 1373, 0]"] - 45[Wall] - 46["Cap End"] - 47["SweepEdge Opposite"] + 40["SweepEdge Opposite"] + 41["SweepEdge Adjacent"] + 42["SweepEdge Adjacent"] + 43["SweepEdge Adjacent"] + 44["SweepEdge Adjacent"] + 45["SweepEdge Adjacent"] + 46["SweepEdge Adjacent"] + 47["SweepEdge Adjacent"] 48["SweepEdge Adjacent"] - 49["EdgeCut Fillet
[1381, 1440, 0]"] - 50["StartSketchOnFace
[605, 644, 0]"] - 51["StartSketchOnFace
[1223, 1260, 0]"] - 1 --- 2 - 2 --- 3 - 2 ---- 5 - 2 --- 4 - 3 --- 6 - 3 --- 9 - 3 --- 10 - 3 --- 11 - 3 x--> 8 - 5 --- 6 - 5 --- 7 + 49["EdgeCut Fillet
[456, 522, 0]"] + 50["EdgeCut Fillet
[456, 522, 0]"] + 51["EdgeCut Fillet
[1381, 1440, 0]"] + 1 --- 4 + 30 x--> 2 + 32 x--> 3 + 4 --- 7 + 4 --- 16 + 4 ---- 18 5 --- 8 5 --- 9 5 --- 10 - 7 --- 13 - 8 --- 41 - 10 <--x 6 - 9 <--x 12 - 13 --- 14 - 13 --- 15 - 13 --- 16 - 13 --- 17 - 13 --- 18 - 13 --- 19 - 13 ---- 21 - 13 --- 20 - 14 --- 27 - 14 --- 39 - 14 --- 40 - 14 <--x 7 - 15 --- 26 - 15 --- 37 - 15 --- 38 - 15 <--x 7 - 16 --- 25 - 16 --- 35 - 16 --- 36 - 16 <--x 7 - 17 --- 24 - 17 --- 33 - 17 --- 34 - 17 <--x 7 - 18 --- 23 - 18 --- 31 + 5 --- 11 + 5 --- 12 + 5 --- 13 + 5 --- 15 + 5 ---- 19 + 30 --- 5 + 6 --- 14 + 6 --- 17 + 6 ---- 20 + 32 --- 6 + 7 --- 28 + 7 x--> 32 + 7 --- 40 + 7 --- 48 + 7 --- 49 + 8 --- 26 + 8 x--> 30 + 8 --- 36 + 8 --- 43 + 9 --- 27 + 9 x--> 30 + 9 --- 34 + 9 --- 45 + 10 --- 24 + 10 x--> 30 + 10 --- 38 + 10 --- 47 + 11 --- 25 + 11 x--> 30 + 11 --- 39 + 11 --- 42 + 12 --- 23 + 12 x--> 30 + 12 --- 37 + 12 --- 46 + 13 --- 22 + 13 x--> 30 + 13 --- 35 + 13 --- 44 + 14 --- 21 + 14 x--> 32 + 14 --- 33 + 14 --- 41 + 18 --- 28 + 18 --- 30 18 --- 32 - 18 <--x 7 + 18 --- 40 + 18 --- 48 19 --- 22 + 19 --- 23 + 19 --- 24 + 19 --- 25 + 19 --- 26 + 19 --- 27 19 --- 29 - 19 --- 30 - 19 <--x 7 - 21 --- 22 - 21 --- 23 - 21 --- 24 - 21 --- 25 - 21 --- 26 - 21 --- 27 - 21 --- 28 - 21 --- 29 - 21 --- 30 - 21 --- 31 - 21 --- 32 - 21 --- 33 - 21 --- 34 - 21 --- 35 - 21 --- 36 - 21 --- 37 - 21 --- 38 - 21 --- 39 - 21 --- 40 - 29 <--x 22 - 29 <--x 28 - 30 <--x 22 - 30 <--x 27 - 31 <--x 23 - 31 <--x 28 - 32 <--x 22 - 32 <--x 23 - 33 <--x 24 - 33 <--x 28 - 34 <--x 23 - 34 <--x 24 - 35 <--x 25 - 35 <--x 28 - 36 <--x 24 - 36 <--x 25 - 37 <--x 26 - 37 <--x 28 - 38 <--x 25 - 38 <--x 26 - 39 <--x 27 - 39 <--x 28 - 40 <--x 26 - 40 <--x 27 - 41 --- 42 - 41 ---- 44 - 41 --- 43 - 42 --- 45 - 42 --- 47 - 42 --- 48 - 42 <--x 8 - 44 --- 45 - 44 --- 46 - 44 --- 47 - 44 --- 48 - 48 <--x 45 - 47 <--x 49 - 7 <--x 50 - 8 <--x 51 + 19 --- 34 + 19 --- 35 + 19 --- 36 + 19 --- 37 + 19 --- 38 + 19 --- 39 + 19 --- 42 + 19 --- 43 + 19 --- 44 + 19 --- 45 + 19 --- 46 + 19 --- 47 + 20 --- 21 + 20 --- 31 + 20 --- 33 + 20 --- 41 + 41 <--x 21 + 35 <--x 22 + 44 <--x 22 + 46 <--x 22 + 37 <--x 23 + 42 <--x 23 + 46 <--x 23 + 38 <--x 24 + 45 <--x 24 + 47 <--x 24 + 39 <--x 25 + 42 <--x 25 + 47 <--x 25 + 36 <--x 26 + 43 <--x 26 + 44 <--x 26 + 34 <--x 27 + 43 <--x 27 + 45 <--x 27 + 48 <--x 28 + 34 <--x 29 + 35 <--x 29 + 36 <--x 29 + 37 <--x 29 + 38 <--x 29 + 39 <--x 29 + 33 <--x 51 + 40 <--x 50 ``` diff --git a/rust/kcl-lib/tests/rotate_after_fillet/ops.snap b/rust/kcl-lib/tests/rotate_after_fillet/ops.snap index ec68ed8f6..a5bcaf921 100644 --- a/rust/kcl-lib/tests/rotate_after_fillet/ops.snap +++ b/rust/kcl-lib/tests/rotate_after_fillet/ops.snap @@ -14,20 +14,6 @@ description: Operations executed rotate_after_fillet.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "bolt", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -278,6 +264,20 @@ description: Operations executed rotate_after_fillet.kcl }, "sourceRange": [] }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "bolt", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupEnd" + }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/scale_after_fillet/artifact_commands.snap b/rust/kcl-lib/tests/scale_after_fillet/artifact_commands.snap index 27cc53ed1..805d7808a 100644 --- a/rust/kcl-lib/tests/scale_after_fillet/artifact_commands.snap +++ b/rust/kcl-lib/tests/scale_after_fillet/artifact_commands.snap @@ -54,6 +54,14 @@ description: Artifact commands scale_after_fillet.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -70,33 +78,6 @@ description: Artifact commands scale_after_fillet.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.469, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -126,8 +107,27 @@ description: Artifact commands scale_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.469, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -157,13 +157,6 @@ description: Artifact commands scale_after_fillet.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -172,6 +165,40 @@ description: Artifact commands scale_after_fillet.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -181,34 +208,6 @@ description: Artifact commands scale_after_fillet.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -219,15 +218,6 @@ description: Artifact commands scale_after_fillet.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -266,19 +256,22 @@ description: Artifact commands scale_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -301,6 +294,13 @@ description: Artifact commands scale_after_fillet.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -417,6 +417,14 @@ description: Artifact commands scale_after_fillet.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -428,8 +436,162 @@ description: Artifact commands scale_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -445,30 +607,12 @@ description: Artifact commands scale_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -483,39 +627,12 @@ description: Artifact commands scale_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -530,39 +647,12 @@ description: Artifact commands scale_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -577,18 +667,10 @@ description: Artifact commands scale_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -605,39 +687,12 @@ description: Artifact commands scale_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -652,39 +707,12 @@ description: Artifact commands scale_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -699,28 +727,8 @@ description: Artifact commands scale_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -735,33 +743,6 @@ description: Artifact commands scale_after_fillet.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.3125, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -791,8 +772,27 @@ description: Artifact commands scale_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.3125, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -818,13 +818,6 @@ description: Artifact commands scale_after_fillet.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -833,6 +826,40 @@ description: Artifact commands scale_after_fillet.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -842,34 +869,6 @@ description: Artifact commands scale_after_fillet.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -884,9 +883,22 @@ description: Artifact commands scale_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 0.02, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { @@ -916,18 +928,6 @@ description: Artifact commands scale_after_fillet.kcl "ambient_occlusion": 0.0 } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 0.02, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, { "cmdId": "[uuid]", "range": [], diff --git a/rust/kcl-lib/tests/scale_after_fillet/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/scale_after_fillet/artifact_graph_flowchart.snap.md index ddf9b7247..c6abbf566 100644 --- a/rust/kcl-lib/tests/scale_after_fillet/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/scale_after_fillet/artifact_graph_flowchart.snap.md @@ -1,168 +1,168 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[337, 407, 0]"] - 3["Segment
[337, 407, 0]"] - 4[Solid2d] + subgraph path4 [Path] + 4["Path
[337, 407, 0]"] + 7["Segment
[337, 407, 0]"] + 16[Solid2d] end - subgraph path13 [Path] - 13["Path
[652, 712, 0]"] - 14["Segment
[720, 799, 0]"] - 15["Segment
[807, 886, 0]"] - 16["Segment
[894, 973, 0]"] - 17["Segment
[981, 1059, 0]"] - 18["Segment
[1067, 1145, 0]"] - 19["Segment
[1153, 1160, 0]"] - 20[Solid2d] + subgraph path5 [Path] + 5["Path
[652, 712, 0]"] + 8["Segment
[720, 799, 0]"] + 9["Segment
[807, 886, 0]"] + 10["Segment
[894, 973, 0]"] + 11["Segment
[981, 1059, 0]"] + 12["Segment
[1067, 1145, 0]"] + 13["Segment
[1153, 1160, 0]"] + 15[Solid2d] end - subgraph path41 [Path] - 41["Path
[1268, 1337, 0]"] - 42["Segment
[1268, 1337, 0]"] - 43[Solid2d] + subgraph path6 [Path] + 6["Path
[1268, 1337, 0]"] + 14["Segment
[1268, 1337, 0]"] + 17[Solid2d] end 1["Plane
[312, 329, 0]"] - 5["Sweep Extrusion
[415, 448, 0]"] - 6[Wall] - 7["Cap Start"] - 8["Cap End"] - 9["SweepEdge Opposite"] - 10["SweepEdge Adjacent"] - 11["EdgeCut Fillet
[456, 522, 0]"] - 12["EdgeCut Fillet
[456, 522, 0]"] - 21["Sweep Extrusion
[1168, 1208, 0]"] + 2["StartSketchOnFace
[605, 644, 0]"] + 3["StartSketchOnFace
[1223, 1260, 0]"] + 18["Sweep Extrusion
[415, 448, 0]"] + 19["Sweep Extrusion
[1168, 1208, 0]"] + 20["Sweep Extrusion
[1345, 1373, 0]"] + 21[Wall] 22[Wall] 23[Wall] 24[Wall] 25[Wall] 26[Wall] 27[Wall] - 28["Cap Start"] - 29["SweepEdge Opposite"] - 30["SweepEdge Adjacent"] - 31["SweepEdge Opposite"] - 32["SweepEdge Adjacent"] + 28[Wall] + 29["Cap Start"] + 30["Cap Start"] + 31["Cap End"] + 32["Cap End"] 33["SweepEdge Opposite"] - 34["SweepEdge Adjacent"] + 34["SweepEdge Opposite"] 35["SweepEdge Opposite"] - 36["SweepEdge Adjacent"] + 36["SweepEdge Opposite"] 37["SweepEdge Opposite"] - 38["SweepEdge Adjacent"] + 38["SweepEdge Opposite"] 39["SweepEdge Opposite"] - 40["SweepEdge Adjacent"] - 44["Sweep Extrusion
[1345, 1373, 0]"] - 45[Wall] - 46["Cap End"] - 47["SweepEdge Opposite"] + 40["SweepEdge Opposite"] + 41["SweepEdge Adjacent"] + 42["SweepEdge Adjacent"] + 43["SweepEdge Adjacent"] + 44["SweepEdge Adjacent"] + 45["SweepEdge Adjacent"] + 46["SweepEdge Adjacent"] + 47["SweepEdge Adjacent"] 48["SweepEdge Adjacent"] - 49["EdgeCut Fillet
[1381, 1440, 0]"] - 50["StartSketchOnFace
[605, 644, 0]"] - 51["StartSketchOnFace
[1223, 1260, 0]"] - 1 --- 2 - 2 --- 3 - 2 ---- 5 - 2 --- 4 - 3 --- 6 - 3 --- 9 - 3 --- 10 - 3 --- 11 - 3 x--> 8 - 5 --- 6 - 5 --- 7 + 49["EdgeCut Fillet
[456, 522, 0]"] + 50["EdgeCut Fillet
[456, 522, 0]"] + 51["EdgeCut Fillet
[1381, 1440, 0]"] + 1 --- 4 + 30 x--> 2 + 32 x--> 3 + 4 --- 7 + 4 --- 16 + 4 ---- 18 5 --- 8 5 --- 9 5 --- 10 - 7 --- 13 - 8 --- 41 - 10 <--x 6 - 9 <--x 12 - 13 --- 14 - 13 --- 15 - 13 --- 16 - 13 --- 17 - 13 --- 18 - 13 --- 19 - 13 ---- 21 - 13 --- 20 - 14 --- 27 - 14 --- 39 - 14 --- 40 - 14 <--x 7 - 15 --- 26 - 15 --- 37 - 15 --- 38 - 15 <--x 7 - 16 --- 25 - 16 --- 35 - 16 --- 36 - 16 <--x 7 - 17 --- 24 - 17 --- 33 - 17 --- 34 - 17 <--x 7 - 18 --- 23 - 18 --- 31 + 5 --- 11 + 5 --- 12 + 5 --- 13 + 5 --- 15 + 5 ---- 19 + 30 --- 5 + 6 --- 14 + 6 --- 17 + 6 ---- 20 + 32 --- 6 + 7 --- 28 + 7 x--> 32 + 7 --- 40 + 7 --- 48 + 7 --- 49 + 8 --- 26 + 8 x--> 30 + 8 --- 36 + 8 --- 43 + 9 --- 27 + 9 x--> 30 + 9 --- 34 + 9 --- 45 + 10 --- 24 + 10 x--> 30 + 10 --- 38 + 10 --- 47 + 11 --- 25 + 11 x--> 30 + 11 --- 39 + 11 --- 42 + 12 --- 23 + 12 x--> 30 + 12 --- 37 + 12 --- 46 + 13 --- 22 + 13 x--> 30 + 13 --- 35 + 13 --- 44 + 14 --- 21 + 14 x--> 32 + 14 --- 33 + 14 --- 41 + 18 --- 28 + 18 --- 30 18 --- 32 - 18 <--x 7 + 18 --- 40 + 18 --- 48 19 --- 22 + 19 --- 23 + 19 --- 24 + 19 --- 25 + 19 --- 26 + 19 --- 27 19 --- 29 - 19 --- 30 - 19 <--x 7 - 21 --- 22 - 21 --- 23 - 21 --- 24 - 21 --- 25 - 21 --- 26 - 21 --- 27 - 21 --- 28 - 21 --- 29 - 21 --- 30 - 21 --- 31 - 21 --- 32 - 21 --- 33 - 21 --- 34 - 21 --- 35 - 21 --- 36 - 21 --- 37 - 21 --- 38 - 21 --- 39 - 21 --- 40 - 29 <--x 22 - 29 <--x 28 - 30 <--x 22 - 30 <--x 27 - 31 <--x 23 - 31 <--x 28 - 32 <--x 22 - 32 <--x 23 - 33 <--x 24 - 33 <--x 28 - 34 <--x 23 - 34 <--x 24 - 35 <--x 25 - 35 <--x 28 - 36 <--x 24 - 36 <--x 25 - 37 <--x 26 - 37 <--x 28 - 38 <--x 25 - 38 <--x 26 - 39 <--x 27 - 39 <--x 28 - 40 <--x 26 - 40 <--x 27 - 41 --- 42 - 41 ---- 44 - 41 --- 43 - 42 --- 45 - 42 --- 47 - 42 --- 48 - 42 <--x 8 - 44 --- 45 - 44 --- 46 - 44 --- 47 - 44 --- 48 - 48 <--x 45 - 47 <--x 49 - 7 <--x 50 - 8 <--x 51 + 19 --- 34 + 19 --- 35 + 19 --- 36 + 19 --- 37 + 19 --- 38 + 19 --- 39 + 19 --- 42 + 19 --- 43 + 19 --- 44 + 19 --- 45 + 19 --- 46 + 19 --- 47 + 20 --- 21 + 20 --- 31 + 20 --- 33 + 20 --- 41 + 41 <--x 21 + 35 <--x 22 + 44 <--x 22 + 46 <--x 22 + 37 <--x 23 + 42 <--x 23 + 46 <--x 23 + 38 <--x 24 + 45 <--x 24 + 47 <--x 24 + 39 <--x 25 + 42 <--x 25 + 47 <--x 25 + 36 <--x 26 + 43 <--x 26 + 44 <--x 26 + 34 <--x 27 + 43 <--x 27 + 45 <--x 27 + 48 <--x 28 + 34 <--x 29 + 35 <--x 29 + 36 <--x 29 + 37 <--x 29 + 38 <--x 29 + 39 <--x 29 + 33 <--x 51 + 40 <--x 50 ``` diff --git a/rust/kcl-lib/tests/scale_after_fillet/ops.snap b/rust/kcl-lib/tests/scale_after_fillet/ops.snap index 30227c274..2d90aaa6d 100644 --- a/rust/kcl-lib/tests/scale_after_fillet/ops.snap +++ b/rust/kcl-lib/tests/scale_after_fillet/ops.snap @@ -14,20 +14,6 @@ description: Operations executed scale_after_fillet.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "bolt", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -278,6 +264,20 @@ description: Operations executed scale_after_fillet.kcl }, "sourceRange": [] }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "bolt", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupEnd" + }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/sketch-on-chamfer-two-times-different-order/artifact_commands.snap b/rust/kcl-lib/tests/sketch-on-chamfer-two-times-different-order/artifact_commands.snap index 6f8f1799c..52a322237 100644 --- a/rust/kcl-lib/tests/sketch-on-chamfer-two-times-different-order/artifact_commands.snap +++ b/rust/kcl-lib/tests/sketch-on-chamfer-two-times-different-order/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -200,6 +200,14 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -211,8 +219,108 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -228,30 +336,12 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -266,39 +356,12 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -313,18 +376,10 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -337,43 +392,6 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -384,34 +402,6 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -446,6 +436,16 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "cut_type": "chamfer" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -470,13 +470,6 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -497,6 +490,13 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -585,13 +585,6 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -612,6 +605,13 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -711,6 +711,14 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -722,8 +730,108 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -739,30 +847,12 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -777,39 +867,12 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -824,18 +887,10 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -848,43 +903,6 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -899,28 +917,10 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/sketch-on-chamfer-two-times-different-order/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch-on-chamfer-two-times-different-order/artifact_graph_flowchart.snap.md index dd299fd49..3b6a83169 100644 --- a/rust/kcl-lib/tests/sketch-on-chamfer-two-times-different-order/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/sketch-on-chamfer-two-times-different-order/artifact_graph_flowchart.snap.md @@ -1,181 +1,181 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[35, 67, 0]"] - 3["Segment
[103, 170, 0]"] - 4["Segment
[176, 260, 0]"] - 5["Segment
[266, 354, 0]"] - 6["Segment
[360, 430, 0]"] - 7["Segment
[436, 443, 0]"] - 8[Solid2d] + subgraph path6 [Path] + 6["Path
[35, 67, 0]"] + 9["Segment
[103, 170, 0]"] + 10["Segment
[176, 260, 0]"] + 11["Segment
[266, 354, 0]"] + 12["Segment
[360, 430, 0]"] + 13["Segment
[436, 443, 0]"] + 24[Solid2d] end - subgraph path27 [Path] - 27["Path
[718, 752, 0]"] - 28["Segment
[758, 824, 0]"] - 29["Segment
[830, 928, 0]"] - 30["Segment
[934, 1051, 0]"] - 31["Segment
[1057, 1113, 0]"] - 32["Segment
[1119, 1126, 0]"] - 33[Solid2d] + subgraph path7 [Path] + 7["Path
[718, 752, 0]"] + 14["Segment
[758, 824, 0]"] + 15["Segment
[830, 928, 0]"] + 16["Segment
[934, 1051, 0]"] + 17["Segment
[1057, 1113, 0]"] + 18["Segment
[1119, 1126, 0]"] + 25[Solid2d] end - subgraph path34 [Path] - 34["Path
[1184, 1219, 0]"] - 35["Segment
[1225, 1291, 0]"] - 36["Segment
[1297, 1396, 0]"] - 37["Segment
[1402, 1519, 0]"] - 38["Segment
[1525, 1581, 0]"] - 39["Segment
[1587, 1594, 0]"] - 40[Solid2d] + subgraph path8 [Path] + 8["Path
[1184, 1219, 0]"] + 19["Segment
[1225, 1291, 0]"] + 20["Segment
[1297, 1396, 0]"] + 21["Segment
[1402, 1519, 0]"] + 22["Segment
[1525, 1581, 0]"] + 23["Segment
[1587, 1594, 0]"] + 26[Solid2d] end 1["Plane
[12, 29, 0]"] - 9["Sweep Extrusion
[457, 489, 0]"] - 10[Wall] - 11[Wall] - 12[Wall] - 13[Wall] - 14["Cap Start"] - 15["Cap End"] - 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] - 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 20["SweepEdge Opposite"] - 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] - 23["SweepEdge Adjacent"] - 24["EdgeCut Fillet
[495, 530, 0]"] - 25["Plane
[1184, 1219, 0]"] - 26["Plane
[718, 752, 0]"] - 41["Sweep Extrusion
[1608, 1639, 0]"] - 42[Wall] - 43[Wall] - 44[Wall] - 45[Wall] - 46["Cap End"] + 2["Plane
[718, 752, 0]"] + 3["Plane
[1184, 1219, 0]"] + 4["StartSketchOnFace
[1139, 1178, 0]"] + 5["StartSketchOnFace
[673, 712, 0]"] + 27["Sweep Extrusion
[457, 489, 0]"] + 28["Sweep Extrusion
[1608, 1639, 0]"] + 29[Wall] + 30[Wall] + 31[Wall] + 32[Wall] + 33[Wall] + 34[Wall] + 35[Wall] + 36[Wall] + 37["Cap Start"] + 38["Cap End"] + 39["Cap End"] + 40["SweepEdge Opposite"] + 41["SweepEdge Opposite"] + 42["SweepEdge Opposite"] + 43["SweepEdge Opposite"] + 44["SweepEdge Opposite"] + 45["SweepEdge Opposite"] + 46["SweepEdge Opposite"] 47["SweepEdge Opposite"] 48["SweepEdge Adjacent"] - 49["SweepEdge Opposite"] + 49["SweepEdge Adjacent"] 50["SweepEdge Adjacent"] - 51["SweepEdge Opposite"] + 51["SweepEdge Adjacent"] 52["SweepEdge Adjacent"] - 53["SweepEdge Opposite"] + 53["SweepEdge Adjacent"] 54["SweepEdge Adjacent"] - 55["StartSketchOnFace
[673, 712, 0]"] - 56["StartSketchOnFace
[1139, 1178, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 + 55["SweepEdge Adjacent"] + 56["EdgeCut Fillet
[495, 530, 0]"] + 1 --- 6 + 2 <--x 5 2 --- 7 - 2 ---- 9 - 2 --- 8 - 3 --- 13 - 3 --- 22 - 3 --- 23 - 3 x--> 14 - 4 --- 12 - 4 --- 20 - 4 --- 21 - 4 --- 24 - 4 x--> 14 - 5 --- 11 - 5 --- 18 - 5 --- 19 - 5 x--> 14 + 12 <--x 2 + 3 <--x 4 + 3 --- 8 + 19 <--x 3 + 20 <--x 3 + 21 <--x 3 + 22 <--x 3 + 6 --- 9 6 --- 10 - 6 --- 16 - 6 --- 17 - 6 x--> 26 - 6 x--> 14 - 9 --- 10 - 9 --- 11 - 9 --- 12 - 9 --- 13 - 9 --- 14 - 9 --- 15 - 9 --- 16 - 9 --- 17 - 9 --- 18 - 9 --- 19 - 9 --- 20 - 9 --- 21 - 9 --- 22 - 9 --- 23 - 16 <--x 10 - 16 <--x 15 - 17 <--x 10 - 17 <--x 13 - 18 <--x 11 - 18 <--x 15 - 19 <--x 10 - 19 <--x 11 - 21 <--x 11 - 21 <--x 12 - 22 <--x 13 - 22 <--x 15 - 23 <--x 12 - 23 <--x 13 - 25 --- 34 - 26 --- 27 - 27 --- 28 + 6 --- 11 + 6 --- 12 + 6 --- 13 + 6 --- 24 + 6 ---- 27 + 7 --- 14 + 7 --- 15 + 7 --- 16 + 7 --- 17 + 7 --- 18 + 7 --- 25 + 8 --- 19 + 8 --- 20 + 8 --- 21 + 8 --- 22 + 8 --- 23 + 8 --- 26 + 8 ---- 28 + 9 --- 32 + 9 x--> 37 + 9 --- 42 + 9 --- 48 + 10 --- 30 + 10 x--> 37 + 10 --- 41 + 10 --- 50 + 10 --- 56 + 11 --- 29 + 11 x--> 37 + 11 --- 43 + 11 --- 49 + 12 --- 31 + 12 x--> 37 + 12 --- 40 + 12 --- 51 + 19 --- 35 + 19 --- 44 + 19 --- 52 + 20 --- 33 + 20 --- 46 + 20 --- 54 + 21 --- 34 + 21 --- 45 + 21 --- 53 + 22 --- 36 + 22 --- 47 + 22 --- 55 27 --- 29 27 --- 30 27 --- 31 27 --- 32 - 27 --- 33 - 34 --- 35 - 34 --- 36 - 34 --- 37 - 34 --- 38 - 34 --- 39 - 34 ---- 41 - 34 --- 40 - 35 --- 45 - 35 --- 53 - 35 --- 54 - 35 <--x 25 - 36 --- 44 - 36 --- 51 - 36 --- 52 - 36 <--x 25 - 37 --- 43 - 37 --- 49 - 37 --- 50 - 37 <--x 25 - 38 --- 42 - 38 --- 47 - 38 --- 48 - 38 <--x 25 - 41 --- 42 - 41 --- 43 - 41 --- 44 - 41 --- 45 - 41 --- 46 - 41 --- 47 - 41 --- 48 - 41 --- 49 - 41 --- 50 - 41 --- 51 - 41 --- 52 - 41 --- 53 - 41 --- 54 - 47 <--x 42 - 47 <--x 46 - 48 <--x 42 - 48 <--x 45 - 49 <--x 43 - 49 <--x 46 - 50 <--x 42 - 50 <--x 43 - 51 <--x 44 - 51 <--x 46 - 52 <--x 43 - 52 <--x 44 - 53 <--x 45 - 53 <--x 46 - 54 <--x 44 - 54 <--x 45 - 26 <--x 55 - 25 <--x 56 + 27 --- 37 + 27 --- 38 + 27 --- 40 + 27 --- 41 + 27 --- 42 + 27 --- 43 + 27 --- 48 + 27 --- 49 + 27 --- 50 + 27 --- 51 + 28 --- 33 + 28 --- 34 + 28 --- 35 + 28 --- 36 + 28 --- 39 + 28 --- 44 + 28 --- 45 + 28 --- 46 + 28 --- 47 + 28 --- 52 + 28 --- 53 + 28 --- 54 + 28 --- 55 + 43 <--x 29 + 49 <--x 29 + 50 <--x 29 + 48 <--x 30 + 50 <--x 30 + 40 <--x 31 + 49 <--x 31 + 51 <--x 31 + 42 <--x 32 + 48 <--x 32 + 51 <--x 32 + 46 <--x 33 + 52 <--x 33 + 54 <--x 33 + 45 <--x 34 + 53 <--x 34 + 54 <--x 34 + 44 <--x 35 + 52 <--x 35 + 55 <--x 35 + 47 <--x 36 + 53 <--x 36 + 55 <--x 36 + 40 <--x 38 + 42 <--x 38 + 43 <--x 38 + 44 <--x 39 + 45 <--x 39 + 46 <--x 39 + 47 <--x 39 ``` diff --git a/rust/kcl-lib/tests/sketch-on-chamfer-two-times/artifact_commands.snap b/rust/kcl-lib/tests/sketch-on-chamfer-two-times/artifact_commands.snap index 3e1395bb2..fe0dea41a 100644 --- a/rust/kcl-lib/tests/sketch-on-chamfer-two-times/artifact_commands.snap +++ b/rust/kcl-lib/tests/sketch-on-chamfer-two-times/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -200,6 +200,14 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -211,8 +219,108 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -228,30 +336,12 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -266,39 +356,12 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -313,18 +376,10 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -337,43 +392,6 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -384,34 +402,6 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -462,19 +452,22 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -497,6 +490,13 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -585,13 +585,6 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -612,6 +605,13 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -711,6 +711,14 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -722,8 +730,108 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -739,30 +847,12 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -777,39 +867,12 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -824,18 +887,10 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -848,43 +903,6 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -899,28 +917,10 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/sketch-on-chamfer-two-times/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch-on-chamfer-two-times/artifact_graph_flowchart.snap.md index 39278afc4..a33ed1695 100644 --- a/rust/kcl-lib/tests/sketch-on-chamfer-two-times/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/sketch-on-chamfer-two-times/artifact_graph_flowchart.snap.md @@ -1,181 +1,181 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[37, 69, 0]"] - 3["Segment
[105, 172, 0]"] - 4["Segment
[178, 262, 0]"] - 5["Segment
[268, 356, 0]"] - 6["Segment
[362, 432, 0]"] - 7["Segment
[438, 446, 0]"] - 8[Solid2d] + subgraph path6 [Path] + 6["Path
[37, 69, 0]"] + 9["Segment
[105, 172, 0]"] + 10["Segment
[178, 262, 0]"] + 11["Segment
[268, 356, 0]"] + 12["Segment
[362, 432, 0]"] + 13["Segment
[438, 446, 0]"] + 24[Solid2d] end - subgraph path27 [Path] - 27["Path
[721, 755, 0]"] - 28["Segment
[761, 827, 0]"] - 29["Segment
[833, 931, 0]"] - 30["Segment
[937, 1054, 0]"] - 31["Segment
[1060, 1116, 0]"] - 32["Segment
[1122, 1130, 0]"] - 33[Solid2d] + subgraph path7 [Path] + 7["Path
[721, 755, 0]"] + 14["Segment
[761, 827, 0]"] + 15["Segment
[833, 931, 0]"] + 16["Segment
[937, 1054, 0]"] + 17["Segment
[1060, 1116, 0]"] + 18["Segment
[1122, 1130, 0]"] + 25[Solid2d] end - subgraph path34 [Path] - 34["Path
[1188, 1223, 0]"] - 35["Segment
[1229, 1295, 0]"] - 36["Segment
[1301, 1400, 0]"] - 37["Segment
[1406, 1523, 0]"] - 38["Segment
[1529, 1585, 0]"] - 39["Segment
[1591, 1599, 0]"] - 40[Solid2d] + subgraph path8 [Path] + 8["Path
[1188, 1223, 0]"] + 19["Segment
[1229, 1295, 0]"] + 20["Segment
[1301, 1400, 0]"] + 21["Segment
[1406, 1523, 0]"] + 22["Segment
[1529, 1585, 0]"] + 23["Segment
[1591, 1599, 0]"] + 26[Solid2d] end 1["Plane
[12, 31, 0]"] - 9["Sweep Extrusion
[460, 492, 0]"] - 10[Wall] - 11[Wall] - 12[Wall] - 13[Wall] - 14["Cap Start"] - 15["Cap End"] - 16["SweepEdge Opposite"] - 17["SweepEdge Adjacent"] - 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 20["SweepEdge Opposite"] - 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] - 23["SweepEdge Adjacent"] - 24["EdgeCut Fillet
[498, 533, 0]"] - 25["Plane
[721, 755, 0]"] - 26["Plane
[1188, 1223, 0]"] - 41["Sweep Extrusion
[1613, 1644, 0]"] - 42[Wall] - 43[Wall] - 44[Wall] - 45[Wall] - 46["Cap End"] + 2["Plane
[721, 755, 0]"] + 3["Plane
[1188, 1223, 0]"] + 4["StartSketchOnFace
[1143, 1182, 0]"] + 5["StartSketchOnFace
[676, 715, 0]"] + 27["Sweep Extrusion
[460, 492, 0]"] + 28["Sweep Extrusion
[1613, 1644, 0]"] + 29[Wall] + 30[Wall] + 31[Wall] + 32[Wall] + 33[Wall] + 34[Wall] + 35[Wall] + 36[Wall] + 37["Cap Start"] + 38["Cap End"] + 39["Cap End"] + 40["SweepEdge Opposite"] + 41["SweepEdge Opposite"] + 42["SweepEdge Opposite"] + 43["SweepEdge Opposite"] + 44["SweepEdge Opposite"] + 45["SweepEdge Opposite"] + 46["SweepEdge Opposite"] 47["SweepEdge Opposite"] 48["SweepEdge Adjacent"] - 49["SweepEdge Opposite"] + 49["SweepEdge Adjacent"] 50["SweepEdge Adjacent"] - 51["SweepEdge Opposite"] + 51["SweepEdge Adjacent"] 52["SweepEdge Adjacent"] - 53["SweepEdge Opposite"] + 53["SweepEdge Adjacent"] 54["SweepEdge Adjacent"] - 55["StartSketchOnFace
[676, 715, 0]"] - 56["StartSketchOnFace
[1143, 1182, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 + 55["SweepEdge Adjacent"] + 56["EdgeCut Fillet
[498, 533, 0]"] + 1 --- 6 + 2 <--x 5 2 --- 7 - 2 ---- 9 - 2 --- 8 - 3 --- 13 - 3 --- 22 - 3 --- 23 - 3 x--> 14 - 4 --- 12 - 4 --- 20 - 4 --- 21 - 4 --- 24 - 4 x--> 14 - 5 --- 11 - 5 --- 18 - 5 --- 19 - 5 x--> 14 + 12 <--x 2 + 3 <--x 4 + 3 --- 8 + 19 <--x 3 + 20 <--x 3 + 21 <--x 3 + 22 <--x 3 + 6 --- 9 6 --- 10 - 6 --- 16 - 6 --- 17 - 6 x--> 25 - 6 x--> 14 - 9 --- 10 - 9 --- 11 - 9 --- 12 - 9 --- 13 - 9 --- 14 - 9 --- 15 - 9 --- 16 - 9 --- 17 - 9 --- 18 - 9 --- 19 - 9 --- 20 - 9 --- 21 - 9 --- 22 - 9 --- 23 - 16 <--x 10 - 16 <--x 15 - 17 <--x 10 - 17 <--x 13 - 18 <--x 11 - 18 <--x 15 - 19 <--x 10 - 19 <--x 11 - 21 <--x 11 - 21 <--x 12 - 22 <--x 13 - 22 <--x 15 - 23 <--x 12 - 23 <--x 13 - 25 --- 27 - 26 --- 34 - 27 --- 28 + 6 --- 11 + 6 --- 12 + 6 --- 13 + 6 --- 24 + 6 ---- 27 + 7 --- 14 + 7 --- 15 + 7 --- 16 + 7 --- 17 + 7 --- 18 + 7 --- 25 + 8 --- 19 + 8 --- 20 + 8 --- 21 + 8 --- 22 + 8 --- 23 + 8 --- 26 + 8 ---- 28 + 9 --- 32 + 9 x--> 37 + 9 --- 41 + 9 --- 48 + 10 --- 30 + 10 x--> 37 + 10 --- 42 + 10 --- 50 + 10 --- 56 + 11 --- 29 + 11 x--> 37 + 11 --- 43 + 11 --- 49 + 12 --- 31 + 12 x--> 37 + 12 --- 40 + 12 --- 51 + 19 --- 35 + 19 --- 44 + 19 --- 52 + 20 --- 33 + 20 --- 46 + 20 --- 54 + 21 --- 34 + 21 --- 45 + 21 --- 53 + 22 --- 36 + 22 --- 47 + 22 --- 55 27 --- 29 27 --- 30 27 --- 31 27 --- 32 - 27 --- 33 - 34 --- 35 - 34 --- 36 - 34 --- 37 - 34 --- 38 - 34 --- 39 - 34 ---- 41 - 34 --- 40 - 35 --- 45 - 35 --- 53 - 35 --- 54 - 35 <--x 26 - 36 --- 44 - 36 --- 51 - 36 --- 52 - 36 <--x 26 - 37 --- 43 - 37 --- 49 - 37 --- 50 - 37 <--x 26 - 38 --- 42 - 38 --- 47 - 38 --- 48 - 38 <--x 26 - 41 --- 42 - 41 --- 43 - 41 --- 44 - 41 --- 45 - 41 --- 46 - 41 --- 47 - 41 --- 48 - 41 --- 49 - 41 --- 50 - 41 --- 51 - 41 --- 52 - 41 --- 53 - 41 --- 54 - 47 <--x 42 - 47 <--x 46 - 48 <--x 42 - 48 <--x 45 - 49 <--x 43 - 49 <--x 46 - 50 <--x 42 - 50 <--x 43 - 51 <--x 44 - 51 <--x 46 - 52 <--x 43 - 52 <--x 44 - 53 <--x 45 - 53 <--x 46 - 54 <--x 44 - 54 <--x 45 - 25 <--x 55 - 26 <--x 56 + 27 --- 37 + 27 --- 38 + 27 --- 40 + 27 --- 41 + 27 --- 42 + 27 --- 43 + 27 --- 48 + 27 --- 49 + 27 --- 50 + 27 --- 51 + 28 --- 33 + 28 --- 34 + 28 --- 35 + 28 --- 36 + 28 --- 39 + 28 --- 44 + 28 --- 45 + 28 --- 46 + 28 --- 47 + 28 --- 52 + 28 --- 53 + 28 --- 54 + 28 --- 55 + 43 <--x 29 + 49 <--x 29 + 50 <--x 29 + 48 <--x 30 + 50 <--x 30 + 40 <--x 31 + 49 <--x 31 + 51 <--x 31 + 41 <--x 32 + 48 <--x 32 + 51 <--x 32 + 46 <--x 33 + 52 <--x 33 + 54 <--x 33 + 45 <--x 34 + 53 <--x 34 + 54 <--x 34 + 44 <--x 35 + 52 <--x 35 + 55 <--x 35 + 47 <--x 36 + 53 <--x 36 + 55 <--x 36 + 40 <--x 38 + 41 <--x 38 + 43 <--x 38 + 44 <--x 39 + 45 <--x 39 + 46 <--x 39 + 47 <--x 39 ``` diff --git a/rust/kcl-lib/tests/sketch_in_object/artifact_commands.snap b/rust/kcl-lib/tests/sketch_in_object/artifact_commands.snap index d3f5329ff..e689df14c 100644 --- a/rust/kcl-lib/tests/sketch_in_object/artifact_commands.snap +++ b/rust/kcl-lib/tests/sketch_in_object/artifact_commands.snap @@ -70,6 +70,26 @@ description: Artifact commands sketch_in_object.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, { "cmdId": "[uuid]", "range": [], @@ -77,6 +97,106 @@ description: Artifact commands sketch_in_object.kcl "type": "start_path" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +217,13 @@ description: Artifact commands sketch_in_object.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +310,14 @@ description: Artifact commands sketch_in_object.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +329,108 @@ description: Artifact commands sketch_in_object.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +446,12 @@ description: Artifact commands sketch_in_object.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +466,12 @@ description: Artifact commands sketch_in_object.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +486,10 @@ description: Artifact commands sketch_in_object.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +502,6 @@ description: Artifact commands sketch_in_object.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,157 +516,12 @@ description: Artifact commands sketch_in_object.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -549,6 +549,14 @@ description: Artifact commands sketch_in_object.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -560,8 +568,108 @@ description: Artifact commands sketch_in_object.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -577,30 +685,12 @@ description: Artifact commands sketch_in_object.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -615,39 +705,12 @@ description: Artifact commands sketch_in_object.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -662,18 +725,10 @@ description: Artifact commands sketch_in_object.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -686,43 +741,6 @@ description: Artifact commands sketch_in_object.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -737,28 +755,10 @@ description: Artifact commands sketch_in_object.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/sketch_in_object/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch_in_object/artifact_graph_flowchart.snap.md index 89724d8c9..6f8093170 100644 --- a/rust/kcl-lib/tests/sketch_in_object/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/sketch_in_object/artifact_graph_flowchart.snap.md @@ -1,157 +1,157 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[48, 73, 0]"] - 3["Segment
[81, 99, 0]"] - 4["Segment
[107, 125, 0]"] - 5["Segment
[133, 152, 0]"] - 6["Segment
[160, 168, 0]"] - 7[Solid2d] + subgraph path3 [Path] + 3["Path
[48, 73, 0]"] + 5["Segment
[81, 99, 0]"] + 6["Segment
[107, 125, 0]"] + 7["Segment
[133, 152, 0]"] + 8["Segment
[160, 168, 0]"] + 14[Solid2d] end - subgraph path24 [Path] - 24["Path
[257, 282, 0]"] - 25["Segment
[294, 312, 0]"] - 26["Segment
[324, 342, 0]"] - 27["Segment
[354, 373, 0]"] - 28["Segment
[385, 393, 0]"] - 29[Solid2d] + subgraph path4 [Path] + 4["Path
[257, 282, 0]"] + 9["Segment
[294, 312, 0]"] + 10["Segment
[324, 342, 0]"] + 11["Segment
[354, 373, 0]"] + 12["Segment
[385, 393, 0]"] + 13[Solid2d] end 1["Plane
[21, 40, 0]"] - 8["Sweep Extrusion
[425, 446, 0]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12[Wall] - 13["Cap Start"] - 14["Cap End"] - 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 23["Plane
[226, 245, 0]"] - 30["Sweep Extrusion
[483, 503, 0]"] - 31[Wall] - 32[Wall] - 33[Wall] - 34[Wall] - 35["Cap Start"] - 36["Cap End"] - 37["SweepEdge Opposite"] + 2["Plane
[226, 245, 0]"] + 15["Sweep Extrusion
[425, 446, 0]"] + 16["Sweep Extrusion
[483, 503, 0]"] + 17[Wall] + 18[Wall] + 19[Wall] + 20[Wall] + 21[Wall] + 22[Wall] + 23[Wall] + 24[Wall] + 25["Cap Start"] + 26["Cap Start"] + 27["Cap End"] + 28["Cap End"] + 29["SweepEdge Opposite"] + 30["SweepEdge Opposite"] + 31["SweepEdge Opposite"] + 32["SweepEdge Opposite"] + 33["SweepEdge Opposite"] + 34["SweepEdge Opposite"] + 35["SweepEdge Opposite"] + 36["SweepEdge Opposite"] + 37["SweepEdge Adjacent"] 38["SweepEdge Adjacent"] - 39["SweepEdge Opposite"] + 39["SweepEdge Adjacent"] 40["SweepEdge Adjacent"] - 41["SweepEdge Opposite"] + 41["SweepEdge Adjacent"] 42["SweepEdge Adjacent"] - 43["SweepEdge Opposite"] + 43["SweepEdge Adjacent"] 44["SweepEdge Adjacent"] - 1 --- 2 - 2 --- 3 + 1 --- 3 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 12 - 3 --- 21 - 3 --- 22 - 3 x--> 14 + 3 --- 5 + 3 --- 6 + 3 --- 7 + 3 --- 8 + 3 --- 14 + 3 ---- 15 + 4 --- 9 + 4 --- 10 4 --- 11 - 4 --- 19 - 4 --- 20 - 4 x--> 14 - 5 --- 10 - 5 --- 17 - 5 --- 18 - 5 x--> 14 - 6 --- 9 - 6 --- 15 - 6 --- 16 - 6 x--> 14 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 - 8 --- 16 - 8 --- 17 - 8 --- 18 + 4 --- 12 + 4 --- 13 + 4 ---- 16 + 5 --- 20 + 5 x--> 27 + 5 --- 31 + 5 --- 38 + 6 --- 18 + 6 x--> 27 + 6 --- 32 + 6 --- 39 + 7 --- 17 + 7 x--> 27 + 7 --- 29 + 7 --- 40 8 --- 19 - 8 --- 20 - 8 --- 21 - 8 --- 22 - 15 <--x 9 - 15 <--x 13 - 16 <--x 9 - 16 <--x 12 - 17 <--x 10 - 17 <--x 13 - 18 <--x 9 - 18 <--x 10 - 19 <--x 11 - 19 <--x 13 - 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 13 - 22 <--x 11 - 22 <--x 12 - 23 --- 24 - 24 --- 25 - 24 --- 26 - 24 --- 27 - 24 --- 28 - 24 ---- 30 - 24 --- 29 - 25 --- 34 - 25 --- 43 - 25 --- 44 - 25 x--> 35 - 26 --- 33 - 26 --- 41 - 26 --- 42 - 26 x--> 35 - 27 --- 32 - 27 --- 39 - 27 --- 40 - 27 x--> 35 - 28 --- 31 - 28 --- 37 - 28 --- 38 - 28 x--> 35 - 30 --- 31 - 30 --- 32 - 30 --- 33 - 30 --- 34 - 30 --- 35 - 30 --- 36 - 30 --- 37 - 30 --- 38 - 30 --- 39 - 30 --- 40 - 30 --- 41 - 30 --- 42 - 30 --- 43 - 30 --- 44 - 37 <--x 31 - 37 <--x 36 - 38 <--x 31 - 38 <--x 34 - 39 <--x 32 - 39 <--x 36 - 40 <--x 31 - 40 <--x 32 - 41 <--x 33 - 41 <--x 36 - 42 <--x 32 - 42 <--x 33 - 43 <--x 34 - 43 <--x 36 - 44 <--x 33 - 44 <--x 34 + 8 x--> 27 + 8 --- 30 + 8 --- 37 + 9 --- 23 + 9 x--> 26 + 9 --- 35 + 9 --- 44 + 10 --- 24 + 10 x--> 26 + 10 --- 36 + 10 --- 42 + 11 --- 22 + 11 x--> 26 + 11 --- 33 + 11 --- 43 + 12 --- 21 + 12 x--> 26 + 12 --- 34 + 12 --- 41 + 15 --- 17 + 15 --- 18 + 15 --- 19 + 15 --- 20 + 15 --- 25 + 15 --- 27 + 15 --- 29 + 15 --- 30 + 15 --- 31 + 15 --- 32 + 15 --- 37 + 15 --- 38 + 15 --- 39 + 15 --- 40 + 16 --- 21 + 16 --- 22 + 16 --- 23 + 16 --- 24 + 16 --- 26 + 16 --- 28 + 16 --- 33 + 16 --- 34 + 16 --- 35 + 16 --- 36 + 16 --- 41 + 16 --- 42 + 16 --- 43 + 16 --- 44 + 29 <--x 17 + 39 <--x 17 + 40 <--x 17 + 32 <--x 18 + 38 <--x 18 + 39 <--x 18 + 30 <--x 19 + 37 <--x 19 + 40 <--x 19 + 31 <--x 20 + 37 <--x 20 + 38 <--x 20 + 34 <--x 21 + 41 <--x 21 + 43 <--x 21 + 33 <--x 22 + 42 <--x 22 + 43 <--x 22 + 35 <--x 23 + 41 <--x 23 + 44 <--x 23 + 36 <--x 24 + 42 <--x 24 + 44 <--x 24 + 29 <--x 25 + 30 <--x 25 + 31 <--x 25 + 32 <--x 25 + 33 <--x 28 + 34 <--x 28 + 35 <--x 28 + 36 <--x 28 ``` diff --git a/rust/kcl-lib/tests/sketch_in_object/ops.snap b/rust/kcl-lib/tests/sketch_in_object/ops.snap index f3bf6b65e..6ba45757f 100644 --- a/rust/kcl-lib/tests/sketch_in_object/ops.snap +++ b/rust/kcl-lib/tests/sketch_in_object/ops.snap @@ -4,15 +4,19 @@ description: Operations executed sketch_in_object.kcl --- [ { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "test", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "String", + "value": "XY" + }, + "sourceRange": [] + } }, - "sourceRange": [] + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { "labeledArgs": { @@ -30,7 +34,15 @@ description: Operations executed sketch_in_object.kcl "unlabeledArg": null }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "test", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -75,24 +87,6 @@ description: Operations executed sketch_in_object.kcl }, "sourceRange": [] }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "String", - "value": "XY" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, - { - "type": "GroupEnd" - }, { "labeledArgs": { "length": { @@ -124,5 +118,11 @@ description: Operations executed sketch_in_object.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/sketch_on_face/artifact_commands.snap b/rust/kcl-lib/tests/sketch_on_face/artifact_commands.snap index dbb7ee75f..b6debecc5 100644 --- a/rust/kcl-lib/tests/sketch_on_face/artifact_commands.snap +++ b/rust/kcl-lib/tests/sketch_on_face/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands sketch_on_face.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands sketch_on_face.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands sketch_on_face.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands sketch_on_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands sketch_on_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands sketch_on_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands sketch_on_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +375,6 @@ description: Artifact commands sketch_on_face.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,30 +389,12 @@ description: Artifact commands sketch_on_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -407,13 +407,6 @@ description: Artifact commands sketch_on_face.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -434,6 +427,13 @@ description: Artifact commands sketch_on_face.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -516,6 +516,14 @@ description: Artifact commands sketch_on_face.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -527,8 +535,108 @@ description: Artifact commands sketch_on_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -544,30 +652,12 @@ description: Artifact commands sketch_on_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -582,39 +672,12 @@ description: Artifact commands sketch_on_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -629,18 +692,10 @@ description: Artifact commands sketch_on_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -653,43 +708,6 @@ description: Artifact commands sketch_on_face.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -704,28 +722,10 @@ description: Artifact commands sketch_on_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/sketch_on_face/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch_on_face/artifact_graph_flowchart.snap.md index f31e85cc2..1f60ad30c 100644 --- a/rust/kcl-lib/tests/sketch_on_face/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/sketch_on_face/artifact_graph_flowchart.snap.md @@ -1,158 +1,158 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[33, 66, 0]"] - 3["Segment
[72, 112, 0]"] - 4["Segment
[118, 145, 0]"] - 5["Segment
[151, 178, 0]"] - 6["Segment
[184, 192, 0]"] - 7[Solid2d] + subgraph path3 [Path] + 3["Path
[33, 66, 0]"] + 5["Segment
[72, 112, 0]"] + 6["Segment
[118, 145, 0]"] + 7["Segment
[151, 178, 0]"] + 8["Segment
[184, 192, 0]"] + 14[Solid2d] end - subgraph path23 [Path] - 23["Path
[270, 295, 0]"] - 24["Segment
[301, 320, 0]"] - 25["Segment
[326, 345, 0]"] - 26["Segment
[351, 371, 0]"] - 27["Segment
[377, 385, 0]"] - 28[Solid2d] + subgraph path4 [Path] + 4["Path
[270, 295, 0]"] + 9["Segment
[301, 320, 0]"] + 10["Segment
[326, 345, 0]"] + 11["Segment
[351, 371, 0]"] + 12["Segment
[377, 385, 0]"] + 13[Solid2d] end 1["Plane
[10, 27, 0]"] - 8["Sweep Extrusion
[198, 217, 0]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12[Wall] - 13["Cap Start"] - 14["Cap End"] - 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 29["Sweep Extrusion
[391, 410, 0]"] - 30[Wall] - 31[Wall] - 32[Wall] - 33[Wall] - 34["Cap Start"] - 35["Cap End"] + 2["StartSketchOnFace
[229, 264, 0]"] + 15["Sweep Extrusion
[198, 217, 0]"] + 16["Sweep Extrusion
[391, 410, 0]"] + 17[Wall] + 18[Wall] + 19[Wall] + 20[Wall] + 21[Wall] + 22[Wall] + 23[Wall] + 24[Wall] + 25["Cap Start"] + 26["Cap Start"] + 27["Cap End"] + 28["Cap End"] + 29["SweepEdge Opposite"] + 30["SweepEdge Opposite"] + 31["SweepEdge Opposite"] + 32["SweepEdge Opposite"] + 33["SweepEdge Opposite"] + 34["SweepEdge Opposite"] + 35["SweepEdge Opposite"] 36["SweepEdge Opposite"] 37["SweepEdge Adjacent"] - 38["SweepEdge Opposite"] + 38["SweepEdge Adjacent"] 39["SweepEdge Adjacent"] - 40["SweepEdge Opposite"] + 40["SweepEdge Adjacent"] 41["SweepEdge Adjacent"] - 42["SweepEdge Opposite"] + 42["SweepEdge Adjacent"] 43["SweepEdge Adjacent"] - 44["StartSketchOnFace
[229, 264, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 12 - 3 --- 21 - 3 --- 22 - 3 x--> 13 + 44["SweepEdge Adjacent"] + 1 --- 3 + 20 x--> 2 + 3 --- 5 + 3 --- 6 + 3 --- 7 + 3 --- 8 + 3 --- 14 + 3 ---- 15 + 4 --- 9 + 4 --- 10 4 --- 11 - 4 --- 19 - 4 --- 20 - 4 x--> 13 - 5 --- 10 - 5 --- 17 - 5 --- 18 - 5 x--> 13 - 6 --- 9 - 6 --- 15 - 6 --- 16 - 6 x--> 13 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 - 8 --- 16 - 8 --- 17 - 8 --- 18 + 4 --- 12 + 4 --- 13 + 4 ---- 16 + 20 --- 4 + 5 --- 20 + 5 x--> 25 + 5 --- 31 + 5 --- 38 + 6 --- 18 + 6 x--> 25 + 6 --- 32 + 6 --- 39 + 7 --- 17 + 7 x--> 25 + 7 --- 29 + 7 --- 40 8 --- 19 - 8 --- 20 - 8 --- 21 - 8 --- 22 - 12 --- 23 - 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 12 - 17 <--x 10 - 17 <--x 14 - 18 <--x 9 - 18 <--x 10 - 19 <--x 11 - 19 <--x 14 - 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 14 - 22 <--x 11 - 22 <--x 12 - 23 --- 24 - 23 --- 25 - 23 --- 26 - 23 --- 27 - 23 ---- 29 - 23 --- 28 - 24 --- 33 - 24 --- 42 - 24 --- 43 - 24 x--> 34 - 25 --- 32 - 25 --- 40 - 25 --- 41 - 25 x--> 34 - 26 --- 31 - 26 --- 38 - 26 --- 39 - 26 x--> 34 - 27 --- 30 - 27 --- 36 - 27 --- 37 - 27 x--> 34 - 29 --- 30 - 29 --- 31 - 29 --- 32 - 29 --- 33 - 29 --- 34 - 29 --- 35 - 29 --- 36 - 29 --- 37 - 29 --- 38 - 29 --- 39 - 29 --- 40 - 29 --- 41 - 29 --- 42 - 29 --- 43 - 36 <--x 30 - 36 <--x 35 - 37 <--x 30 - 37 <--x 33 - 38 <--x 31 - 38 <--x 35 - 39 <--x 30 - 39 <--x 31 - 40 <--x 32 - 40 <--x 35 - 41 <--x 31 - 41 <--x 32 - 42 <--x 33 - 42 <--x 35 - 43 <--x 32 - 43 <--x 33 - 12 <--x 44 + 8 x--> 25 + 8 --- 30 + 8 --- 37 + 9 --- 23 + 9 x--> 26 + 9 --- 35 + 9 --- 44 + 10 --- 24 + 10 x--> 26 + 10 --- 36 + 10 --- 42 + 11 --- 22 + 11 x--> 26 + 11 --- 33 + 11 --- 43 + 12 --- 21 + 12 x--> 26 + 12 --- 34 + 12 --- 41 + 15 --- 17 + 15 --- 18 + 15 --- 19 + 15 --- 20 + 15 --- 25 + 15 --- 27 + 15 --- 29 + 15 --- 30 + 15 --- 31 + 15 --- 32 + 15 --- 37 + 15 --- 38 + 15 --- 39 + 15 --- 40 + 16 --- 21 + 16 --- 22 + 16 --- 23 + 16 --- 24 + 16 --- 26 + 16 --- 28 + 16 --- 33 + 16 --- 34 + 16 --- 35 + 16 --- 36 + 16 --- 41 + 16 --- 42 + 16 --- 43 + 16 --- 44 + 29 <--x 17 + 39 <--x 17 + 40 <--x 17 + 32 <--x 18 + 38 <--x 18 + 39 <--x 18 + 30 <--x 19 + 37 <--x 19 + 40 <--x 19 + 31 <--x 20 + 37 <--x 20 + 38 <--x 20 + 34 <--x 21 + 41 <--x 21 + 43 <--x 21 + 33 <--x 22 + 42 <--x 22 + 43 <--x 22 + 35 <--x 23 + 41 <--x 23 + 44 <--x 23 + 36 <--x 24 + 42 <--x 24 + 44 <--x 24 + 29 <--x 27 + 30 <--x 27 + 31 <--x 27 + 32 <--x 27 + 33 <--x 28 + 34 <--x 28 + 35 <--x 28 + 36 <--x 28 ``` diff --git a/rust/kcl-lib/tests/sketch_on_face_after_fillets_referencing_face/artifact_commands.snap b/rust/kcl-lib/tests/sketch_on_face_after_fillets_referencing_face/artifact_commands.snap index 1a46c1b2d..eafcc86e0 100644 --- a/rust/kcl-lib/tests/sketch_on_face_after_fillets_referencing_face/artifact_commands.snap +++ b/rust/kcl-lib/tests/sketch_on_face_after_fillets_referencing_face/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -217,6 +217,14 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -228,8 +236,162 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -245,9 +407,60 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -264,39 +477,12 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -311,39 +497,12 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -354,43 +513,6 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -401,148 +523,6 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -555,6 +535,16 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "cut_type": "fillet" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -571,19 +561,22 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -606,6 +599,13 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -705,6 +705,14 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -716,8 +724,108 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -733,30 +841,12 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -771,39 +861,12 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -818,18 +881,10 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -842,43 +897,6 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -893,28 +911,10 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/sketch_on_face_after_fillets_referencing_face/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch_on_face_after_fillets_referencing_face/artifact_graph_flowchart.snap.md index c608e0d68..481ef21a1 100644 --- a/rust/kcl-lib/tests/sketch_on_face_after_fillets_referencing_face/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/sketch_on_face_after_fillets_referencing_face/artifact_graph_flowchart.snap.md @@ -1,190 +1,190 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[1014, 1039, 0]"] - 3["Segment
[1045, 1090, 0]"] - 4["Segment
[1096, 1139, 0]"] - 5["Segment
[1145, 1172, 0]"] - 6["Segment
[1178, 1236, 0]"] - 7["Segment
[1242, 1282, 0]"] - 8["Segment
[1288, 1296, 0]"] - 9[Solid2d] + subgraph path3 [Path] + 3["Path
[1014, 1039, 0]"] + 5["Segment
[1045, 1090, 0]"] + 6["Segment
[1096, 1139, 0]"] + 7["Segment
[1145, 1172, 0]"] + 8["Segment
[1178, 1236, 0]"] + 9["Segment
[1242, 1282, 0]"] + 10["Segment
[1288, 1296, 0]"] + 17[Solid2d] end - subgraph path33 [Path] - 33["Path
[1535, 1566, 0]"] - 34["Segment
[1572, 1597, 0]"] - 35["Segment
[1603, 1628, 0]"] - 36["Segment
[1634, 1659, 0]"] - 37["Segment
[1665, 1721, 0]"] - 38["Segment
[1727, 1735, 0]"] - 39[Solid2d] + subgraph path4 [Path] + 4["Path
[1535, 1566, 0]"] + 11["Segment
[1572, 1597, 0]"] + 12["Segment
[1603, 1628, 0]"] + 13["Segment
[1634, 1659, 0]"] + 14["Segment
[1665, 1721, 0]"] + 15["Segment
[1727, 1735, 0]"] + 16[Solid2d] end 1["Plane
[991, 1008, 0]"] - 10["Sweep Extrusion
[1302, 1325, 0]"] - 11[Wall] - 12[Wall] - 13[Wall] - 14[Wall] - 15[Wall] - 16[Wall] - 17["Cap Start"] - 18["Cap End"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 23["SweepEdge Opposite"] - 24["SweepEdge Adjacent"] - 25["SweepEdge Opposite"] - 26["SweepEdge Adjacent"] - 27["SweepEdge Opposite"] - 28["SweepEdge Adjacent"] - 29["SweepEdge Opposite"] - 30["SweepEdge Adjacent"] - 31["EdgeCut Fillet
[1331, 1396, 0]"] - 32["EdgeCut Fillet
[1402, 1479, 0]"] - 40["Sweep Extrusion
[1741, 1761, 0]"] - 41[Wall] - 42[Wall] - 43[Wall] - 44[Wall] - 45["Cap End"] - 46["SweepEdge Opposite"] + 2["StartSketchOnFace
[1493, 1529, 0]"] + 18["Sweep Extrusion
[1302, 1325, 0]"] + 19["Sweep Extrusion
[1741, 1761, 0]"] + 20[Wall] + 21[Wall] + 22[Wall] + 23[Wall] + 24[Wall] + 25[Wall] + 26[Wall] + 27[Wall] + 28[Wall] + 29[Wall] + 30["Cap Start"] + 31["Cap End"] + 32["Cap End"] + 33["SweepEdge Opposite"] + 34["SweepEdge Opposite"] + 35["SweepEdge Opposite"] + 36["SweepEdge Opposite"] + 37["SweepEdge Opposite"] + 38["SweepEdge Opposite"] + 39["SweepEdge Opposite"] + 40["SweepEdge Opposite"] + 41["SweepEdge Opposite"] + 42["SweepEdge Opposite"] + 43["SweepEdge Adjacent"] + 44["SweepEdge Adjacent"] + 45["SweepEdge Adjacent"] + 46["SweepEdge Adjacent"] 47["SweepEdge Adjacent"] - 48["SweepEdge Opposite"] + 48["SweepEdge Adjacent"] 49["SweepEdge Adjacent"] - 50["SweepEdge Opposite"] + 50["SweepEdge Adjacent"] 51["SweepEdge Adjacent"] - 52["SweepEdge Opposite"] - 53["SweepEdge Adjacent"] - 54["StartSketchOnFace
[1493, 1529, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 --- 8 - 2 ---- 10 - 2 --- 9 - 3 --- 11 - 3 --- 19 - 3 --- 20 - 3 x--> 17 + 52["SweepEdge Adjacent"] + 53["EdgeCut Fillet
[1331, 1396, 0]"] + 54["EdgeCut Fillet
[1402, 1479, 0]"] + 1 --- 3 + 29 x--> 2 + 3 --- 5 + 3 --- 6 + 3 --- 7 + 3 --- 8 + 3 --- 9 + 3 --- 10 + 3 --- 17 + 3 ---- 18 + 4 --- 11 4 --- 12 - 4 --- 21 - 4 --- 22 - 4 x--> 17 - 5 --- 13 - 5 --- 23 - 5 --- 24 - 5 x--> 17 - 6 --- 14 - 6 --- 25 - 6 --- 26 - 6 x--> 17 - 7 --- 15 - 7 --- 27 - 7 --- 28 - 7 x--> 17 - 8 --- 16 - 8 --- 29 - 8 --- 30 - 8 x--> 17 - 10 --- 11 - 10 --- 12 - 10 --- 13 - 10 --- 14 - 10 --- 15 - 10 --- 16 - 10 --- 17 - 10 --- 18 - 10 --- 19 - 10 --- 20 - 10 --- 21 - 10 --- 22 - 10 --- 23 + 4 --- 13 + 4 --- 14 + 4 --- 15 + 4 --- 16 + 4 ---- 19 + 29 --- 4 + 5 --- 28 + 5 x--> 30 + 5 --- 42 + 5 --- 49 + 6 --- 29 + 6 x--> 30 + 6 --- 38 + 6 --- 52 + 7 --- 26 + 7 x--> 30 + 7 --- 40 + 7 --- 50 + 8 --- 27 + 8 x--> 30 + 8 --- 37 + 8 --- 47 + 9 --- 25 + 9 x--> 30 + 9 --- 39 + 9 --- 51 10 --- 24 - 10 --- 25 - 10 --- 26 - 10 --- 27 - 10 --- 28 - 10 --- 29 - 10 --- 30 - 12 --- 33 - 19 <--x 11 - 19 <--x 18 - 21 <--x 12 - 21 <--x 18 - 22 <--x 12 - 22 <--x 13 - 23 <--x 13 - 23 <--x 18 - 24 <--x 13 - 24 <--x 14 - 25 <--x 14 - 25 <--x 18 - 27 <--x 15 - 27 <--x 18 - 28 <--x 15 - 28 <--x 16 - 29 <--x 16 - 29 <--x 18 - 30 <--x 11 - 30 <--x 16 - 26 <--x 31 - 20 <--x 32 - 33 --- 34 - 33 --- 35 - 33 --- 36 - 33 --- 37 - 33 --- 38 - 33 ---- 40 - 33 --- 39 - 34 --- 44 - 34 --- 52 - 34 --- 53 - 34 <--x 12 - 35 --- 43 - 35 --- 50 - 35 --- 51 - 35 <--x 12 - 36 --- 42 - 36 --- 48 - 36 --- 49 - 36 <--x 12 - 37 --- 41 - 37 --- 46 - 37 --- 47 - 37 <--x 12 - 40 --- 41 - 40 --- 42 - 40 --- 43 - 40 --- 44 - 40 --- 45 - 40 --- 46 - 40 --- 47 - 40 --- 48 - 40 --- 49 - 40 --- 50 - 40 --- 51 - 40 --- 52 - 40 --- 53 - 46 <--x 41 - 46 <--x 45 - 47 <--x 41 - 47 <--x 44 - 48 <--x 42 - 48 <--x 45 - 49 <--x 41 - 49 <--x 42 - 50 <--x 43 - 50 <--x 45 - 51 <--x 42 - 51 <--x 43 - 52 <--x 44 - 52 <--x 45 - 53 <--x 43 - 53 <--x 44 - 12 <--x 54 + 10 x--> 30 + 10 --- 41 + 10 --- 48 + 11 --- 20 + 11 x--> 29 + 11 --- 33 + 11 --- 44 + 12 --- 21 + 12 x--> 29 + 12 --- 35 + 12 --- 46 + 13 --- 22 + 13 x--> 29 + 13 --- 34 + 13 --- 43 + 14 --- 23 + 14 x--> 29 + 14 --- 36 + 14 --- 45 + 18 --- 24 + 18 --- 25 + 18 --- 26 + 18 --- 27 + 18 --- 28 + 18 --- 29 + 18 --- 30 + 18 --- 32 + 18 --- 37 + 18 --- 38 + 18 --- 39 + 18 --- 40 + 18 --- 41 + 18 --- 42 + 18 --- 47 + 18 --- 48 + 18 --- 49 + 18 --- 50 + 18 --- 51 + 18 --- 52 + 19 --- 20 + 19 --- 21 + 19 --- 22 + 19 --- 23 + 19 --- 31 + 19 --- 33 + 19 --- 34 + 19 --- 35 + 19 --- 36 + 19 --- 43 + 19 --- 44 + 19 --- 45 + 19 --- 46 + 33 <--x 20 + 44 <--x 20 + 45 <--x 20 + 35 <--x 21 + 44 <--x 21 + 46 <--x 21 + 34 <--x 22 + 43 <--x 22 + 46 <--x 22 + 36 <--x 23 + 43 <--x 23 + 45 <--x 23 + 41 <--x 24 + 48 <--x 24 + 51 <--x 24 + 39 <--x 25 + 51 <--x 25 + 40 <--x 26 + 50 <--x 26 + 52 <--x 26 + 37 <--x 27 + 50 <--x 27 + 42 <--x 28 + 48 <--x 28 + 38 <--x 29 + 52 <--x 29 + 33 <--x 31 + 34 <--x 31 + 35 <--x 31 + 36 <--x 31 + 37 <--x 32 + 38 <--x 32 + 39 <--x 32 + 40 <--x 32 + 41 <--x 32 + 42 <--x 32 + 47 <--x 53 + 49 <--x 54 ``` diff --git a/rust/kcl-lib/tests/sketch_on_face_circle_tagged/artifact_commands.snap b/rust/kcl-lib/tests/sketch_on_face_circle_tagged/artifact_commands.snap index 700deccaf..961c3abde 100644 --- a/rust/kcl-lib/tests/sketch_on_face_circle_tagged/artifact_commands.snap +++ b/rust/kcl-lib/tests/sketch_on_face_circle_tagged/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -324,39 +379,12 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,28 +399,8 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -407,33 +415,6 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 5.0, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -463,8 +444,27 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 5.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -490,13 +490,6 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -505,6 +498,40 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -514,34 +541,6 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -556,9 +555,10 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } } ] diff --git a/rust/kcl-lib/tests/sketch_on_face_circle_tagged/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch_on_face_circle_tagged/artifact_graph_flowchart.snap.md index d779070ad..5ebad8bb6 100644 --- a/rust/kcl-lib/tests/sketch_on_face_circle_tagged/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/sketch_on_face_circle_tagged/artifact_graph_flowchart.snap.md @@ -1,109 +1,109 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[56, 78, 0]"] - 3["Segment
[86, 108, 0]"] - 4["Segment
[116, 138, 0]"] - 5["Segment
[146, 169, 0]"] - 6["Segment
[217, 225, 0]"] - 7[Solid2d] + subgraph path3 [Path] + 3["Path
[56, 78, 0]"] + 5["Segment
[86, 108, 0]"] + 6["Segment
[116, 138, 0]"] + 7["Segment
[146, 169, 0]"] + 8["Segment
[217, 225, 0]"] + 11[Solid2d] end - subgraph path23 [Path] - 23["Path
[305, 357, 0]"] - 24["Segment
[305, 357, 0]"] - 25[Solid2d] + subgraph path4 [Path] + 4["Path
[305, 357, 0]"] + 9["Segment
[305, 357, 0]"] + 10[Solid2d] end 1["Plane
[29, 48, 0]"] - 8["Sweep Extrusion
[231, 251, 0]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12[Wall] - 13["Cap Start"] - 14["Cap End"] - 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 26["Sweep Extrusion
[363, 382, 0]"] - 27[Wall] - 28["Cap Start"] - 29["Cap End"] - 30["SweepEdge Opposite"] + 2["StartSketchOnFace
[263, 299, 0]"] + 12["Sweep Extrusion
[231, 251, 0]"] + 13["Sweep Extrusion
[363, 382, 0]"] + 14[Wall] + 15[Wall] + 16[Wall] + 17[Wall] + 18[Wall] + 19["Cap Start"] + 20["Cap Start"] + 21["Cap End"] + 22["Cap End"] + 23["SweepEdge Opposite"] + 24["SweepEdge Opposite"] + 25["SweepEdge Opposite"] + 26["SweepEdge Opposite"] + 27["SweepEdge Opposite"] + 28["SweepEdge Adjacent"] + 29["SweepEdge Adjacent"] + 30["SweepEdge Adjacent"] 31["SweepEdge Adjacent"] - 32["StartSketchOnFace
[263, 299, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 12 - 3 --- 21 - 3 --- 22 - 3 x--> 13 - 4 --- 11 - 4 --- 19 - 4 --- 20 - 4 x--> 13 - 5 --- 10 + 32["SweepEdge Adjacent"] + 1 --- 3 + 21 x--> 2 + 3 --- 5 + 3 --- 6 + 3 --- 7 + 3 --- 8 + 3 --- 11 + 3 ---- 12 + 4 --- 9 + 4 --- 10 + 4 ---- 13 + 21 --- 4 5 --- 17 - 5 --- 18 - 5 x--> 13 - 6 --- 9 + 5 x--> 19 + 5 --- 25 + 5 --- 29 6 --- 15 - 6 --- 16 - 6 x--> 13 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 + 6 x--> 19 + 6 --- 26 + 6 --- 30 + 7 --- 14 + 7 x--> 19 + 7 --- 23 + 7 --- 31 8 --- 16 - 8 --- 17 - 8 --- 18 - 8 --- 19 - 8 --- 20 - 8 --- 21 - 8 --- 22 - 14 --- 23 - 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 12 - 17 <--x 10 - 17 <--x 14 - 18 <--x 9 - 18 <--x 10 - 19 <--x 11 - 19 <--x 14 - 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 14 - 22 <--x 11 - 22 <--x 12 - 23 --- 24 - 23 ---- 26 - 23 --- 25 - 24 --- 27 - 24 --- 30 - 24 --- 31 - 24 x--> 28 - 26 --- 27 - 26 --- 28 - 26 --- 29 - 26 --- 30 - 26 --- 31 - 30 <--x 27 - 30 <--x 29 - 31 <--x 27 - 14 <--x 32 + 8 x--> 19 + 8 --- 24 + 8 --- 28 + 9 --- 18 + 9 x--> 20 + 9 --- 27 + 9 --- 32 + 12 --- 14 + 12 --- 15 + 12 --- 16 + 12 --- 17 + 12 --- 19 + 12 --- 21 + 12 --- 23 + 12 --- 24 + 12 --- 25 + 12 --- 26 + 12 --- 28 + 12 --- 29 + 12 --- 30 + 12 --- 31 + 13 --- 18 + 13 --- 20 + 13 --- 22 + 13 --- 27 + 13 --- 32 + 23 <--x 14 + 30 <--x 14 + 31 <--x 14 + 26 <--x 15 + 29 <--x 15 + 30 <--x 15 + 24 <--x 16 + 28 <--x 16 + 31 <--x 16 + 25 <--x 17 + 28 <--x 17 + 29 <--x 17 + 27 <--x 18 + 32 <--x 18 + 23 <--x 21 + 24 <--x 21 + 25 <--x 21 + 26 <--x 21 + 27 <--x 22 ``` diff --git a/rust/kcl-lib/tests/sketch_on_face_circle_tagged/ops.snap b/rust/kcl-lib/tests/sketch_on_face_circle_tagged/ops.snap index fa5e42bf9..18f00f98b 100644 --- a/rust/kcl-lib/tests/sketch_on_face_circle_tagged/ops.snap +++ b/rust/kcl-lib/tests/sketch_on_face_circle_tagged/ops.snap @@ -3,17 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed sketch_on_face_circle_tagged.kcl --- [ - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cube", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -30,7 +19,15 @@ description: Operations executed sketch_on_face_circle_tagged.kcl "unlabeledArg": null }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -118,5 +115,8 @@ description: Operations executed sketch_on_face_circle_tagged.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/sketch_on_face_end/artifact_commands.snap b/rust/kcl-lib/tests/sketch_on_face_end/artifact_commands.snap index 08fa0c72e..d960aea53 100644 --- a/rust/kcl-lib/tests/sketch_on_face_end/artifact_commands.snap +++ b/rust/kcl-lib/tests/sketch_on_face_end/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands sketch_on_face_end.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands sketch_on_face_end.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands sketch_on_face_end.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands sketch_on_face_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands sketch_on_face_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands sketch_on_face_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands sketch_on_face_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +375,6 @@ description: Artifact commands sketch_on_face_end.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,30 +389,12 @@ description: Artifact commands sketch_on_face_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -407,13 +407,6 @@ description: Artifact commands sketch_on_face_end.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -434,6 +427,13 @@ description: Artifact commands sketch_on_face_end.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -516,6 +516,14 @@ description: Artifact commands sketch_on_face_end.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -527,8 +535,108 @@ description: Artifact commands sketch_on_face_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -544,30 +652,12 @@ description: Artifact commands sketch_on_face_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -582,39 +672,12 @@ description: Artifact commands sketch_on_face_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -629,18 +692,10 @@ description: Artifact commands sketch_on_face_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -653,43 +708,6 @@ description: Artifact commands sketch_on_face_end.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -704,28 +722,10 @@ description: Artifact commands sketch_on_face_end.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/sketch_on_face_end/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch_on_face_end/artifact_graph_flowchart.snap.md index a1cd49987..92c92b6d1 100644 --- a/rust/kcl-lib/tests/sketch_on_face_end/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/sketch_on_face_end/artifact_graph_flowchart.snap.md @@ -1,158 +1,158 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[56, 78, 0]"] - 3["Segment
[86, 108, 0]"] - 4["Segment
[116, 138, 0]"] - 5["Segment
[146, 169, 0]"] - 6["Segment
[217, 225, 0]"] - 7[Solid2d] + subgraph path3 [Path] + 3["Path
[56, 78, 0]"] + 5["Segment
[86, 108, 0]"] + 6["Segment
[116, 138, 0]"] + 7["Segment
[146, 169, 0]"] + 8["Segment
[217, 225, 0]"] + 14[Solid2d] end - subgraph path23 [Path] - 23["Path
[305, 330, 0]"] - 24["Segment
[336, 355, 0]"] - 25["Segment
[361, 380, 0]"] - 26["Segment
[386, 406, 0]"] - 27["Segment
[412, 420, 0]"] - 28[Solid2d] + subgraph path4 [Path] + 4["Path
[305, 330, 0]"] + 9["Segment
[336, 355, 0]"] + 10["Segment
[361, 380, 0]"] + 11["Segment
[386, 406, 0]"] + 12["Segment
[412, 420, 0]"] + 13[Solid2d] end 1["Plane
[29, 48, 0]"] - 8["Sweep Extrusion
[231, 251, 0]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12[Wall] - 13["Cap Start"] - 14["Cap End"] - 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 29["Sweep Extrusion
[426, 445, 0]"] - 30[Wall] - 31[Wall] - 32[Wall] - 33[Wall] - 34["Cap Start"] - 35["Cap End"] + 2["StartSketchOnFace
[263, 299, 0]"] + 15["Sweep Extrusion
[231, 251, 0]"] + 16["Sweep Extrusion
[426, 445, 0]"] + 17[Wall] + 18[Wall] + 19[Wall] + 20[Wall] + 21[Wall] + 22[Wall] + 23[Wall] + 24[Wall] + 25["Cap Start"] + 26["Cap Start"] + 27["Cap End"] + 28["Cap End"] + 29["SweepEdge Opposite"] + 30["SweepEdge Opposite"] + 31["SweepEdge Opposite"] + 32["SweepEdge Opposite"] + 33["SweepEdge Opposite"] + 34["SweepEdge Opposite"] + 35["SweepEdge Opposite"] 36["SweepEdge Opposite"] 37["SweepEdge Adjacent"] - 38["SweepEdge Opposite"] + 38["SweepEdge Adjacent"] 39["SweepEdge Adjacent"] - 40["SweepEdge Opposite"] + 40["SweepEdge Adjacent"] 41["SweepEdge Adjacent"] - 42["SweepEdge Opposite"] + 42["SweepEdge Adjacent"] 43["SweepEdge Adjacent"] - 44["StartSketchOnFace
[263, 299, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 12 - 3 --- 21 - 3 --- 22 - 3 x--> 13 + 44["SweepEdge Adjacent"] + 1 --- 3 + 27 x--> 2 + 3 --- 5 + 3 --- 6 + 3 --- 7 + 3 --- 8 + 3 --- 14 + 3 ---- 15 + 4 --- 9 + 4 --- 10 4 --- 11 - 4 --- 19 - 4 --- 20 - 4 x--> 13 - 5 --- 10 - 5 --- 17 - 5 --- 18 - 5 x--> 13 - 6 --- 9 - 6 --- 15 - 6 --- 16 - 6 x--> 13 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 - 8 --- 16 - 8 --- 17 - 8 --- 18 + 4 --- 12 + 4 --- 13 + 4 ---- 16 + 27 --- 4 + 5 --- 20 + 5 x--> 25 + 5 --- 31 + 5 --- 38 + 6 --- 18 + 6 x--> 25 + 6 --- 32 + 6 --- 39 + 7 --- 17 + 7 x--> 25 + 7 --- 29 + 7 --- 40 8 --- 19 - 8 --- 20 - 8 --- 21 - 8 --- 22 - 14 --- 23 - 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 12 - 17 <--x 10 - 17 <--x 14 - 18 <--x 9 - 18 <--x 10 - 19 <--x 11 - 19 <--x 14 - 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 14 - 22 <--x 11 - 22 <--x 12 - 23 --- 24 - 23 --- 25 - 23 --- 26 - 23 --- 27 - 23 ---- 29 - 23 --- 28 - 24 --- 33 - 24 --- 42 - 24 --- 43 - 24 x--> 34 - 25 --- 32 - 25 --- 40 - 25 --- 41 - 25 x--> 34 - 26 --- 31 - 26 --- 38 - 26 --- 39 - 26 x--> 34 - 27 --- 30 - 27 --- 36 - 27 --- 37 - 27 x--> 34 - 29 --- 30 - 29 --- 31 - 29 --- 32 - 29 --- 33 - 29 --- 34 - 29 --- 35 - 29 --- 36 - 29 --- 37 - 29 --- 38 - 29 --- 39 - 29 --- 40 - 29 --- 41 - 29 --- 42 - 29 --- 43 - 36 <--x 30 - 36 <--x 35 - 37 <--x 30 - 37 <--x 33 - 38 <--x 31 - 38 <--x 35 - 39 <--x 30 - 39 <--x 31 - 40 <--x 32 - 40 <--x 35 - 41 <--x 31 - 41 <--x 32 - 42 <--x 33 - 42 <--x 35 - 43 <--x 32 - 43 <--x 33 - 14 <--x 44 + 8 x--> 25 + 8 --- 30 + 8 --- 37 + 9 --- 23 + 9 x--> 26 + 9 --- 35 + 9 --- 44 + 10 --- 24 + 10 x--> 26 + 10 --- 36 + 10 --- 42 + 11 --- 22 + 11 x--> 26 + 11 --- 33 + 11 --- 43 + 12 --- 21 + 12 x--> 26 + 12 --- 34 + 12 --- 41 + 15 --- 17 + 15 --- 18 + 15 --- 19 + 15 --- 20 + 15 --- 25 + 15 --- 27 + 15 --- 29 + 15 --- 30 + 15 --- 31 + 15 --- 32 + 15 --- 37 + 15 --- 38 + 15 --- 39 + 15 --- 40 + 16 --- 21 + 16 --- 22 + 16 --- 23 + 16 --- 24 + 16 --- 26 + 16 --- 28 + 16 --- 33 + 16 --- 34 + 16 --- 35 + 16 --- 36 + 16 --- 41 + 16 --- 42 + 16 --- 43 + 16 --- 44 + 29 <--x 17 + 39 <--x 17 + 40 <--x 17 + 32 <--x 18 + 38 <--x 18 + 39 <--x 18 + 30 <--x 19 + 37 <--x 19 + 40 <--x 19 + 31 <--x 20 + 37 <--x 20 + 38 <--x 20 + 34 <--x 21 + 41 <--x 21 + 43 <--x 21 + 33 <--x 22 + 42 <--x 22 + 43 <--x 22 + 35 <--x 23 + 41 <--x 23 + 44 <--x 23 + 36 <--x 24 + 42 <--x 24 + 44 <--x 24 + 29 <--x 27 + 30 <--x 27 + 31 <--x 27 + 32 <--x 27 + 33 <--x 28 + 34 <--x 28 + 35 <--x 28 + 36 <--x 28 ``` diff --git a/rust/kcl-lib/tests/sketch_on_face_end/ops.snap b/rust/kcl-lib/tests/sketch_on_face_end/ops.snap index 69756897e..329034a6f 100644 --- a/rust/kcl-lib/tests/sketch_on_face_end/ops.snap +++ b/rust/kcl-lib/tests/sketch_on_face_end/ops.snap @@ -3,17 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed sketch_on_face_end.kcl --- [ - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cube", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -30,7 +19,15 @@ description: Operations executed sketch_on_face_end.kcl "unlabeledArg": null }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -118,5 +115,8 @@ description: Operations executed sketch_on_face_end.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/artifact_commands.snap b/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/artifact_commands.snap index bc14615d0..b767a664f 100644 --- a/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/artifact_commands.snap +++ b/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +375,6 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,30 +389,12 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -407,13 +407,6 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -434,6 +427,13 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -516,6 +516,14 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -527,8 +535,108 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -544,30 +652,12 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -582,39 +672,12 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -629,18 +692,10 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -653,43 +708,6 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -704,28 +722,10 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/artifact_graph_flowchart.snap.md index 88f7462dc..6d6fd8cf7 100644 --- a/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/artifact_graph_flowchart.snap.md @@ -1,158 +1,158 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[56, 78, 0]"] - 3["Segment
[86, 108, 0]"] - 4["Segment
[116, 138, 0]"] - 5["Segment
[146, 169, 0]"] - 6["Segment
[217, 225, 0]"] - 7[Solid2d] + subgraph path3 [Path] + 3["Path
[56, 78, 0]"] + 5["Segment
[86, 108, 0]"] + 6["Segment
[116, 138, 0]"] + 7["Segment
[146, 169, 0]"] + 8["Segment
[217, 225, 0]"] + 14[Solid2d] end - subgraph path23 [Path] - 23["Path
[305, 330, 0]"] - 24["Segment
[336, 355, 0]"] - 25["Segment
[361, 380, 0]"] - 26["Segment
[386, 406, 0]"] - 27["Segment
[412, 420, 0]"] - 28[Solid2d] + subgraph path4 [Path] + 4["Path
[305, 330, 0]"] + 9["Segment
[336, 355, 0]"] + 10["Segment
[361, 380, 0]"] + 11["Segment
[386, 406, 0]"] + 12["Segment
[412, 420, 0]"] + 13[Solid2d] end 1["Plane
[29, 48, 0]"] - 8["Sweep Extrusion
[231, 251, 0]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12[Wall] - 13["Cap Start"] - 14["Cap End"] - 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 29["Sweep Extrusion
[426, 446, 0]"] - 30[Wall] - 31[Wall] - 32[Wall] - 33[Wall] - 34["Cap Start"] - 35["Cap End"] + 2["StartSketchOnFace
[263, 299, 0]"] + 15["Sweep Extrusion
[231, 251, 0]"] + 16["Sweep Extrusion
[426, 446, 0]"] + 17[Wall] + 18[Wall] + 19[Wall] + 20[Wall] + 21[Wall] + 22[Wall] + 23[Wall] + 24[Wall] + 25["Cap Start"] + 26["Cap Start"] + 27["Cap End"] + 28["Cap End"] + 29["SweepEdge Opposite"] + 30["SweepEdge Opposite"] + 31["SweepEdge Opposite"] + 32["SweepEdge Opposite"] + 33["SweepEdge Opposite"] + 34["SweepEdge Opposite"] + 35["SweepEdge Opposite"] 36["SweepEdge Opposite"] 37["SweepEdge Adjacent"] - 38["SweepEdge Opposite"] + 38["SweepEdge Adjacent"] 39["SweepEdge Adjacent"] - 40["SweepEdge Opposite"] + 40["SweepEdge Adjacent"] 41["SweepEdge Adjacent"] - 42["SweepEdge Opposite"] + 42["SweepEdge Adjacent"] 43["SweepEdge Adjacent"] - 44["StartSketchOnFace
[263, 299, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 12 - 3 --- 21 - 3 --- 22 - 3 x--> 13 + 44["SweepEdge Adjacent"] + 1 --- 3 + 27 x--> 2 + 3 --- 5 + 3 --- 6 + 3 --- 7 + 3 --- 8 + 3 --- 14 + 3 ---- 15 + 4 --- 9 + 4 --- 10 4 --- 11 - 4 --- 19 - 4 --- 20 - 4 x--> 13 - 5 --- 10 - 5 --- 17 - 5 --- 18 - 5 x--> 13 - 6 --- 9 - 6 --- 15 - 6 --- 16 - 6 x--> 13 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 - 8 --- 16 - 8 --- 17 - 8 --- 18 + 4 --- 12 + 4 --- 13 + 4 ---- 16 + 27 --- 4 + 5 --- 20 + 5 x--> 25 + 5 --- 31 + 5 --- 38 + 6 --- 18 + 6 x--> 25 + 6 --- 32 + 6 --- 39 + 7 --- 17 + 7 x--> 25 + 7 --- 29 + 7 --- 40 8 --- 19 - 8 --- 20 - 8 --- 21 - 8 --- 22 - 14 --- 23 - 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 12 - 17 <--x 10 - 17 <--x 14 - 18 <--x 9 - 18 <--x 10 - 19 <--x 11 - 19 <--x 14 - 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 14 - 22 <--x 11 - 22 <--x 12 - 23 --- 24 - 23 --- 25 - 23 --- 26 - 23 --- 27 - 23 ---- 29 - 23 --- 28 - 24 --- 33 - 24 --- 42 - 24 --- 43 - 24 x--> 35 - 25 --- 32 - 25 --- 40 - 25 --- 41 - 25 x--> 35 - 26 --- 31 - 26 --- 38 - 26 --- 39 - 26 x--> 35 - 27 --- 30 - 27 --- 36 - 27 --- 37 - 27 x--> 35 - 29 --- 30 - 29 --- 31 - 29 --- 32 - 29 --- 33 - 29 --- 34 - 29 --- 35 - 29 --- 36 - 29 --- 37 - 29 --- 38 - 29 --- 39 - 29 --- 40 - 29 --- 41 - 29 --- 42 - 29 --- 43 - 36 <--x 30 - 36 <--x 34 - 37 <--x 30 - 37 <--x 33 - 38 <--x 31 - 38 <--x 34 - 39 <--x 30 - 39 <--x 31 - 40 <--x 32 - 40 <--x 34 - 41 <--x 31 - 41 <--x 32 - 42 <--x 33 - 42 <--x 34 - 43 <--x 32 - 43 <--x 33 - 14 <--x 44 + 8 x--> 25 + 8 --- 30 + 8 --- 37 + 9 --- 23 + 9 x--> 28 + 9 --- 35 + 9 --- 44 + 10 --- 24 + 10 x--> 28 + 10 --- 36 + 10 --- 42 + 11 --- 22 + 11 x--> 28 + 11 --- 33 + 11 --- 43 + 12 --- 21 + 12 x--> 28 + 12 --- 34 + 12 --- 41 + 15 --- 17 + 15 --- 18 + 15 --- 19 + 15 --- 20 + 15 --- 25 + 15 --- 27 + 15 --- 29 + 15 --- 30 + 15 --- 31 + 15 --- 32 + 15 --- 37 + 15 --- 38 + 15 --- 39 + 15 --- 40 + 16 --- 21 + 16 --- 22 + 16 --- 23 + 16 --- 24 + 16 --- 26 + 16 --- 28 + 16 --- 33 + 16 --- 34 + 16 --- 35 + 16 --- 36 + 16 --- 41 + 16 --- 42 + 16 --- 43 + 16 --- 44 + 29 <--x 17 + 39 <--x 17 + 40 <--x 17 + 32 <--x 18 + 38 <--x 18 + 39 <--x 18 + 30 <--x 19 + 37 <--x 19 + 40 <--x 19 + 31 <--x 20 + 37 <--x 20 + 38 <--x 20 + 34 <--x 21 + 41 <--x 21 + 43 <--x 21 + 33 <--x 22 + 42 <--x 22 + 43 <--x 22 + 35 <--x 23 + 41 <--x 23 + 44 <--x 23 + 36 <--x 24 + 42 <--x 24 + 44 <--x 24 + 33 <--x 26 + 34 <--x 26 + 35 <--x 26 + 36 <--x 26 + 29 <--x 27 + 30 <--x 27 + 31 <--x 27 + 32 <--x 27 ``` diff --git a/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/ops.snap b/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/ops.snap index 0f05b6eff..af849d803 100644 --- a/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/ops.snap +++ b/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/ops.snap @@ -3,17 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed sketch_on_face_end_negative_extrude.kcl --- [ - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cube", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -30,7 +19,15 @@ description: Operations executed sketch_on_face_end_negative_extrude.kcl "unlabeledArg": null }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -118,5 +115,8 @@ description: Operations executed sketch_on_face_end_negative_extrude.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/sketch_on_face_start/artifact_commands.snap b/rust/kcl-lib/tests/sketch_on_face_start/artifact_commands.snap index 4fac91cce..2e35a7ae7 100644 --- a/rust/kcl-lib/tests/sketch_on_face_start/artifact_commands.snap +++ b/rust/kcl-lib/tests/sketch_on_face_start/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands sketch_on_face_start.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands sketch_on_face_start.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands sketch_on_face_start.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands sketch_on_face_start.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands sketch_on_face_start.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands sketch_on_face_start.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands sketch_on_face_start.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +375,6 @@ description: Artifact commands sketch_on_face_start.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,30 +389,12 @@ description: Artifact commands sketch_on_face_start.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -407,13 +407,6 @@ description: Artifact commands sketch_on_face_start.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -434,6 +427,13 @@ description: Artifact commands sketch_on_face_start.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -516,6 +516,14 @@ description: Artifact commands sketch_on_face_start.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -527,8 +535,108 @@ description: Artifact commands sketch_on_face_start.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -544,30 +652,12 @@ description: Artifact commands sketch_on_face_start.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -582,39 +672,12 @@ description: Artifact commands sketch_on_face_start.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -629,18 +692,10 @@ description: Artifact commands sketch_on_face_start.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -653,43 +708,6 @@ description: Artifact commands sketch_on_face_start.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -704,28 +722,10 @@ description: Artifact commands sketch_on_face_start.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/sketch_on_face_start/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch_on_face_start/artifact_graph_flowchart.snap.md index 3d39482b0..2f5d51a9f 100644 --- a/rust/kcl-lib/tests/sketch_on_face_start/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/sketch_on_face_start/artifact_graph_flowchart.snap.md @@ -1,158 +1,158 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[54, 76, 0]"] - 3["Segment
[84, 106, 0]"] - 4["Segment
[114, 136, 0]"] - 5["Segment
[144, 167, 0]"] - 6["Segment
[215, 223, 0]"] - 7[Solid2d] + subgraph path3 [Path] + 3["Path
[54, 76, 0]"] + 5["Segment
[84, 106, 0]"] + 6["Segment
[114, 136, 0]"] + 7["Segment
[144, 167, 0]"] + 8["Segment
[215, 223, 0]"] + 14[Solid2d] end - subgraph path23 [Path] - 23["Path
[308, 333, 0]"] - 24["Segment
[339, 358, 0]"] - 25["Segment
[364, 383, 0]"] - 26["Segment
[389, 409, 0]"] - 27["Segment
[415, 423, 0]"] - 28[Solid2d] + subgraph path4 [Path] + 4["Path
[308, 333, 0]"] + 9["Segment
[339, 358, 0]"] + 10["Segment
[364, 383, 0]"] + 11["Segment
[389, 409, 0]"] + 12["Segment
[415, 423, 0]"] + 13[Solid2d] end 1["Plane
[29, 46, 0]"] - 8["Sweep Extrusion
[229, 249, 0]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12[Wall] - 13["Cap Start"] - 14["Cap End"] - 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 29["Sweep Extrusion
[429, 448, 0]"] - 30[Wall] - 31[Wall] - 32[Wall] - 33[Wall] - 34["Cap Start"] - 35["Cap End"] + 2["StartSketchOnFace
[268, 302, 0]"] + 15["Sweep Extrusion
[229, 249, 0]"] + 16["Sweep Extrusion
[429, 448, 0]"] + 17[Wall] + 18[Wall] + 19[Wall] + 20[Wall] + 21[Wall] + 22[Wall] + 23[Wall] + 24[Wall] + 25["Cap Start"] + 26["Cap Start"] + 27["Cap End"] + 28["Cap End"] + 29["SweepEdge Opposite"] + 30["SweepEdge Opposite"] + 31["SweepEdge Opposite"] + 32["SweepEdge Opposite"] + 33["SweepEdge Opposite"] + 34["SweepEdge Opposite"] + 35["SweepEdge Opposite"] 36["SweepEdge Opposite"] 37["SweepEdge Adjacent"] - 38["SweepEdge Opposite"] + 38["SweepEdge Adjacent"] 39["SweepEdge Adjacent"] - 40["SweepEdge Opposite"] + 40["SweepEdge Adjacent"] 41["SweepEdge Adjacent"] - 42["SweepEdge Opposite"] + 42["SweepEdge Adjacent"] 43["SweepEdge Adjacent"] - 44["StartSketchOnFace
[268, 302, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 12 - 3 --- 21 - 3 --- 22 - 3 x--> 13 + 44["SweepEdge Adjacent"] + 1 --- 3 + 25 x--> 2 + 3 --- 5 + 3 --- 6 + 3 --- 7 + 3 --- 8 + 3 --- 14 + 3 ---- 15 + 4 --- 9 + 4 --- 10 4 --- 11 - 4 --- 19 - 4 --- 20 - 4 x--> 13 - 5 --- 10 - 5 --- 17 - 5 --- 18 - 5 x--> 13 - 6 --- 9 - 6 --- 15 - 6 --- 16 - 6 x--> 13 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 - 8 --- 16 - 8 --- 17 - 8 --- 18 + 4 --- 12 + 4 --- 13 + 4 ---- 16 + 25 --- 4 + 5 --- 20 + 5 x--> 25 + 5 --- 31 + 5 --- 38 + 6 --- 18 + 6 x--> 25 + 6 --- 32 + 6 --- 39 + 7 --- 17 + 7 x--> 25 + 7 --- 29 + 7 --- 40 8 --- 19 - 8 --- 20 - 8 --- 21 - 8 --- 22 - 13 --- 23 - 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 12 - 17 <--x 10 - 17 <--x 14 - 18 <--x 9 - 18 <--x 10 - 19 <--x 11 - 19 <--x 14 - 20 <--x 10 - 20 <--x 11 - 21 <--x 12 - 21 <--x 14 - 22 <--x 11 - 22 <--x 12 - 23 --- 24 - 23 --- 25 - 23 --- 26 - 23 --- 27 - 23 ---- 29 - 23 --- 28 - 24 --- 33 - 24 --- 42 - 24 --- 43 - 24 x--> 34 - 25 --- 32 - 25 --- 40 - 25 --- 41 - 25 x--> 34 - 26 --- 31 - 26 --- 38 - 26 --- 39 - 26 x--> 34 - 27 --- 30 - 27 --- 36 - 27 --- 37 - 27 x--> 34 - 29 --- 30 - 29 --- 31 - 29 --- 32 - 29 --- 33 - 29 --- 34 - 29 --- 35 - 29 --- 36 - 29 --- 37 - 29 --- 38 - 29 --- 39 - 29 --- 40 - 29 --- 41 - 29 --- 42 - 29 --- 43 - 36 <--x 30 - 36 <--x 35 - 37 <--x 30 - 37 <--x 33 - 38 <--x 31 - 38 <--x 35 - 39 <--x 30 - 39 <--x 31 - 40 <--x 32 - 40 <--x 35 - 41 <--x 31 - 41 <--x 32 - 42 <--x 33 - 42 <--x 35 - 43 <--x 32 - 43 <--x 33 - 13 <--x 44 + 8 x--> 25 + 8 --- 30 + 8 --- 37 + 9 --- 23 + 9 x--> 26 + 9 --- 35 + 9 --- 44 + 10 --- 24 + 10 x--> 26 + 10 --- 36 + 10 --- 42 + 11 --- 22 + 11 x--> 26 + 11 --- 33 + 11 --- 43 + 12 --- 21 + 12 x--> 26 + 12 --- 34 + 12 --- 41 + 15 --- 17 + 15 --- 18 + 15 --- 19 + 15 --- 20 + 15 --- 25 + 15 --- 27 + 15 --- 29 + 15 --- 30 + 15 --- 31 + 15 --- 32 + 15 --- 37 + 15 --- 38 + 15 --- 39 + 15 --- 40 + 16 --- 21 + 16 --- 22 + 16 --- 23 + 16 --- 24 + 16 --- 26 + 16 --- 28 + 16 --- 33 + 16 --- 34 + 16 --- 35 + 16 --- 36 + 16 --- 41 + 16 --- 42 + 16 --- 43 + 16 --- 44 + 29 <--x 17 + 39 <--x 17 + 40 <--x 17 + 32 <--x 18 + 38 <--x 18 + 39 <--x 18 + 30 <--x 19 + 37 <--x 19 + 40 <--x 19 + 31 <--x 20 + 37 <--x 20 + 38 <--x 20 + 34 <--x 21 + 41 <--x 21 + 43 <--x 21 + 33 <--x 22 + 42 <--x 22 + 43 <--x 22 + 35 <--x 23 + 41 <--x 23 + 44 <--x 23 + 36 <--x 24 + 42 <--x 24 + 44 <--x 24 + 29 <--x 27 + 30 <--x 27 + 31 <--x 27 + 32 <--x 27 + 33 <--x 28 + 34 <--x 28 + 35 <--x 28 + 36 <--x 28 ``` diff --git a/rust/kcl-lib/tests/sketch_on_face_start/ops.snap b/rust/kcl-lib/tests/sketch_on_face_start/ops.snap index 3f9a7ad72..1ae907dde 100644 --- a/rust/kcl-lib/tests/sketch_on_face_start/ops.snap +++ b/rust/kcl-lib/tests/sketch_on_face_start/ops.snap @@ -3,17 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed sketch_on_face_start.kcl --- [ - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cube", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -30,7 +19,15 @@ description: Operations executed sketch_on_face_start.kcl "unlabeledArg": null }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -118,5 +115,8 @@ description: Operations executed sketch_on_face_start.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/ssi_pattern/artifact_commands.snap b/rust/kcl-lib/tests/ssi_pattern/artifact_commands.snap index e2ecc74bc..0fafb05df 100644 --- a/rust/kcl-lib/tests/ssi_pattern/artifact_commands.snap +++ b/rust/kcl-lib/tests/ssi_pattern/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands ssi_pattern.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands ssi_pattern.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -217,6 +217,14 @@ description: Artifact commands ssi_pattern.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -228,8 +236,135 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -245,30 +380,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -283,39 +400,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -330,18 +420,10 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -358,39 +440,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -405,39 +460,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -452,28 +480,8 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -488,33 +496,6 @@ description: Artifact commands ssi_pattern.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -0.6800000000000002, - "y": 47.7, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -544,8 +525,27 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -0.6800000000000002, + "y": 47.7, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -1471,82 +1471,336 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -40.0, - "faces": null, - "opposite": "None" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -1576,83 +1830,11 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -40.0, + "faces": null, + "opposite": "None" } }, { @@ -1670,83 +1852,11 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -40.0, + "faces": null, + "opposite": "None" } }, { @@ -1764,83 +1874,11 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -40.0, + "faces": null, + "opposite": "None" } }, { @@ -1858,83 +1896,11 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -40.0, + "faces": null, + "opposite": "None" } }, { @@ -1952,83 +1918,11 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -40.0, + "faces": null, + "opposite": "None" } }, { @@ -2046,83 +1940,11 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -40.0, + "faces": null, + "opposite": "None" } }, { @@ -2140,83 +1962,11 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -40.0, + "faces": null, + "opposite": "None" } }, { @@ -2234,83 +1984,11 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -40.0, + "faces": null, + "opposite": "None" } }, { @@ -2328,83 +2006,11 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -40.0, + "faces": null, + "opposite": "None" } }, { @@ -2422,83 +2028,11 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -40.0, + "faces": null, + "opposite": "None" } }, { @@ -2516,83 +2050,11 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -40.0, + "faces": null, + "opposite": "None" } }, { @@ -2610,83 +2072,11 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -40.0, + "faces": null, + "opposite": "None" } }, { @@ -2704,83 +2094,11 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -40.0, + "faces": null, + "opposite": "None" } }, { @@ -2798,83 +2116,11 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "extrude", + "target": "[uuid]", + "distance": -40.0, + "faces": null, + "opposite": "None" } }, { @@ -2888,89 +2134,6 @@ description: Artifact commands ssi_pattern.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, { "cmdId": "[uuid]", "range": [], @@ -2986,7 +2149,8 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "object_bring_to_front", + "object_id": "[uuid]" } }, { @@ -2997,6 +2161,1250 @@ description: Artifact commands ssi_pattern.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -3010,7 +3418,7 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -3019,17 +3427,250 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" + "edge_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -3048,86 +3689,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -40.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3142,86 +3709,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -40.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3236,86 +3729,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -40.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3330,86 +3749,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -40.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3424,86 +3769,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -40.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3518,86 +3789,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -40.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3612,86 +3809,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -40.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3706,86 +3829,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -40.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3800,86 +3849,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -40.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3894,86 +3869,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -40.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -3988,86 +3889,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -40.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4082,86 +3909,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -40.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4176,86 +3929,12 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -40.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -4270,9 +3949,330 @@ description: Artifact commands ssi_pattern.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } } ] diff --git a/rust/kcl-lib/tests/ssi_pattern/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/ssi_pattern/artifact_graph_flowchart.snap.md index d723c2ac3..25d0fe418 100644 --- a/rust/kcl-lib/tests/ssi_pattern/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/ssi_pattern/artifact_graph_flowchart.snap.md @@ -1,43 +1,43 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[37, 71, 0]"] - 3["Segment
[77, 97, 0]"] - 4["Segment
[103, 128, 0]"] - 5["Segment
[134, 176, 0]"] - 6["Segment
[182, 204, 0]"] - 7["Segment
[210, 280, 0]"] - 8["Segment
[286, 293, 0]"] - 9[Solid2d] + subgraph path3 [Path] + 3["Path
[37, 71, 0]"] + 5["Segment
[77, 97, 0]"] + 6["Segment
[103, 128, 0]"] + 7["Segment
[134, 176, 0]"] + 8["Segment
[182, 204, 0]"] + 9["Segment
[210, 280, 0]"] + 10["Segment
[286, 293, 0]"] + 12[Solid2d] end - subgraph path28 [Path] - 28["Path
[398, 442, 0]"] - 29["Segment
[398, 442, 0]"] - 30[Solid2d] + subgraph path4 [Path] + 4["Path
[398, 442, 0]"] + 11["Segment
[398, 442, 0]"] + 13[Solid2d] end 1["Plane
[12, 31, 0]"] - 10["Sweep Extrusion
[308, 339, 0]"] - 11[Wall] - 12[Wall] - 13[Wall] - 14[Wall] - 15[Wall] - 16["Cap Start"] - 17["Cap End"] - 18["SweepEdge Opposite"] - 19["SweepEdge Adjacent"] - 20["SweepEdge Opposite"] - 21["SweepEdge Adjacent"] - 22["SweepEdge Opposite"] - 23["SweepEdge Adjacent"] - 24["SweepEdge Opposite"] - 25["SweepEdge Adjacent"] - 26["SweepEdge Opposite"] - 27["SweepEdge Adjacent"] + 2["StartSketchOnFace
[353, 392, 0]"] + 14["Sweep Extrusion
[308, 339, 0]"] + 15["Sweep Extrusion
[632, 653, 0]"] + 16["Sweep Extrusion
[632, 653, 0]"] + 17["Sweep Extrusion
[632, 653, 0]"] + 18["Sweep Extrusion
[632, 653, 0]"] + 19["Sweep Extrusion
[632, 653, 0]"] + 20["Sweep Extrusion
[632, 653, 0]"] + 21["Sweep Extrusion
[632, 653, 0]"] + 22["Sweep Extrusion
[632, 653, 0]"] + 23["Sweep Extrusion
[632, 653, 0]"] + 24["Sweep Extrusion
[632, 653, 0]"] + 25["Sweep Extrusion
[632, 653, 0]"] + 26["Sweep Extrusion
[632, 653, 0]"] + 27["Sweep Extrusion
[632, 653, 0]"] + 28["Sweep Extrusion
[632, 653, 0]"] + 29["Sweep Extrusion
[632, 653, 0]"] + 30["Sweep Extrusion
[632, 653, 0]"] 31["Sweep Extrusion
[632, 653, 0]"] - 32[Wall] - 33["SweepEdge Opposite"] - 34["SweepEdge Adjacent"] + 32["Sweep Extrusion
[632, 653, 0]"] + 33["Sweep Extrusion
[632, 653, 0]"] + 34["Sweep Extrusion
[632, 653, 0]"] 35["Sweep Extrusion
[632, 653, 0]"] 36["Sweep Extrusion
[632, 653, 0]"] 37["Sweep Extrusion
[632, 653, 0]"] @@ -48,105 +48,105 @@ flowchart LR 42["Sweep Extrusion
[632, 653, 0]"] 43["Sweep Extrusion
[632, 653, 0]"] 44["Sweep Extrusion
[632, 653, 0]"] - 45["Sweep Extrusion
[632, 653, 0]"] - 46["Sweep Extrusion
[632, 653, 0]"] - 47["Sweep Extrusion
[632, 653, 0]"] - 48["Sweep Extrusion
[632, 653, 0]"] - 49["Sweep Extrusion
[632, 653, 0]"] - 50["Sweep Extrusion
[632, 653, 0]"] - 51["Sweep Extrusion
[632, 653, 0]"] - 52["Sweep Extrusion
[632, 653, 0]"] - 53["Sweep Extrusion
[632, 653, 0]"] - 54["Sweep Extrusion
[632, 653, 0]"] - 55["Sweep Extrusion
[632, 653, 0]"] - 56["Sweep Extrusion
[632, 653, 0]"] - 57["Sweep Extrusion
[632, 653, 0]"] - 58["Sweep Extrusion
[632, 653, 0]"] - 59["Sweep Extrusion
[632, 653, 0]"] - 60["Sweep Extrusion
[632, 653, 0]"] - 61["Sweep Extrusion
[632, 653, 0]"] - 62["Sweep Extrusion
[632, 653, 0]"] - 63["Sweep Extrusion
[632, 653, 0]"] - 64["StartSketchOnFace
[353, 392, 0]"] - 1 --- 2 - 2 --- 3 - 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 --- 7 - 2 --- 8 - 2 ---- 10 - 2 --- 9 - 3 --- 15 - 3 --- 26 - 3 --- 27 - 3 x--> 16 - 4 --- 14 - 4 --- 24 - 4 --- 25 - 4 x--> 16 - 5 --- 13 - 5 --- 22 - 5 --- 23 - 5 x--> 16 - 6 --- 12 - 6 --- 20 - 6 --- 21 - 6 x--> 16 - 7 --- 11 - 7 --- 18 - 7 --- 19 - 7 x--> 16 - 10 --- 11 - 10 --- 12 - 10 --- 13 - 10 --- 14 - 10 --- 15 - 10 --- 16 - 10 --- 17 - 10 --- 18 - 10 --- 19 - 10 --- 20 - 10 --- 21 - 10 --- 22 - 10 --- 23 - 10 --- 24 - 10 --- 25 - 10 --- 26 - 10 --- 27 - 11 --- 28 - 18 <--x 11 - 18 <--x 17 - 19 <--x 11 - 19 <--x 15 - 20 <--x 12 - 20 <--x 17 - 21 <--x 11 - 21 <--x 12 - 22 <--x 13 - 22 <--x 17 - 23 <--x 12 - 23 <--x 13 - 24 <--x 14 - 24 <--x 17 - 25 <--x 13 - 25 <--x 14 - 26 <--x 15 - 26 <--x 17 - 27 <--x 14 - 27 <--x 15 - 28 --- 29 - 28 ---- 31 - 28 --- 30 - 29 --- 32 - 29 --- 33 - 29 --- 34 - 29 <--x 11 - 31 --- 32 - 31 --- 33 - 31 --- 34 - 33 <--x 32 - 33 <--x 13 - 34 <--x 32 - 11 <--x 64 + 45[Wall] + 46[Wall] + 47[Wall] + 48[Wall] + 49[Wall] + 50[Wall] + 51["Cap Start"] + 52["Cap End"] + 53["SweepEdge Opposite"] + 54["SweepEdge Opposite"] + 55["SweepEdge Opposite"] + 56["SweepEdge Opposite"] + 57["SweepEdge Opposite"] + 58["SweepEdge Opposite"] + 59["SweepEdge Adjacent"] + 60["SweepEdge Adjacent"] + 61["SweepEdge Adjacent"] + 62["SweepEdge Adjacent"] + 63["SweepEdge Adjacent"] + 64["SweepEdge Adjacent"] + 1 --- 3 + 50 x--> 2 + 3 --- 5 + 3 --- 6 + 3 --- 7 + 3 --- 8 + 3 --- 9 + 3 --- 10 + 3 --- 12 + 3 ---- 14 + 4 --- 11 + 4 --- 13 + 4 ---- 25 + 50 --- 4 + 5 --- 49 + 5 x--> 51 + 5 --- 56 + 5 --- 61 + 6 --- 47 + 6 x--> 51 + 6 --- 54 + 6 --- 63 + 7 --- 46 + 7 x--> 51 + 7 --- 57 + 7 --- 60 + 8 --- 48 + 8 x--> 51 + 8 --- 55 + 8 --- 64 + 9 --- 50 + 9 x--> 51 + 9 --- 58 + 9 --- 62 + 11 --- 45 + 11 x--> 50 + 11 --- 53 + 11 --- 59 + 14 --- 46 + 14 --- 47 + 14 --- 48 + 14 --- 49 + 14 --- 50 + 14 --- 51 + 14 --- 52 + 14 --- 54 + 14 --- 55 + 14 --- 56 + 14 --- 57 + 14 --- 58 + 14 --- 60 + 14 --- 61 + 14 --- 62 + 14 --- 63 + 14 --- 64 + 25 --- 45 + 25 --- 53 + 25 --- 59 + 53 <--x 45 + 59 <--x 45 + 53 <--x 46 + 57 <--x 46 + 60 <--x 46 + 63 <--x 46 + 54 <--x 47 + 61 <--x 47 + 63 <--x 47 + 55 <--x 48 + 60 <--x 48 + 64 <--x 48 + 56 <--x 49 + 61 <--x 49 + 62 <--x 49 + 58 <--x 50 + 62 <--x 50 + 64 <--x 50 + 54 <--x 52 + 55 <--x 52 + 56 <--x 52 + 57 <--x 52 + 58 <--x 52 ``` diff --git a/rust/kcl-lib/tests/subtract_cylinder_from_cube/artifact_commands.snap b/rust/kcl-lib/tests/subtract_cylinder_from_cube/artifact_commands.snap index b1a356afa..f79d37379 100644 --- a/rust/kcl-lib/tests/subtract_cylinder_from_cube/artifact_commands.snap +++ b/rust/kcl-lib/tests/subtract_cylinder_from_cube/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands subtract_cylinder_from_cube.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands subtract_cylinder_from_cube.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -183,6 +183,14 @@ description: Artifact commands subtract_cylinder_from_cube.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -194,8 +202,108 @@ description: Artifact commands subtract_cylinder_from_cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -211,30 +319,12 @@ description: Artifact commands subtract_cylinder_from_cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -249,39 +339,12 @@ description: Artifact commands subtract_cylinder_from_cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -296,18 +359,10 @@ description: Artifact commands subtract_cylinder_from_cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -320,43 +375,6 @@ description: Artifact commands subtract_cylinder_from_cube.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -371,30 +389,12 @@ description: Artifact commands subtract_cylinder_from_cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -420,6 +420,14 @@ description: Artifact commands subtract_cylinder_from_cube.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -436,33 +444,6 @@ description: Artifact commands subtract_cylinder_from_cube.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 4.0, - "y": 2.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -492,8 +473,27 @@ description: Artifact commands subtract_cylinder_from_cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 4.0, + "y": 2.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -523,13 +523,6 @@ description: Artifact commands subtract_cylinder_from_cube.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -538,6 +531,40 @@ description: Artifact commands subtract_cylinder_from_cube.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -547,34 +574,6 @@ description: Artifact commands subtract_cylinder_from_cube.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -589,9 +588,10 @@ description: Artifact commands subtract_cylinder_from_cube.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { diff --git a/rust/kcl-lib/tests/subtract_cylinder_from_cube/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/subtract_cylinder_from_cube/artifact_graph_flowchart.snap.md index 172aa2b96..58ea6bec1 100644 --- a/rust/kcl-lib/tests/subtract_cylinder_from_cube/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/subtract_cylinder_from_cube/artifact_graph_flowchart.snap.md @@ -1,111 +1,111 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[52, 103, 0]"] - 3["Segment
[111, 163, 0]"] - 4["Segment
[171, 223, 0]"] - 5["Segment
[231, 283, 0]"] - 6["Segment
[291, 298, 0]"] - 7[Solid2d] + subgraph path3 [Path] + 3["Path
[52, 103, 0]"] + 5["Segment
[111, 163, 0]"] + 6["Segment
[171, 223, 0]"] + 7["Segment
[231, 283, 0]"] + 8["Segment
[291, 298, 0]"] + 11[Solid2d] end - subgraph path24 [Path] - 24["Path
[388, 423, 0]"] - 25["Segment
[388, 423, 0]"] - 26[Solid2d] + subgraph path4 [Path] + 4["Path
[388, 423, 0]"] + 9["Segment
[388, 423, 0]"] + 10[Solid2d] end 1["Plane
[27, 44, 0]"] - 8["Sweep Extrusion
[306, 326, 0]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12[Wall] - 13["Cap Start"] - 14["Cap End"] - 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 23["Plane
[363, 382, 0]"] - 27["Sweep Extrusion
[429, 448, 0]"] - 28[Wall] - 29["Cap Start"] - 30["Cap End"] - 31["SweepEdge Opposite"] + 2["Plane
[363, 382, 0]"] + 12["Sweep Extrusion
[306, 326, 0]"] + 13["Sweep Extrusion
[429, 448, 0]"] + 14["CompositeSolid Subtract
[461, 497, 0]"] + 15[Wall] + 16[Wall] + 17[Wall] + 18[Wall] + 19[Wall] + 20["Cap Start"] + 21["Cap Start"] + 22["Cap End"] + 23["Cap End"] + 24["SweepEdge Opposite"] + 25["SweepEdge Opposite"] + 26["SweepEdge Opposite"] + 27["SweepEdge Opposite"] + 28["SweepEdge Opposite"] + 29["SweepEdge Adjacent"] + 30["SweepEdge Adjacent"] + 31["SweepEdge Adjacent"] 32["SweepEdge Adjacent"] - 33["CompositeSolid Subtract
[461, 497, 0]"] - 1 --- 2 - 2 --- 3 + 33["SweepEdge Adjacent"] + 1 --- 3 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 9 - 3 --- 15 - 3 --- 16 - 3 x--> 13 + 3 --- 5 + 3 --- 6 + 3 --- 7 + 3 --- 8 + 3 --- 11 + 3 ---- 12 + 3 <--x 14 + 4 --- 9 4 --- 10 - 4 --- 17 - 4 --- 18 - 4 x--> 13 - 5 --- 11 - 5 --- 19 - 5 --- 20 - 5 x--> 13 - 6 --- 12 - 6 --- 21 - 6 --- 22 - 6 x--> 13 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 - 8 --- 16 + 4 ---- 13 + 4 <--x 14 + 5 --- 18 + 5 x--> 20 + 5 --- 25 + 5 --- 29 + 6 --- 16 + 6 x--> 20 + 6 --- 24 + 6 --- 32 + 7 --- 15 + 7 x--> 20 + 7 --- 27 + 7 --- 31 8 --- 17 - 8 --- 18 - 8 --- 19 - 8 --- 20 - 8 --- 21 - 8 --- 22 - 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 10 - 17 <--x 10 - 17 <--x 14 - 18 <--x 10 - 18 <--x 11 - 19 <--x 11 - 19 <--x 14 - 20 <--x 11 - 20 <--x 12 - 21 <--x 12 - 21 <--x 14 - 22 <--x 9 - 22 <--x 12 - 23 --- 24 - 24 --- 25 - 24 ---- 27 - 24 --- 26 - 25 --- 28 - 25 --- 31 - 25 --- 32 - 25 x--> 29 - 27 --- 28 - 27 --- 29 - 27 --- 30 - 27 --- 31 - 27 --- 32 - 31 <--x 28 - 31 <--x 30 - 32 <--x 28 - 2 <--x 33 - 24 <--x 33 + 8 x--> 20 + 8 --- 26 + 8 --- 30 + 9 --- 19 + 9 x--> 21 + 9 --- 28 + 9 --- 33 + 12 --- 15 + 12 --- 16 + 12 --- 17 + 12 --- 18 + 12 --- 20 + 12 --- 22 + 12 --- 24 + 12 --- 25 + 12 --- 26 + 12 --- 27 + 12 --- 29 + 12 --- 30 + 12 --- 31 + 12 --- 32 + 13 --- 19 + 13 --- 21 + 13 --- 23 + 13 --- 28 + 13 --- 33 + 27 <--x 15 + 31 <--x 15 + 32 <--x 15 + 24 <--x 16 + 29 <--x 16 + 32 <--x 16 + 26 <--x 17 + 30 <--x 17 + 31 <--x 17 + 25 <--x 18 + 29 <--x 18 + 30 <--x 18 + 28 <--x 19 + 33 <--x 19 + 24 <--x 22 + 25 <--x 22 + 26 <--x 22 + 27 <--x 22 + 28 <--x 23 ``` diff --git a/rust/kcl-lib/tests/subtract_cylinder_from_cube/ops.snap b/rust/kcl-lib/tests/subtract_cylinder_from_cube/ops.snap index c30f028a9..5abc5a7f0 100644 --- a/rust/kcl-lib/tests/subtract_cylinder_from_cube/ops.snap +++ b/rust/kcl-lib/tests/subtract_cylinder_from_cube/ops.snap @@ -3,17 +3,6 @@ source: kcl-lib/src/simulation_tests.rs description: Operations executed subtract_cylinder_from_cube.kcl --- [ - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cube", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -62,7 +51,15 @@ description: Operations executed subtract_cylinder_from_cube.kcl } }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -145,5 +142,8 @@ description: Operations executed subtract_cylinder_from_cube.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/subtract_doesnt_need_brackets/artifact_commands.snap b/rust/kcl-lib/tests/subtract_doesnt_need_brackets/artifact_commands.snap index c86dd088d..fa0ce626d 100644 --- a/rust/kcl-lib/tests/subtract_doesnt_need_brackets/artifact_commands.snap +++ b/rust/kcl-lib/tests/subtract_doesnt_need_brackets/artifact_commands.snap @@ -54,347 +54,6 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl "hide": true } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -10.0, - "y": -10.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 10.0, - "y": -10.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 10.0, - "y": 10.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -10.0, - "y": 10.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 10.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -440,7 +99,29 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -10.0, + "y": -10.0, + "z": 0.0 + } } }, { @@ -463,6 +144,44 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 10.0, + "y": -10.0, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -480,6 +199,23 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 10.0, + "y": 10.0, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -497,6 +233,23 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -10.0, + "y": 10.0, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -522,6 +275,30 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -553,7 +330,11 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "sketch_mode_disable" + "type": "extrude", + "target": "[uuid]", + "distance": 10.0, + "faces": null, + "opposite": "None" } }, { @@ -564,6 +345,244 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -577,26 +596,7 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -615,39 +615,12 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -662,39 +635,12 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -709,39 +655,12 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -756,9 +675,90 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { diff --git a/rust/kcl-lib/tests/subtract_doesnt_need_brackets/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/subtract_doesnt_need_brackets/artifact_graph_flowchart.snap.md index f39c1c86f..7f86710c1 100644 --- a/rust/kcl-lib/tests/subtract_doesnt_need_brackets/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/subtract_doesnt_need_brackets/artifact_graph_flowchart.snap.md @@ -1,160 +1,160 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[58, 113, 0]"] - 3["Segment
[121, 177, 0]"] - 4["Segment
[185, 241, 0]"] - 5["Segment
[249, 305, 0]"] - 6["Segment
[313, 320, 0]"] - 7[Solid2d] + subgraph path3 [Path] + 3["Path
[58, 113, 0]"] + 5["Segment
[121, 177, 0]"] + 8["Segment
[185, 241, 0]"] + 10["Segment
[249, 305, 0]"] + 11["Segment
[313, 320, 0]"] + 13[Solid2d] end - subgraph path24 [Path] - 24["Path
[58, 113, 0]"] - 25["Segment
[121, 177, 0]"] - 26["Segment
[185, 241, 0]"] - 27["Segment
[249, 305, 0]"] - 28["Segment
[313, 320, 0]"] - 29[Solid2d] + subgraph path4 [Path] + 4["Path
[58, 113, 0]"] + 6["Segment
[121, 177, 0]"] + 7["Segment
[185, 241, 0]"] + 9["Segment
[249, 305, 0]"] + 12["Segment
[313, 320, 0]"] + 14[Solid2d] end 1["Plane
[33, 50, 0]"] - 8["Sweep Extrusion
[328, 348, 0]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12[Wall] - 13["Cap Start"] - 14["Cap End"] - 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 23["Plane
[33, 50, 0]"] - 30["Sweep Extrusion
[328, 348, 0]"] - 31[Wall] - 32[Wall] - 33[Wall] - 34[Wall] - 35["Cap Start"] - 36["Cap End"] + 2["Plane
[33, 50, 0]"] + 15["Sweep Extrusion
[328, 348, 0]"] + 16["Sweep Extrusion
[328, 348, 0]"] + 17["CompositeSolid Subtract
[445, 479, 0]"] + 18[Wall] + 19[Wall] + 20[Wall] + 21[Wall] + 22[Wall] + 23[Wall] + 24[Wall] + 25[Wall] + 26["Cap Start"] + 27["Cap Start"] + 28["Cap End"] + 29["Cap End"] + 30["SweepEdge Opposite"] + 31["SweepEdge Opposite"] + 32["SweepEdge Opposite"] + 33["SweepEdge Opposite"] + 34["SweepEdge Opposite"] + 35["SweepEdge Opposite"] + 36["SweepEdge Opposite"] 37["SweepEdge Opposite"] 38["SweepEdge Adjacent"] - 39["SweepEdge Opposite"] + 39["SweepEdge Adjacent"] 40["SweepEdge Adjacent"] - 41["SweepEdge Opposite"] + 41["SweepEdge Adjacent"] 42["SweepEdge Adjacent"] - 43["SweepEdge Opposite"] + 43["SweepEdge Adjacent"] 44["SweepEdge Adjacent"] - 45["CompositeSolid Subtract
[445, 479, 0]"] - 1 --- 2 - 2 --- 3 + 45["SweepEdge Adjacent"] + 1 --- 3 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 9 - 3 --- 15 - 3 --- 16 - 3 x--> 13 - 4 --- 10 - 4 --- 17 - 4 --- 18 - 4 x--> 13 - 5 --- 11 - 5 --- 19 - 5 --- 20 - 5 x--> 13 - 6 --- 12 + 3 --- 5 + 3 --- 8 + 3 --- 10 + 3 --- 11 + 3 --- 13 + 3 ---- 16 + 3 <--x 17 + 4 --- 6 + 4 --- 7 + 4 --- 9 + 4 --- 12 + 4 --- 14 + 4 ---- 15 + 4 <--x 17 + 5 --- 24 + 5 x--> 27 + 5 --- 35 + 5 --- 42 6 --- 21 - 6 --- 22 - 6 x--> 13 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 - 8 --- 16 - 8 --- 17 - 8 --- 18 - 8 --- 19 - 8 --- 20 - 8 --- 21 - 8 --- 22 - 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 10 - 17 <--x 10 - 17 <--x 14 - 18 <--x 10 - 18 <--x 11 - 19 <--x 11 - 19 <--x 14 - 20 <--x 11 - 20 <--x 12 - 21 <--x 12 - 21 <--x 14 - 22 <--x 9 - 22 <--x 12 - 23 --- 24 - 24 --- 25 - 24 --- 26 - 24 --- 27 - 24 --- 28 - 24 ---- 30 - 24 --- 29 - 25 --- 31 - 25 --- 37 - 25 --- 38 - 25 x--> 35 - 26 --- 32 - 26 --- 39 - 26 --- 40 - 26 x--> 35 - 27 --- 33 - 27 --- 41 - 27 --- 42 - 27 x--> 35 - 28 --- 34 - 28 --- 43 - 28 --- 44 - 28 x--> 35 - 30 --- 31 - 30 --- 32 - 30 --- 33 - 30 --- 34 - 30 --- 35 - 30 --- 36 - 30 --- 37 - 30 --- 38 - 30 --- 39 - 30 --- 40 - 30 --- 41 - 30 --- 42 - 30 --- 43 - 30 --- 44 - 37 <--x 31 - 37 <--x 36 - 38 <--x 31 - 38 <--x 32 - 39 <--x 32 - 39 <--x 36 - 40 <--x 32 - 40 <--x 33 - 41 <--x 33 - 41 <--x 36 - 42 <--x 33 - 42 <--x 34 - 43 <--x 34 - 43 <--x 36 - 44 <--x 31 - 44 <--x 34 - 2 <--x 45 - 24 <--x 45 + 6 x--> 26 + 6 --- 31 + 6 --- 38 + 7 --- 19 + 7 x--> 26 + 7 --- 30 + 7 --- 41 + 8 --- 25 + 8 x--> 27 + 8 --- 34 + 8 --- 44 + 9 --- 18 + 9 x--> 26 + 9 --- 33 + 9 --- 40 + 10 --- 23 + 10 x--> 27 + 10 --- 37 + 10 --- 43 + 11 --- 22 + 11 x--> 27 + 11 --- 36 + 11 --- 45 + 12 --- 20 + 12 x--> 26 + 12 --- 32 + 12 --- 39 + 15 --- 18 + 15 --- 19 + 15 --- 20 + 15 --- 21 + 15 --- 26 + 15 --- 28 + 15 --- 30 + 15 --- 31 + 15 --- 32 + 15 --- 33 + 15 --- 38 + 15 --- 39 + 15 --- 40 + 15 --- 41 + 16 --- 22 + 16 --- 23 + 16 --- 24 + 16 --- 25 + 16 --- 27 + 16 --- 29 + 16 --- 34 + 16 --- 35 + 16 --- 36 + 16 --- 37 + 16 --- 42 + 16 --- 43 + 16 --- 44 + 16 --- 45 + 33 <--x 18 + 40 <--x 18 + 41 <--x 18 + 30 <--x 19 + 38 <--x 19 + 41 <--x 19 + 32 <--x 20 + 39 <--x 20 + 40 <--x 20 + 31 <--x 21 + 38 <--x 21 + 39 <--x 21 + 36 <--x 22 + 43 <--x 22 + 45 <--x 22 + 37 <--x 23 + 43 <--x 23 + 44 <--x 23 + 35 <--x 24 + 42 <--x 24 + 45 <--x 24 + 34 <--x 25 + 42 <--x 25 + 44 <--x 25 + 30 <--x 28 + 31 <--x 28 + 32 <--x 28 + 33 <--x 28 + 34 <--x 29 + 35 <--x 29 + 36 <--x 29 + 37 <--x 29 ``` diff --git a/rust/kcl-lib/tests/subtract_doesnt_need_brackets/ops.snap b/rust/kcl-lib/tests/subtract_doesnt_need_brackets/ops.snap index 1a50b9110..cd52af6cb 100644 --- a/rust/kcl-lib/tests/subtract_doesnt_need_brackets/ops.snap +++ b/rust/kcl-lib/tests/subtract_doesnt_need_brackets/ops.snap @@ -4,15 +4,19 @@ description: Operations executed subtract_doesnt_need_brackets.kcl --- [ { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cube", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } }, - "sourceRange": [] + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { "labeledArgs": { @@ -61,35 +65,6 @@ description: Operations executed subtract_doesnt_need_brackets.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cube", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -123,7 +98,26 @@ description: Operations executed subtract_doesnt_need_brackets.kcl } }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -149,5 +143,11 @@ description: Operations executed subtract_doesnt_need_brackets.kcl }, "sourceRange": [] } + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/tan_arc_x_line/artifact_commands.snap b/rust/kcl-lib/tests/tan_arc_x_line/artifact_commands.snap index 3628827d6..85f1e2c69 100644 --- a/rust/kcl-lib/tests/tan_arc_x_line/artifact_commands.snap +++ b/rust/kcl-lib/tests/tan_arc_x_line/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands tan_arc_x_line.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands tan_arc_x_line.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], diff --git a/rust/kcl-lib/tests/tangent_to_3_point_arc/artifact_commands.snap b/rust/kcl-lib/tests/tangent_to_3_point_arc/artifact_commands.snap index 0fae4583e..2b49e19c1 100644 --- a/rust/kcl-lib/tests/tangent_to_3_point_arc/artifact_commands.snap +++ b/rust/kcl-lib/tests/tangent_to_3_point_arc/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands tangent_to_3_point_arc.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands tangent_to_3_point_arc.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], diff --git a/rust/kcl-lib/tests/tangential_arc/artifact_commands.snap b/rust/kcl-lib/tests/tangential_arc/artifact_commands.snap index 79992c7b5..62ed482c9 100644 --- a/rust/kcl-lib/tests/tangential_arc/artifact_commands.snap +++ b/rust/kcl-lib/tests/tangential_arc/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands tangential_arc.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands tangential_arc.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -174,6 +174,14 @@ description: Artifact commands tangential_arc.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -185,8 +193,81 @@ description: Artifact commands tangential_arc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -202,30 +283,12 @@ description: Artifact commands tangential_arc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -240,18 +303,10 @@ description: Artifact commands tangential_arc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -264,43 +319,6 @@ description: Artifact commands tangential_arc.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -315,28 +333,10 @@ description: Artifact commands tangential_arc.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/tangential_arc/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/tangential_arc/artifact_graph_flowchart.snap.md index e50a9d614..177445599 100644 --- a/rust/kcl-lib/tests/tangential_arc/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/tangential_arc/artifact_graph_flowchart.snap.md @@ -14,28 +14,28 @@ flowchart LR 10["Cap Start"] 11["Cap End"] 12["SweepEdge Opposite"] - 13["SweepEdge Adjacent"] + 13["SweepEdge Opposite"] 14["SweepEdge Opposite"] 15["SweepEdge Adjacent"] - 16["SweepEdge Opposite"] + 16["SweepEdge Adjacent"] 17["SweepEdge Adjacent"] 1 --- 2 2 --- 3 2 --- 4 2 --- 5 2 ---- 6 - 3 --- 7 - 3 --- 12 - 3 --- 13 + 3 --- 9 3 x--> 10 + 3 --- 14 + 3 --- 16 4 --- 8 - 4 --- 14 - 4 --- 15 4 x--> 10 - 5 --- 9 - 5 --- 16 - 5 --- 17 + 4 --- 13 + 4 --- 15 + 5 --- 7 5 x--> 10 + 5 --- 12 + 5 --- 17 6 --- 7 6 --- 8 6 --- 9 @@ -48,15 +48,15 @@ flowchart LR 6 --- 16 6 --- 17 12 <--x 7 - 12 <--x 11 - 13 <--x 7 - 13 <--x 8 - 14 <--x 8 - 14 <--x 11 - 15 <--x 8 - 15 <--x 9 - 16 <--x 9 - 16 <--x 11 + 15 <--x 7 17 <--x 7 + 13 <--x 8 + 15 <--x 8 + 16 <--x 8 + 14 <--x 9 + 16 <--x 9 17 <--x 9 + 12 <--x 11 + 13 <--x 11 + 14 <--x 11 ``` diff --git a/rust/kcl-lib/tests/translate_after_fillet/artifact_commands.snap b/rust/kcl-lib/tests/translate_after_fillet/artifact_commands.snap index 231e9036e..47d5a33ad 100644 --- a/rust/kcl-lib/tests/translate_after_fillet/artifact_commands.snap +++ b/rust/kcl-lib/tests/translate_after_fillet/artifact_commands.snap @@ -54,6 +54,14 @@ description: Artifact commands translate_after_fillet.kcl "hide": true } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -70,33 +78,6 @@ description: Artifact commands translate_after_fillet.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.469, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -126,8 +107,27 @@ description: Artifact commands translate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.469, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -157,13 +157,6 @@ description: Artifact commands translate_after_fillet.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -172,6 +165,40 @@ description: Artifact commands translate_after_fillet.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -181,34 +208,6 @@ description: Artifact commands translate_after_fillet.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -219,15 +218,6 @@ description: Artifact commands translate_after_fillet.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -266,19 +256,22 @@ description: Artifact commands translate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": null } }, { @@ -301,6 +294,13 @@ description: Artifact commands translate_after_fillet.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -417,6 +417,14 @@ description: Artifact commands translate_after_fillet.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -428,8 +436,162 @@ description: Artifact commands translate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -445,30 +607,12 @@ description: Artifact commands translate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -483,39 +627,12 @@ description: Artifact commands translate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -530,39 +647,12 @@ description: Artifact commands translate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -577,18 +667,10 @@ description: Artifact commands translate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -605,39 +687,12 @@ description: Artifact commands translate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -652,39 +707,12 @@ description: Artifact commands translate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -699,28 +727,8 @@ description: Artifact commands translate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "type": "close_path", + "path_id": "[uuid]" } }, { @@ -735,33 +743,6 @@ description: Artifact commands translate_after_fillet.kcl "planar_normal": null } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 0.3125, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -791,8 +772,27 @@ description: Artifact commands translate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "close_path", - "path_id": "[uuid]" + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.3125, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" } }, { @@ -818,13 +818,6 @@ description: Artifact commands translate_after_fillet.kcl "opposite": "None" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, { "cmdId": "[uuid]", "range": [], @@ -833,6 +826,40 @@ description: Artifact commands translate_after_fillet.kcl "object_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -842,34 +869,6 @@ description: Artifact commands translate_after_fillet.kcl "edge_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -884,9 +883,22 @@ description: Artifact commands translate_after_fillet.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_fillet_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "radius": 0.02, + "tolerance": 0.0000001, + "cut_type": "fillet" } }, { @@ -916,18 +928,6 @@ description: Artifact commands translate_after_fillet.kcl "ambient_occlusion": 0.0 } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_fillet_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "radius": 0.02, - "tolerance": 0.0000001, - "cut_type": "fillet" - } - }, { "cmdId": "[uuid]", "range": [], diff --git a/rust/kcl-lib/tests/translate_after_fillet/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/translate_after_fillet/artifact_graph_flowchart.snap.md index ddf9b7247..c6abbf566 100644 --- a/rust/kcl-lib/tests/translate_after_fillet/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/translate_after_fillet/artifact_graph_flowchart.snap.md @@ -1,168 +1,168 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[337, 407, 0]"] - 3["Segment
[337, 407, 0]"] - 4[Solid2d] + subgraph path4 [Path] + 4["Path
[337, 407, 0]"] + 7["Segment
[337, 407, 0]"] + 16[Solid2d] end - subgraph path13 [Path] - 13["Path
[652, 712, 0]"] - 14["Segment
[720, 799, 0]"] - 15["Segment
[807, 886, 0]"] - 16["Segment
[894, 973, 0]"] - 17["Segment
[981, 1059, 0]"] - 18["Segment
[1067, 1145, 0]"] - 19["Segment
[1153, 1160, 0]"] - 20[Solid2d] + subgraph path5 [Path] + 5["Path
[652, 712, 0]"] + 8["Segment
[720, 799, 0]"] + 9["Segment
[807, 886, 0]"] + 10["Segment
[894, 973, 0]"] + 11["Segment
[981, 1059, 0]"] + 12["Segment
[1067, 1145, 0]"] + 13["Segment
[1153, 1160, 0]"] + 15[Solid2d] end - subgraph path41 [Path] - 41["Path
[1268, 1337, 0]"] - 42["Segment
[1268, 1337, 0]"] - 43[Solid2d] + subgraph path6 [Path] + 6["Path
[1268, 1337, 0]"] + 14["Segment
[1268, 1337, 0]"] + 17[Solid2d] end 1["Plane
[312, 329, 0]"] - 5["Sweep Extrusion
[415, 448, 0]"] - 6[Wall] - 7["Cap Start"] - 8["Cap End"] - 9["SweepEdge Opposite"] - 10["SweepEdge Adjacent"] - 11["EdgeCut Fillet
[456, 522, 0]"] - 12["EdgeCut Fillet
[456, 522, 0]"] - 21["Sweep Extrusion
[1168, 1208, 0]"] + 2["StartSketchOnFace
[605, 644, 0]"] + 3["StartSketchOnFace
[1223, 1260, 0]"] + 18["Sweep Extrusion
[415, 448, 0]"] + 19["Sweep Extrusion
[1168, 1208, 0]"] + 20["Sweep Extrusion
[1345, 1373, 0]"] + 21[Wall] 22[Wall] 23[Wall] 24[Wall] 25[Wall] 26[Wall] 27[Wall] - 28["Cap Start"] - 29["SweepEdge Opposite"] - 30["SweepEdge Adjacent"] - 31["SweepEdge Opposite"] - 32["SweepEdge Adjacent"] + 28[Wall] + 29["Cap Start"] + 30["Cap Start"] + 31["Cap End"] + 32["Cap End"] 33["SweepEdge Opposite"] - 34["SweepEdge Adjacent"] + 34["SweepEdge Opposite"] 35["SweepEdge Opposite"] - 36["SweepEdge Adjacent"] + 36["SweepEdge Opposite"] 37["SweepEdge Opposite"] - 38["SweepEdge Adjacent"] + 38["SweepEdge Opposite"] 39["SweepEdge Opposite"] - 40["SweepEdge Adjacent"] - 44["Sweep Extrusion
[1345, 1373, 0]"] - 45[Wall] - 46["Cap End"] - 47["SweepEdge Opposite"] + 40["SweepEdge Opposite"] + 41["SweepEdge Adjacent"] + 42["SweepEdge Adjacent"] + 43["SweepEdge Adjacent"] + 44["SweepEdge Adjacent"] + 45["SweepEdge Adjacent"] + 46["SweepEdge Adjacent"] + 47["SweepEdge Adjacent"] 48["SweepEdge Adjacent"] - 49["EdgeCut Fillet
[1381, 1440, 0]"] - 50["StartSketchOnFace
[605, 644, 0]"] - 51["StartSketchOnFace
[1223, 1260, 0]"] - 1 --- 2 - 2 --- 3 - 2 ---- 5 - 2 --- 4 - 3 --- 6 - 3 --- 9 - 3 --- 10 - 3 --- 11 - 3 x--> 8 - 5 --- 6 - 5 --- 7 + 49["EdgeCut Fillet
[456, 522, 0]"] + 50["EdgeCut Fillet
[456, 522, 0]"] + 51["EdgeCut Fillet
[1381, 1440, 0]"] + 1 --- 4 + 30 x--> 2 + 32 x--> 3 + 4 --- 7 + 4 --- 16 + 4 ---- 18 5 --- 8 5 --- 9 5 --- 10 - 7 --- 13 - 8 --- 41 - 10 <--x 6 - 9 <--x 12 - 13 --- 14 - 13 --- 15 - 13 --- 16 - 13 --- 17 - 13 --- 18 - 13 --- 19 - 13 ---- 21 - 13 --- 20 - 14 --- 27 - 14 --- 39 - 14 --- 40 - 14 <--x 7 - 15 --- 26 - 15 --- 37 - 15 --- 38 - 15 <--x 7 - 16 --- 25 - 16 --- 35 - 16 --- 36 - 16 <--x 7 - 17 --- 24 - 17 --- 33 - 17 --- 34 - 17 <--x 7 - 18 --- 23 - 18 --- 31 + 5 --- 11 + 5 --- 12 + 5 --- 13 + 5 --- 15 + 5 ---- 19 + 30 --- 5 + 6 --- 14 + 6 --- 17 + 6 ---- 20 + 32 --- 6 + 7 --- 28 + 7 x--> 32 + 7 --- 40 + 7 --- 48 + 7 --- 49 + 8 --- 26 + 8 x--> 30 + 8 --- 36 + 8 --- 43 + 9 --- 27 + 9 x--> 30 + 9 --- 34 + 9 --- 45 + 10 --- 24 + 10 x--> 30 + 10 --- 38 + 10 --- 47 + 11 --- 25 + 11 x--> 30 + 11 --- 39 + 11 --- 42 + 12 --- 23 + 12 x--> 30 + 12 --- 37 + 12 --- 46 + 13 --- 22 + 13 x--> 30 + 13 --- 35 + 13 --- 44 + 14 --- 21 + 14 x--> 32 + 14 --- 33 + 14 --- 41 + 18 --- 28 + 18 --- 30 18 --- 32 - 18 <--x 7 + 18 --- 40 + 18 --- 48 19 --- 22 + 19 --- 23 + 19 --- 24 + 19 --- 25 + 19 --- 26 + 19 --- 27 19 --- 29 - 19 --- 30 - 19 <--x 7 - 21 --- 22 - 21 --- 23 - 21 --- 24 - 21 --- 25 - 21 --- 26 - 21 --- 27 - 21 --- 28 - 21 --- 29 - 21 --- 30 - 21 --- 31 - 21 --- 32 - 21 --- 33 - 21 --- 34 - 21 --- 35 - 21 --- 36 - 21 --- 37 - 21 --- 38 - 21 --- 39 - 21 --- 40 - 29 <--x 22 - 29 <--x 28 - 30 <--x 22 - 30 <--x 27 - 31 <--x 23 - 31 <--x 28 - 32 <--x 22 - 32 <--x 23 - 33 <--x 24 - 33 <--x 28 - 34 <--x 23 - 34 <--x 24 - 35 <--x 25 - 35 <--x 28 - 36 <--x 24 - 36 <--x 25 - 37 <--x 26 - 37 <--x 28 - 38 <--x 25 - 38 <--x 26 - 39 <--x 27 - 39 <--x 28 - 40 <--x 26 - 40 <--x 27 - 41 --- 42 - 41 ---- 44 - 41 --- 43 - 42 --- 45 - 42 --- 47 - 42 --- 48 - 42 <--x 8 - 44 --- 45 - 44 --- 46 - 44 --- 47 - 44 --- 48 - 48 <--x 45 - 47 <--x 49 - 7 <--x 50 - 8 <--x 51 + 19 --- 34 + 19 --- 35 + 19 --- 36 + 19 --- 37 + 19 --- 38 + 19 --- 39 + 19 --- 42 + 19 --- 43 + 19 --- 44 + 19 --- 45 + 19 --- 46 + 19 --- 47 + 20 --- 21 + 20 --- 31 + 20 --- 33 + 20 --- 41 + 41 <--x 21 + 35 <--x 22 + 44 <--x 22 + 46 <--x 22 + 37 <--x 23 + 42 <--x 23 + 46 <--x 23 + 38 <--x 24 + 45 <--x 24 + 47 <--x 24 + 39 <--x 25 + 42 <--x 25 + 47 <--x 25 + 36 <--x 26 + 43 <--x 26 + 44 <--x 26 + 34 <--x 27 + 43 <--x 27 + 45 <--x 27 + 48 <--x 28 + 34 <--x 29 + 35 <--x 29 + 36 <--x 29 + 37 <--x 29 + 38 <--x 29 + 39 <--x 29 + 33 <--x 51 + 40 <--x 50 ``` diff --git a/rust/kcl-lib/tests/translate_after_fillet/ops.snap b/rust/kcl-lib/tests/translate_after_fillet/ops.snap index fe05bf8f9..d738eb9d4 100644 --- a/rust/kcl-lib/tests/translate_after_fillet/ops.snap +++ b/rust/kcl-lib/tests/translate_after_fillet/ops.snap @@ -14,20 +14,6 @@ description: Operations executed translate_after_fillet.kcl }, "sourceRange": [] }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "bolt", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, { "labeledArgs": { "planeOrSolid": { @@ -278,6 +264,20 @@ description: Operations executed translate_after_fillet.kcl }, "sourceRange": [] }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "bolt", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupEnd" + }, { "type": "GroupEnd" } diff --git a/rust/kcl-lib/tests/union_cubes/artifact_commands.snap b/rust/kcl-lib/tests/union_cubes/artifact_commands.snap index dc45c00bb..47fd04bb7 100644 --- a/rust/kcl-lib/tests/union_cubes/artifact_commands.snap +++ b/rust/kcl-lib/tests/union_cubes/artifact_commands.snap @@ -54,347 +54,6 @@ description: Artifact commands union_cubes.kcl "hide": true } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": -10.0, - "y": -10.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 10.0, - "y": -10.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 10.0, - "y": 10.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -10.0, - "y": 10.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 20.0, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -440,7 +99,29 @@ description: Artifact commands union_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "start_path" + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -10.0, + "y": -10.0, + "z": 0.0 + } } }, { @@ -463,6 +144,44 @@ description: Artifact commands union_cubes.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 10.0, + "y": -10.0, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -480,6 +199,23 @@ description: Artifact commands union_cubes.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 10.0, + "y": 10.0, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -497,6 +233,23 @@ description: Artifact commands union_cubes.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -10.0, + "y": 10.0, + "z": 0.0 + }, + "relative": false + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -522,6 +275,30 @@ description: Artifact commands union_cubes.kcl "path_id": "[uuid]" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, { "cmdId": "[uuid]", "range": [], @@ -538,6 +315,17 @@ description: Artifact commands union_cubes.kcl } } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 20.0, + "faces": null, + "opposite": "None" + } + }, { "cmdId": "[uuid]", "range": [], @@ -549,6 +337,22 @@ description: Artifact commands union_cubes.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -560,8 +364,223 @@ description: Artifact commands union_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -577,26 +596,7 @@ description: Artifact commands union_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_extrusion_face_info", "object_id": "[uuid]", "edge_id": "[uuid]" } @@ -615,39 +615,12 @@ description: Artifact commands union_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -662,39 +635,12 @@ description: Artifact commands union_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -709,39 +655,12 @@ description: Artifact commands union_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -756,9 +675,90 @@ description: Artifact commands union_cubes.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { diff --git a/rust/kcl-lib/tests/union_cubes/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/union_cubes/artifact_graph_flowchart.snap.md index 0ad1d173c..8e43a409d 100644 --- a/rust/kcl-lib/tests/union_cubes/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/union_cubes/artifact_graph_flowchart.snap.md @@ -1,160 +1,160 @@ ```mermaid flowchart LR - subgraph path2 [Path] - 2["Path
[58, 113, 0]"] - 3["Segment
[121, 177, 0]"] - 4["Segment
[185, 241, 0]"] - 5["Segment
[249, 305, 0]"] - 6["Segment
[313, 320, 0]"] - 7[Solid2d] + subgraph path3 [Path] + 3["Path
[58, 113, 0]"] + 5["Segment
[121, 177, 0]"] + 8["Segment
[185, 241, 0]"] + 10["Segment
[249, 305, 0]"] + 11["Segment
[313, 320, 0]"] + 13[Solid2d] end - subgraph path24 [Path] - 24["Path
[58, 113, 0]"] - 25["Segment
[121, 177, 0]"] - 26["Segment
[185, 241, 0]"] - 27["Segment
[249, 305, 0]"] - 28["Segment
[313, 320, 0]"] - 29[Solid2d] + subgraph path4 [Path] + 4["Path
[58, 113, 0]"] + 6["Segment
[121, 177, 0]"] + 7["Segment
[185, 241, 0]"] + 9["Segment
[249, 305, 0]"] + 12["Segment
[313, 320, 0]"] + 14[Solid2d] end 1["Plane
[33, 50, 0]"] - 8["Sweep Extrusion
[328, 354, 0]"] - 9[Wall] - 10[Wall] - 11[Wall] - 12[Wall] - 13["Cap Start"] - 14["Cap End"] - 15["SweepEdge Opposite"] - 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] - 18["SweepEdge Adjacent"] - 19["SweepEdge Opposite"] - 20["SweepEdge Adjacent"] - 21["SweepEdge Opposite"] - 22["SweepEdge Adjacent"] - 23["Plane
[33, 50, 0]"] - 30["Sweep Extrusion
[328, 354, 0]"] - 31[Wall] - 32[Wall] - 33[Wall] - 34[Wall] - 35["Cap Start"] - 36["Cap End"] + 2["Plane
[33, 50, 0]"] + 15["Sweep Extrusion
[328, 354, 0]"] + 16["Sweep Extrusion
[328, 354, 0]"] + 17["CompositeSolid Union
[448, 473, 0]"] + 18[Wall] + 19[Wall] + 20[Wall] + 21[Wall] + 22[Wall] + 23[Wall] + 24[Wall] + 25[Wall] + 26["Cap Start"] + 27["Cap Start"] + 28["Cap End"] + 29["Cap End"] + 30["SweepEdge Opposite"] + 31["SweepEdge Opposite"] + 32["SweepEdge Opposite"] + 33["SweepEdge Opposite"] + 34["SweepEdge Opposite"] + 35["SweepEdge Opposite"] + 36["SweepEdge Opposite"] 37["SweepEdge Opposite"] 38["SweepEdge Adjacent"] - 39["SweepEdge Opposite"] + 39["SweepEdge Adjacent"] 40["SweepEdge Adjacent"] - 41["SweepEdge Opposite"] + 41["SweepEdge Adjacent"] 42["SweepEdge Adjacent"] - 43["SweepEdge Opposite"] + 43["SweepEdge Adjacent"] 44["SweepEdge Adjacent"] - 45["CompositeSolid Union
[448, 473, 0]"] - 1 --- 2 - 2 --- 3 + 45["SweepEdge Adjacent"] + 1 --- 3 2 --- 4 - 2 --- 5 - 2 --- 6 - 2 ---- 8 - 2 --- 7 - 3 --- 9 - 3 --- 15 - 3 --- 16 - 3 x--> 13 - 4 --- 10 - 4 --- 17 - 4 --- 18 - 4 x--> 13 - 5 --- 11 - 5 --- 19 - 5 --- 20 - 5 x--> 13 - 6 --- 12 + 3 --- 5 + 3 --- 8 + 3 --- 10 + 3 --- 11 + 3 --- 13 + 3 ---- 16 + 3 <--x 17 + 4 --- 6 + 4 --- 7 + 4 --- 9 + 4 --- 12 + 4 --- 14 + 4 ---- 15 + 4 <--x 17 + 5 --- 24 + 5 x--> 27 + 5 --- 35 + 5 --- 42 6 --- 21 - 6 --- 22 - 6 x--> 13 - 8 --- 9 - 8 --- 10 - 8 --- 11 - 8 --- 12 - 8 --- 13 - 8 --- 14 - 8 --- 15 - 8 --- 16 - 8 --- 17 - 8 --- 18 - 8 --- 19 - 8 --- 20 - 8 --- 21 - 8 --- 22 - 15 <--x 9 - 15 <--x 14 - 16 <--x 9 - 16 <--x 10 - 17 <--x 10 - 17 <--x 14 - 18 <--x 10 - 18 <--x 11 - 19 <--x 11 - 19 <--x 14 - 20 <--x 11 - 20 <--x 12 - 21 <--x 12 - 21 <--x 14 - 22 <--x 9 - 22 <--x 12 - 23 --- 24 - 24 --- 25 - 24 --- 26 - 24 --- 27 - 24 --- 28 - 24 ---- 30 - 24 --- 29 - 25 --- 31 - 25 --- 37 - 25 --- 38 - 25 x--> 35 - 26 --- 32 - 26 --- 39 - 26 --- 40 - 26 x--> 35 - 27 --- 33 - 27 --- 41 - 27 --- 42 - 27 x--> 35 - 28 --- 34 - 28 --- 43 - 28 --- 44 - 28 x--> 35 - 30 --- 31 - 30 --- 32 - 30 --- 33 - 30 --- 34 - 30 --- 35 - 30 --- 36 - 30 --- 37 - 30 --- 38 - 30 --- 39 - 30 --- 40 - 30 --- 41 - 30 --- 42 - 30 --- 43 - 30 --- 44 - 37 <--x 31 - 37 <--x 36 - 38 <--x 31 - 38 <--x 32 - 39 <--x 32 - 39 <--x 36 - 40 <--x 32 - 40 <--x 33 - 41 <--x 33 - 41 <--x 36 - 42 <--x 33 - 42 <--x 34 - 43 <--x 34 - 43 <--x 36 - 44 <--x 31 - 44 <--x 34 - 2 <--x 45 - 24 <--x 45 + 6 x--> 26 + 6 --- 31 + 6 --- 38 + 7 --- 19 + 7 x--> 26 + 7 --- 30 + 7 --- 41 + 8 --- 25 + 8 x--> 27 + 8 --- 34 + 8 --- 44 + 9 --- 18 + 9 x--> 26 + 9 --- 33 + 9 --- 40 + 10 --- 23 + 10 x--> 27 + 10 --- 37 + 10 --- 43 + 11 --- 22 + 11 x--> 27 + 11 --- 36 + 11 --- 45 + 12 --- 20 + 12 x--> 26 + 12 --- 32 + 12 --- 39 + 15 --- 18 + 15 --- 19 + 15 --- 20 + 15 --- 21 + 15 --- 26 + 15 --- 28 + 15 --- 30 + 15 --- 31 + 15 --- 32 + 15 --- 33 + 15 --- 38 + 15 --- 39 + 15 --- 40 + 15 --- 41 + 16 --- 22 + 16 --- 23 + 16 --- 24 + 16 --- 25 + 16 --- 27 + 16 --- 29 + 16 --- 34 + 16 --- 35 + 16 --- 36 + 16 --- 37 + 16 --- 42 + 16 --- 43 + 16 --- 44 + 16 --- 45 + 33 <--x 18 + 40 <--x 18 + 41 <--x 18 + 30 <--x 19 + 38 <--x 19 + 41 <--x 19 + 32 <--x 20 + 39 <--x 20 + 40 <--x 20 + 31 <--x 21 + 38 <--x 21 + 39 <--x 21 + 36 <--x 22 + 43 <--x 22 + 45 <--x 22 + 37 <--x 23 + 43 <--x 23 + 44 <--x 23 + 35 <--x 24 + 42 <--x 24 + 45 <--x 24 + 34 <--x 25 + 42 <--x 25 + 44 <--x 25 + 30 <--x 28 + 31 <--x 28 + 32 <--x 28 + 33 <--x 28 + 34 <--x 29 + 35 <--x 29 + 36 <--x 29 + 37 <--x 29 ``` diff --git a/rust/kcl-lib/tests/union_cubes/ops.snap b/rust/kcl-lib/tests/union_cubes/ops.snap index 3dfc3b9ef..e6a7fba8a 100644 --- a/rust/kcl-lib/tests/union_cubes/ops.snap +++ b/rust/kcl-lib/tests/union_cubes/ops.snap @@ -4,15 +4,19 @@ description: Operations executed union_cubes.kcl --- [ { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cube", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} + "labeledArgs": { + "planeOrSolid": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } }, - "sourceRange": [] + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": null }, { "labeledArgs": { @@ -61,35 +65,6 @@ description: Operations executed union_cubes.kcl "sourceRange": [] } }, - { - "type": "GroupEnd" - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "cube", - "functionSourceRange": [], - "unlabeledArg": null, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "planeOrSolid": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": null - }, { "labeledArgs": { "length": { @@ -123,7 +98,26 @@ description: Operations executed union_cubes.kcl } }, { - "type": "GroupEnd" + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "cube", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": {} + }, + "sourceRange": [] }, { "labeledArgs": { @@ -152,5 +146,11 @@ description: Operations executed union_cubes.kcl "sourceRange": [], "type": "StdLibCall", "unlabeledArg": null + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" } ] diff --git a/rust/kcl-lib/tests/xz_plane/artifact_commands.snap b/rust/kcl-lib/tests/xz_plane/artifact_commands.snap index 1faf92d10..027e6f284 100644 --- a/rust/kcl-lib/tests/xz_plane/artifact_commands.snap +++ b/rust/kcl-lib/tests/xz_plane/artifact_commands.snap @@ -70,13 +70,6 @@ description: Artifact commands xz_plane.kcl } } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, { "cmdId": "[uuid]", "range": [], @@ -97,6 +90,13 @@ description: Artifact commands xz_plane.kcl "type": "sketch_mode_disable" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, { "cmdId": "[uuid]", "range": [], @@ -166,6 +166,14 @@ description: Artifact commands xz_plane.kcl "opposite": "None" } }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, { "cmdId": "[uuid]", "range": [], @@ -177,8 +185,81 @@ description: Artifact commands xz_plane.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" } }, { @@ -194,30 +275,12 @@ description: Artifact commands xz_plane.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -232,18 +295,10 @@ description: Artifact commands xz_plane.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", + "type": "solid3d_get_next_adjacent_edge", "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" + "edge_id": "[uuid]", + "face_id": "[uuid]" } }, { @@ -256,43 +311,6 @@ description: Artifact commands xz_plane.kcl "face_id": "[uuid]" } }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, { "cmdId": "[uuid]", "range": [], @@ -307,28 +325,10 @@ description: Artifact commands xz_plane.kcl "cmdId": "[uuid]", "range": [], "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", + "type": "solid3d_get_opposite_edge", "object_id": "[uuid]", "edge_id": "[uuid]", "face_id": "[uuid]" } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } } ] diff --git a/rust/kcl-lib/tests/xz_plane/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/xz_plane/artifact_graph_flowchart.snap.md index fb91d0dea..805aff990 100644 --- a/rust/kcl-lib/tests/xz_plane/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/xz_plane/artifact_graph_flowchart.snap.md @@ -15,29 +15,29 @@ flowchart LR 11["Cap Start"] 12["Cap End"] 13["SweepEdge Opposite"] - 14["SweepEdge Adjacent"] + 14["SweepEdge Opposite"] 15["SweepEdge Opposite"] 16["SweepEdge Adjacent"] - 17["SweepEdge Opposite"] + 17["SweepEdge Adjacent"] 18["SweepEdge Adjacent"] 1 --- 2 2 --- 3 2 --- 4 2 --- 5 - 2 ---- 7 2 --- 6 + 2 ---- 7 3 --- 10 - 3 --- 17 - 3 --- 18 3 x--> 11 + 3 --- 13 + 3 --- 18 4 --- 9 - 4 --- 15 - 4 --- 16 4 x--> 11 + 4 --- 14 + 4 --- 16 5 --- 8 - 5 --- 13 - 5 --- 14 5 x--> 11 + 5 --- 15 + 5 --- 17 7 --- 8 7 --- 9 7 --- 10 @@ -49,16 +49,16 @@ flowchart LR 7 --- 16 7 --- 17 7 --- 18 - 13 <--x 8 - 13 <--x 12 - 14 <--x 8 - 14 <--x 10 - 15 <--x 9 - 15 <--x 12 + 15 <--x 8 16 <--x 8 + 17 <--x 8 + 14 <--x 9 16 <--x 9 - 17 <--x 10 - 17 <--x 12 18 <--x 9 + 13 <--x 10 + 17 <--x 10 18 <--x 10 + 13 <--x 12 + 14 <--x 12 + 15 <--x 12 ```